sync/atomic.Value.Store (method)

22 uses

	sync/atomic (current package)
		value.go#L47: func (v *Value) Store(val any) {

	context
		context.go#L452: 		c.done.Store(d)
		context.go#L556: 		c.done.Store(closedchan)

	expvar
		expvar.go#L287: 	v.s.Store(value)

	github.com/aws/aws-sdk-go-v2/aws
		credential_cache.go#L155: 	p.creds.Store(&newCreds)
		credential_cache.go#L178: 	p.creds.Store((*Credentials)(nil))

	github.com/aws/aws-sdk-go-v2/internal/v4a
		credentials.go#L71: 		s.asymmetric.Store((*Credentials)(nil))
		credentials.go#L108: 	s.asymmetric.Store(&creds)

	github.com/aws/smithy-go/auth/bearer
		token_cache.go#L158: 			p.lastRefreshAttemptTime.Store(refreshAttempt)
		token_cache.go#L190: 	p.cachedToken.Store(&token)

	github.com/go-pg/pg/v10/internal/pool
		pool_sticky.go#L122: 	p._badConnError.Store(BadConnError{wrapped: reason})
		pool_sticky.go#L160: 		p._badConnError.Store(BadConnError{wrapped: nil})

	go.uber.org/atomic
		error.go#L50: 	x.v.Store(packError(val))
		string.go#L53: 	x.v.Store(val)
		time.go#L54: 	x.v.Store(packTime(val))

	google.golang.org/grpc
		clientconn.go#L145: 	cc.retryThrottler.Store((*retryThrottler)(nil))
		clientconn.go#L961: 		cc.retryThrottler.Store(newThrottler)
		clientconn.go#L963: 		cc.retryThrottler.Store((*retryThrottler)(nil))

	google.golang.org/grpc/internal/transport
		controlbuf.go#L360: 			c.trfChan.Store(make(chan struct{}))
		controlbuf.go#L403: 					c.trfChan.Store((chan struct{})(nil))
		controlbuf.go#L450: 	c.trfChan.Store((chan struct{})(nil))

	net/http
		transport.go#L880: 	t.altProto.Store(newMap)