const time.Millisecond
17 uses
time (current package)
format.go#L1578: "ms": uint64(Millisecond),
time.go#L634: Millisecond = 1000 * Microsecond
time.go#L635: Second = 1000 * Millisecond
time.go#L669: case u < uint64(Millisecond):
crypto/tls
handshake_client.go#L395: obfuscatedTicketAge: uint32(ticketAge/time.Millisecond) + session.ageAdd,
handshake_client_tls13.go#L261: hs.hello.pskIdentities[0].obfuscatedTicketAge = uint32(ticketAge/time.Millisecond) + hs.session.ageAdd
github.com/cenkalti/backoff/v4
exponential.go#L76: DefaultInitialInterval = 500 * time.Millisecond
go.uber.org/zap
time.go#L26: return t.UnixNano() / int64(time.Millisecond)
go.uber.org/zap/zapcore
encoder.go#L107: millis := float64(nanos) / float64(time.Millisecond)
net
dial.go#L224: return 300 * time.Millisecond
net/http
h2_bundle.go#L8094: t := time.AfterFunc(250*time.Millisecond, cc.forceCloseConn)
server.go#L1756: const rstAvoidanceDelay = 500 * time.Millisecond
server.go#L2764: const shutdownPollIntervalMax = 500 * time.Millisecond
server.go#L2797: pollIntervalBase := time.Millisecond
server.go#L3063: tempDelay = 5 * time.Millisecond
transfer.go#L218: timer := time.NewTimer(200 * time.Millisecond)
transport.go#L2462: var maxWriteWaitBeforeConnReuse = 50 * time.Millisecond
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. |