sync/atomic.Int64.Load (method)
30 uses
sync/atomic (current package)
type.go#L114: func (x *Int64) Load() int64 { return LoadInt64(&x.v) }
expvar
expvar.go#L59: return v.i.Load()
expvar.go#L67: return strconv.AppendInt(b, v.i.Load(), 10)
go.uber.org/zap/zapcore
sampler.go#L66: resetAfter := c.resetAt.Load()
google.golang.org/grpc/internal/channelz
channel.go#L112: c.CallsStarted.Store(o.CallsStarted.Load())
channel.go#L113: c.CallsSucceeded.Store(o.CallsSucceeded.Load())
channel.go#L114: c.CallsFailed.Store(o.CallsFailed.Load())
channel.go#L115: c.LastCallStartedTimestamp.Store(o.LastCallStartedTimestamp.Load())
channel.go#L137: return c.CallsStarted.Load() == oc.CallsStarted.Load() &&
channel.go#L138: c.CallsFailed.Load() == oc.CallsFailed.Load() &&
channel.go#L139: c.CallsSucceeded.Load() == oc.CallsSucceeded.Load() &&
channel.go#L140: c.LastCallStartedTimestamp.Load() == oc.LastCallStartedTimestamp.Load()
channel.go#L154: c.State.Load(), strFromPointer(c.Target.Load()), c.CallsStarted.Load(), c.CallsSucceeded.Load(), c.CallsFailed.Load(), c.LastCallStartedTimestamp.Load(),
server.go#L65: sm.CallsStarted.Store(o.CallsStarted.Load())
server.go#L66: sm.CallsSucceeded.Store(o.CallsSucceeded.Load())
server.go#L67: sm.CallsFailed.Store(o.CallsFailed.Load())
server.go#L68: sm.LastCallStartedTimestamp.Store(o.LastCallStartedTimestamp.Load())
log/slog
level.go#L169: return Level(int(v.val.Load()))
testing
allocs.go#L21: if parallelStart.Load() != parallelStop.Load() {
testing.go#L970: if !c.done && int64(race.Errors()) > c.lastRaceErrors.Load() {
testing.go#L1602: last := c.lastRaceErrors.Load()
testing.go#L1624: last := parent.lastRaceErrors.Load()
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)