func sync/atomic.LoadInt64
47 uses
sync/atomic (current package)
doc.go#L114: func LoadInt64(addr *int64) (val int64)
database/sql
sql.go#L1088: wait := atomic.LoadInt64(&db.waitDuration)
expvar
expvar.go#L53: return atomic.LoadInt64(&v.i)
expvar.go#L57: return strconv.FormatInt(atomic.LoadInt64(&v.i), 10)
github.com/aws/aws-sdk-go/aws/csm
metric_chan.go#L38: v := atomic.LoadInt64(ch.paused)
github.com/go-redis/redis/v8/internal/pool
conn.go#L42: unix := atomic.LoadInt64(&cn.usedAt)
go.opencensus.io/plugin/ocgrpc
stats_common.go#L154: ClientSentBytesPerRPC.M(atomic.LoadInt64(&d.sentBytes)),
stats_common.go#L155: ClientSentMessagesPerRPC.M(atomic.LoadInt64(&d.sentCount)),
stats_common.go#L156: ClientReceivedMessagesPerRPC.M(atomic.LoadInt64(&d.recvCount)),
stats_common.go#L157: ClientReceivedBytesPerRPC.M(atomic.LoadInt64(&d.recvBytes)),
stats_common.go#L166: ServerSentBytesPerRPC.M(atomic.LoadInt64(&d.sentBytes)),
stats_common.go#L167: ServerSentMessagesPerRPC.M(atomic.LoadInt64(&d.sentCount)),
stats_common.go#L168: ServerReceivedMessagesPerRPC.M(atomic.LoadInt64(&d.recvCount)),
stats_common.go#L169: ServerReceivedBytesPerRPC.M(atomic.LoadInt64(&d.recvBytes)),
go.opentelemetry.io/otel/api/metric
number.go#L152: return atomic.LoadInt64(n.AsInt64Ptr())
google.golang.org/grpc
clientconn.go#L768: CallsStarted: atomic.LoadInt64(&cc.czData.callsStarted),
clientconn.go#L769: CallsSucceeded: atomic.LoadInt64(&cc.czData.callsSucceeded),
clientconn.go#L770: CallsFailed: atomic.LoadInt64(&cc.czData.callsFailed),
clientconn.go#L771: LastCallStartedTimestamp: time.Unix(0, atomic.LoadInt64(&cc.czData.lastCallStartedTime)),
clientconn.go#L1465: CallsStarted: atomic.LoadInt64(&ac.czData.callsStarted),
clientconn.go#L1466: CallsSucceeded: atomic.LoadInt64(&ac.czData.callsSucceeded),
clientconn.go#L1467: CallsFailed: atomic.LoadInt64(&ac.czData.callsFailed),
clientconn.go#L1468: LastCallStartedTimestamp: time.Unix(0, atomic.LoadInt64(&ac.czData.lastCallStartedTime)),
server.go#L962: CallsStarted: atomic.LoadInt64(&s.czData.callsStarted),
server.go#L963: CallsSucceeded: atomic.LoadInt64(&s.czData.callsSucceeded),
server.go#L964: CallsFailed: atomic.LoadInt64(&s.czData.callsFailed),
server.go#L965: LastCallStartedTimestamp: time.Unix(0, atomic.LoadInt64(&s.czData.lastCallStartedTime)),
google.golang.org/grpc/internal/transport
http2_client.go#L1364: lastRead := atomic.LoadInt64(&t.lastRead)
http2_client.go#L1438: StreamsStarted: atomic.LoadInt64(&t.czData.streamsStarted),
http2_client.go#L1439: StreamsSucceeded: atomic.LoadInt64(&t.czData.streamsSucceeded),
http2_client.go#L1440: StreamsFailed: atomic.LoadInt64(&t.czData.streamsFailed),
http2_client.go#L1441: MessagesSent: atomic.LoadInt64(&t.czData.msgSent),
http2_client.go#L1442: MessagesReceived: atomic.LoadInt64(&t.czData.msgRecv),
http2_client.go#L1443: KeepAlivesSent: atomic.LoadInt64(&t.czData.kpCount),
http2_client.go#L1444: LastLocalStreamCreatedTimestamp: time.Unix(0, atomic.LoadInt64(&t.czData.lastStreamCreatedTime)),
http2_client.go#L1445: LastMessageSentTimestamp: time.Unix(0, atomic.LoadInt64(&t.czData.lastMsgSentTime)),
http2_client.go#L1446: LastMessageReceivedTimestamp: time.Unix(0, atomic.LoadInt64(&t.czData.lastMsgRecvTime)),
http2_server.go#L1011: lastRead := atomic.LoadInt64(&t.lastRead)
http2_server.go#L1213: StreamsStarted: atomic.LoadInt64(&t.czData.streamsStarted),
http2_server.go#L1214: StreamsSucceeded: atomic.LoadInt64(&t.czData.streamsSucceeded),
http2_server.go#L1215: StreamsFailed: atomic.LoadInt64(&t.czData.streamsFailed),
http2_server.go#L1216: MessagesSent: atomic.LoadInt64(&t.czData.msgSent),
http2_server.go#L1217: MessagesReceived: atomic.LoadInt64(&t.czData.msgRecv),
http2_server.go#L1218: KeepAlivesSent: atomic.LoadInt64(&t.czData.kpCount),
http2_server.go#L1219: LastRemoteStreamCreatedTimestamp: time.Unix(0, atomic.LoadInt64(&t.czData.lastStreamCreatedTime)),
http2_server.go#L1220: LastMessageSentTimestamp: time.Unix(0, atomic.LoadInt64(&t.czData.lastMsgSentTime)),
http2_server.go#L1221: LastMessageReceivedTimestamp: time.Unix(0, atomic.LoadInt64(&t.czData.lastMsgRecvTime)),
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |