const math.MaxInt64

12 uses

	math (current package)
		const.go#L50: 	MaxInt64  = 1<<63 - 1           // 9223372036854775807

	math/big
		float.go#L821: 		return math.MaxInt64, Below
		float.go#L830: 		return math.MaxInt64, Below

	github.com/go-faster/jx
		dec_int.gen.go#L980: 		if val > math.MaxInt64+1 {
		dec_int.gen.go#L989: 	if val > math.MaxInt64 {

	go.uber.org/zap
		field.go#L38: 	_maxTimeInt64 = time.Unix(0, math.MaxInt64)

	mime/multipart
		formdata.go#L97: 	if maxFileMemoryBytes == math.MaxInt64 {
		formdata.go#L105: 			maxMemoryBytes = math.MaxInt64

	net/textproto
		reader.go#L482: 	return readMIMEHeader(r, math.MaxInt64, math.MaxInt64)

	nhooyr.io/websocket
		netconn.go#L61: 	nc.writeTimer = time.AfterFunc(math.MaxInt64, func() {
		netconn.go#L77: 	nc.readTimer = time.AfterFunc(math.MaxInt64, func() {