sync/atomic.Value.Store (method)

12 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)

	go.pact.im/x/process
		process.go#L126: 			p.err.Store(err)

	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#L152: 	cc.retryThrottler.Store((*retryThrottler)(nil))
		clientconn.go#L1096: 		cc.retryThrottler.Store(newThrottler)
		clientconn.go#L1098: 		cc.retryThrottler.Store((*retryThrottler)(nil))

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