var context.Canceled

10 uses

	context (current package)
		context.go#L163: var Canceled = errors.New("context canceled")
		context.go#L237: 	return c, func() { c.cancel(true, Canceled, nil) }
		context.go#L265: 	return c, func(cause error) { c.cancel(true, Canceled, cause) }
		context.go#L326: 			a.cancel(true, Canceled, nil)
		context.go#L633: 		return c, func() { c.cancel(false, Canceled, nil) }
		context.go#L642: 	return c, func() { c.cancel(true, Canceled, nil) }

	net
		net.go#L444: func (canceledError) Is(err error) bool { return err == context.Canceled }
		net.go#L450: 	case context.Canceled:
		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) {