const math.MaxInt64
18 uses
math (current package)
const.go#L50: MaxInt64 = 1<<63 - 1 // 9223372036854775807
math/big
float.go#L819: return math.MaxInt64, Below
float.go#L828: return math.MaxInt64, Below
github.com/coder/websocket
netconn.go#L61: nc.writeTimer = time.AfterFunc(math.MaxInt64, func() {
netconn.go#L77: nc.readTimer = time.AfterFunc(math.MaxInt64, func() {
github.com/go-faster/jx
dec_int.gen.go#L980: if val > math.MaxInt64+1 {
dec_int.gen.go#L989: if val > math.MaxInt64 {
github.com/refraction-networking/utls
u_parrots.go#L2714: randInt64, err := crand.Int(crand.Reader, big.NewInt(math.MaxInt64))
u_prng.go#L149: f := float64(p.Int63()) / float64(math.MaxInt64)
go.opentelemetry.io/otel/trace/internal/telemetry
span.go#L205: v := int64(min(val.Uint64(), math.MaxInt64)) // nolint: gosec // Overflow checked.
span.go#L210: v := int64(min(val.Uint64(), math.MaxInt64)) // nolint: gosec // Overflow checked.
span.go#L364: v := int64(min(val.Uint64(), math.MaxInt64)) // nolint: gosec // Overflow checked.
mime/multipart
formdata.go#L97: if maxFileMemoryBytes == math.MaxInt64 {
formdata.go#L105: maxMemoryBytes = math.MaxInt64
net/http
h2_bundle.go#L1134: http2setDefault(&conf.PingTimeout, 1, math.MaxInt64, 15*time.Second)
net/textproto
reader.go#L171: lim = math.MaxInt64
reader.go#L508: return readMIMEHeader(r, math.MaxInt64, math.MaxInt64)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |