time.Timer.Stop (method)
41 uses
time (current package)
sleep.go#L77: func (t *Timer) Stop() bool {
context
context.go#L668: c.timer.Stop()
crypto/rand
rand_unix.go#L54: defer t.Stop()
github.com/cenkalti/backoff/v4
timer.go#L33: t.timer.Stop()
github.com/gotd/td/clock
system.go#L18: return s.timer.Stop()
net
dial.go#L553: defer fallbackTimer.Stop()
dial.go#L574: if res.primary && fallbackTimer.Stop() {
pipe.go#L35: if d.timer != nil && !d.timer.Stop() {
net/http
client.go#L409: timer.Stop()
client.go#L414: timer.Stop()
h2_bundle.go#L4683: t.Stop()
h2_bundle.go#L4744: defer sc.idleTimer.Stop()
h2_bundle.go#L4750: defer settingsTimer.Stop()
h2_bundle.go#L4779: settingsTimer.Stop()
h2_bundle.go#L4889: defer timer.Stop()
h2_bundle.go#L5452: st.readDeadline.Stop()
h2_bundle.go#L5455: st.writeDeadline.Stop()
h2_bundle.go#L5782: sc.idleTimer.Stop()
h2_bundle.go#L6601: if !st.readDeadline.Stop() {
h2_bundle.go#L6627: if !st.writeDeadline.Stop() {
h2_bundle.go#L7667: timer.Stop()
h2_bundle.go#L8095: defer t.Stop()
h2_bundle.go#L8446: cc.idleTimer.Stop()
h2_bundle.go#L8518: timer.Stop()
h2_bundle.go#L8541: defer timer.Stop()
h2_bundle.go#L9270: cc.idleTimer.Stop()
h2_bundle.go#L9336: defer t.Stop()
server.go#L2810: defer timer.Stop()
transfer.go#L221: timer.Stop()
transport.go#L1117: pconn.idleTimer.Stop()
transport.go#L1557: timer.Stop()
transport.go#L2363: defer timer.Stop()
transport.go#L2484: defer t.Stop()
transport.go#L2666: defer timer.Stop() // prevent leaks
nhooyr.io/websocket
dial.go#L142: defer timer.Stop()
netconn.go#L73: if !nc.writeTimer.Stop() {
netconn.go#L89: if !nc.readTimer.Stop() {
netconn.go#L118: nc.writeTimer.Stop()
netconn.go#L120: nc.readTimer.Stop()
netconn.go#L211: nc.writeTimer.Stop()
netconn.go#L225: nc.readTimer.Stop()
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |