type sync/atomic.Value

27 uses

	sync/atomic (current package)
		value.go#L16: type Value struct {
		value.go#L28: func (v *Value) Load() (x interface{}) {
		value.go#L45: func (v *Value) Store(x interface{}) {

	sync
		map.go#L39: 	read atomic.Value // readOnly

	encoding/gob
		type.go#L676: 	encoder atomic.Value // *encEngine
		type.go#L686: var typeInfoMap atomic.Value

	expvar
		expvar.go#L233: 	s atomic.Value // string

	github.com/aws/aws-sdk-go/aws/credentials
		credentials.go#L208: 	creds atomic.Value

	github.com/aws/aws-sdk-go/aws/ec2metadata
		token_provider.go#L20: 	token         atomic.Value

	github.com/go-redis/redis/v8
		cluster.go#L612: 	state     atomic.Value

	github.com/go-redis/redis/v8/internal/pool
		pool.go#L74: 	lastDialError atomic.Value
		pool_sticky.go#L43: 	_badConnError atomic.Value

	go.opencensus.io/trace
		export.go#L38: 	exporters  atomic.Value
		trace.go#L534: var config atomic.Value // access atomically

	go.opentelemetry.io/otel/api/global
		handler.go#L45: 	delegate atomic.Value

	go.opentelemetry.io/otel/api/global/internal
		state.go#L104: func defaultTracerValue() *atomic.Value {
		state.go#L105: 	v := &atomic.Value{}
		state.go#L110: func defaultMeterValue() *atomic.Value {
		state.go#L111: 	v := &atomic.Value{}
		state.go#L116: func defaultPropagatorsValue() *atomic.Value {
		state.go#L117: 	v := &atomic.Value{}

	google.golang.org/grpc
		clientconn.go#L498: 	retryThrottler  atomic.Value

	google.golang.org/grpc/internal/transport
		controlbuf.go#L287: 	trfChan                 atomic.Value // *chan struct{}

	image
		format.go#L28: 	atomicFormats atomic.Value

	internal/testlog
		log.go#L29: var logger atomic.Value

	net/http
		server.go#L291: 	curReq atomic.Value // of *response (which has a Request in it)
		transport.go#L105: 	altProto atomic.Value // of nil or map[string]RoundTripper, key is URI scheme