github.com/go-pg/pg/v10/internal.UndoneContext.Value (method, view implemented interface methods)

40 uses

	github.com/aws/smithy-go/context
		suppress_expired.go#L37: 	return v.valuesCtx.Value(key)
		suppress_expired.go#L76: 	v := ctx.Value(preserveExpiredValuesKey{})

	github.com/aws/smithy-go/middleware
		logging.go#L16: 	logger, ok := ctx.Value(loggerKey{}).(logging.Logger)
		stack_values.go#L13: 	md, _ := ctx.Value(stackValuesKey{}).(*stackValues)
		stack_values.go#L27: 	md, _ := ctx.Value(stackValuesKey{}).(*stackValues)

	github.com/aws/smithy-go/transport/http
		middleware_headers.go#L26: 	v, _ := ctx.Value(isContentTypeAutoSet{}).(bool)

	context
		context.go#L153: 	Value(key any) any
		context.go#L302: 	p, ok := parent.Value(&cancelCtxKey).(*cancelCtx)
		context.go#L590: 			return c.Value(key)

	golang.org/x/net/trace
		trace.go#L142: 	tr, ok = ctx.Value(contextKey).(Trace)

	google.golang.org/grpc
		rpc_util.go#L802: 	s, ok = ctx.Value(rpcInfoContextKey{}).(*rpcInfo)
		server.go#L1780: 	s, _ := ctx.Value(streamKey{}).(ServerTransportStream)

	google.golang.org/grpc/internal/credentials
		credentials.go#L34: 	return ctx.Value(requestInfoKey{})
		credentials.go#L43: 	return ctx.Value(clientHandshakeInfoKey{})

	google.golang.org/grpc/internal/grpcutil
		metadata.go#L38: 	md, ok = ctx.Value(mdExtraKey{}).(metadata.MD)

	google.golang.org/grpc/internal/transport
		http2_server.go#L1452: 	conn, _ := ctx.Value(connectionKey{}).(net.Conn)

	google.golang.org/grpc/metadata
		metadata.go#L171: 	md, _ := ctx.Value(mdOutgoingKey{}).(rawMD)
		metadata.go#L183: 	md, ok := ctx.Value(mdIncomingKey{}).(MD)
		metadata.go#L206: 	md, ok := ctx.Value(mdIncomingKey{}).(MD)
		metadata.go#L242: 	raw, ok := ctx.Value(mdOutgoingKey{}).(rawMD)
		metadata.go#L254: 	raw, ok := ctx.Value(mdOutgoingKey{}).(rawMD)

	google.golang.org/grpc/peer
		peer.go#L49: 	p, ok = ctx.Value(peerKey{}).(*Peer)

	google.golang.org/grpc/stats
		stats.go#L261: 	b, _ := ctx.Value(incomingTagsKey{}).([]byte)
		stats.go#L277: 	b, _ := ctx.Value(outgoingTagsKey{}).([]byte)
		stats.go#L303: 	b, _ := ctx.Value(incomingTraceKey{}).([]byte)
		stats.go#L317: 	b, _ := ctx.Value(outgoingTraceKey{}).([]byte)

	net
		dial.go#L399: 	if trace, _ := ctx.Value(nettrace.TraceKey{}).(*nettrace.Trace); trace != nil {
		dial.go#L569: 	trace, _ := ctx.Value(nettrace.TraceKey{}).(*nettrace.Trace)
		lookup.go#L273: 		return ovc.lookupValues.Value(key)
		lookup.go#L296: 	trace, _ := ctx.Value(nettrace.TraceKey{}).(*nettrace.Trace)
		lookup.go#L304: 	if alt, _ := ctx.Value(nettrace.LookupIPAltResolverKey{}).(func(context.Context, string, string) ([]IPAddr, error)); alt != nil {

	net/http
		server.go#L2932: 		if silenceSemicolonsWarning, ok := r.Context().Value(silenceSemWarnContextKey).(func()); ok {
		server.go#L3205: 	s, _ := r.Context().Value(ServerContextKey).(*Server)
		transport.go#L2678: 	if logf, ok := tr.Request.Context().Value(tLogKey{}).(func(string, ...any)); ok {

	net/http/httptrace
		trace.go#L25: 	trace, _ := ctx.Value(clientEventContextKey{}).(*ClientTrace)

	net/http/httputil
		reverseproxy.go#L387: 	if req.Context().Value(http.ServerContextKey) != nil {

	net/http/pprof
		pprof.go#L105: 	srv, ok := r.Context().Value(http.ServerContextKey).(*http.Server)

	runtime/pprof
		label.go#L28: 	labels, _ := ctx.Value(labelContextKey{}).(*labelMap)
		runtime.go#L25: 	ctxLabels, _ := ctx.Value(labelContextKey{}).(*labelMap)

	runtime/trace
		annotation.go#L66: 	if s, ok := ctx.Value(traceContextKey{}).(*Task); ok {