var context.DeadlineExceeded
11 uses
context (current package)
context.go#L167: var DeadlineExceeded error = deadlineExceededError{}
context.go#L632: c.cancel(true, DeadlineExceeded, cause) // deadline has already passed
context.go#L639: c.cancel(true, DeadlineExceeded, cause)
net
cgo_unix.go#L52: IsTimeout: err == context.DeadlineExceeded,
cgo_unix.go#L82: IsTimeout: ctx.Err() == context.DeadlineExceeded,
net.go#L452: case context.DeadlineExceeded:
net.go#L623: return err == context.DeadlineExceeded
net.go#L688: if errors.Is(err, context.DeadlineExceeded) || errors.Is(err, context.Canceled) {
net/http
h2_bundle.go#L1028: if !errors.Is(call.err, context.Canceled) && !errors.Is(call.err, context.DeadlineExceeded) {
server.go#L3692: case context.DeadlineExceeded:
transport.go#L2642: func (e *timeoutError) Is(err error) bool { return err == context.DeadlineExceeded }
 |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |