const math.MaxInt64
27 uses
math (current package)
const.go#L46: MaxInt64 = 1<<63 - 1
math/big
float.go#L813: return math.MaxInt64, Below
float.go#L822: return math.MaxInt64, Below
github.com/jackc/pgtype
convert.go#L243: } else if srcVal > math.MaxInt64 {
int8.go#L48: if value > math.MaxInt64 {
int8.go#L56: if int64(value) > math.MaxInt64 {
int8.go#L61: if uint64(value) > math.MaxInt64 {
int8.go#L72: if value > math.MaxInt64 {
int8.go#L77: if value > math.MaxInt64 {
numeric.go#L35: var bigMaxInt64 *big.Int = big.NewInt(math.MaxInt64)
github.com/jackc/pgx/v4
values.go#L104: if arg > math.MaxInt64 {
values.go#L109: if uint64(arg) > math.MaxInt64 {
github.com/jackc/pgx/v4/stdlib
sql.go#L469: return math.MaxInt64, true
github.com/lib/pq
rows.go#L52: return math.MaxInt64, true
github.com/prometheus/common/model
time.go#L39: Latest = Time(math.MaxInt64)
go.opentelemetry.io/otel/api/metric
number.go#L67: return NewInt64Number(math.MaxInt64)
golang.org/x/crypto/ssh
common.go#L268: } else if c.RekeyThreshold >= math.MaxInt64 {
common.go#L270: c.RekeyThreshold = math.MaxInt64
golang.org/x/net/trace
histogram.go#L302: upperBound = math.MaxInt64
golang.org/x/pkgsite/internal/fetch
load.go#L379: var maxModuleZipSize int64 = math.MaxInt64
google.golang.org/grpc/internal/transport
defaults.go#L31: infinity = time.Duration(math.MaxInt64)
http_util.go#L435: const maxHours = math.MaxInt64 / int64(time.Hour)
http_util.go#L438: return time.Duration(math.MaxInt64), nil
google.golang.org/protobuf/types/known/durationpb
duration.pb.go#L189: return time.Duration(math.MaxInt64)
gopkg.in/yaml.v2
decode.go#L498: if resolved <= math.MaxInt64 && !out.OverflowInt(int64(resolved)) {
decode.go#L503: if resolved <= math.MaxInt64 && !out.OverflowInt(int64(resolved)) {
mime/multipart
formdata.go#L48: maxValueBytes = math.MaxInt64
![]() |
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. |