func time.Until
17 uses
time (current package)
time.go#L881: func Until(t Time) Duration {
context
context.go#L443: dur := time.Until(d)
context.go#L475: time.Until(c.deadline).String() + "])"
crypto/tls
tls.go#L125: deadlineTimeout := time.Until(netDialer.Deadline)
github.com/lib/pq
notify.go#L790: time.Sleep(time.Until(nextReconnect))
golang.org/x/pkgsite/cmd/worker
main.go#L175: dialTimeout = time.Until(dl)
google.golang.org/grpc
clientconn.go#L1290: case <-time.After(time.Until(connectDeadline)):
dialoptions.go#L384: return f(addr, time.Until(deadline))
server.go#L930: trInfo.firstLine.deadline = time.Until(dl)
server.go#L1106: logEntry.Timeout = time.Until(deadline)
server.go#L1390: logEntry.Timeout = time.Until(deadline)
stream.go#L242: trInfo.firstLine.deadline = time.Until(deadline)
stream.go#L303: logEntry.Timeout = time.Until(deadline)
google.golang.org/grpc/internal/transport
http2_client.go#L454: timeout := time.Until(dl)
internal/poll
fd_poll_runtime.go#L152: d = int64(time.Until(t))
net
pipe.go#L50: if dur := time.Until(t); dur > 0 {
net/http
client.go#L393: timer := time.NewTimer(time.Until(deadline))
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |