var context.Canceled

19 uses

	context (current package)
		context.go#L157: var Canceled = errors.New("context canceled")
		context.go#L238: 	return &c, func() { c.cancel(true, Canceled) }
		context.go#L446: 		return c, func() { c.cancel(false, Canceled) }
		context.go#L455: 	return c, func() { c.cancel(true, Canceled) }

	cloud.google.com/go/internal
		retry.go#L43: 		if err != nil && err != context.Canceled && err != context.DeadlineExceeded {

	cloud.google.com/go/storage
		writer.go#L208: 		if werr == context.Canceled || werr == context.DeadlineExceeded {

	contrib.go.opencensus.io/integrations/ocsql
		driver.go#L888: 	case context.Canceled:

	github.com/go-redis/redis/v8
		error.go#L31: 	case nil, context.Canceled, context.DeadlineExceeded:

	github.com/jackc/pgconn
		errors.go#L24: 	if errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded) {

	golang.org/x/net/context
		go17.go#L21: var Canceled = context.Canceled

	golang.org/x/pkgsite/internal/database
		logging.go#L107: 				if errors.Is(ctx.Err(), context.Canceled) ||

	golang.org/x/pkgsite/internal/proxydatasource
		datasource.go#L121: 		if !errors.Is(ctx.Err(), context.Canceled) {

	google.golang.org/api/storage/v1
		storage-gen.go#L77: var _ = context.Canceled

	google.golang.org/grpc
		picker_wrapper.go#L114: 				case context.Canceled:
		rpc_util.go#L792: 		case context.Canceled:

	google.golang.org/grpc/internal/transport
		transport.go#L800: 	case context.Canceled:

	google.golang.org/grpc/status
		status.go#L122: 	case context.Canceled:

	net
		net.go#L423: 	case context.Canceled:

	net/http/httputil
		reverseproxy.go#L452: 		if rerr != nil && rerr != io.EOF && rerr != context.Canceled {