func time.NewTimer
15 uses
time (current package)
sleep.go#L86: func NewTimer(d Duration) *Timer {
sleep.go#L157: return NewTimer(d).C
github.com/cenkalti/backoff/v4
timer.go#L24: t.timer = time.NewTimer(duration)
github.com/gotd/td/clock
system.go#L44: return systemTimer{timer: time.NewTimer(d)}
net
dial.go#L552: fallbackTimer := time.NewTimer(sd.fallbackDelay())
net/http
client.go#L402: timer := time.NewTimer(time.Until(deadline))
h2_bundle.go#L4888: timer := time.NewTimer(http2prefaceTimeout) // TODO: configurable on *Server?
h2_bundle.go#L7631: return time.NewTimer(d)
h2_bundle.go#L8505: timer := time.NewTimer(continueTimeout)
h2_bundle.go#L8540: timer := time.NewTimer(d)
server.go#L2809: timer := time.NewTimer(nextPollInterval())
transfer.go#L218: timer := time.NewTimer(200 * time.Millisecond)
transport.go#L2362: timer := time.NewTimer(pc.t.ExpectContinueTimeout)
transport.go#L2483: t := time.NewTimer(maxWriteWaitBeforeConnReuse)
transport.go#L2665: timer := time.NewTimer(d)
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. |