- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for 9223372036854775807 (0.15 sec)
-
api/go1.17.txt
pkg math (darwin-amd64), const MaxInt = 9223372036854775807 pkg math (darwin-amd64), const MaxUint = 18446744073709551615 pkg math (darwin-amd64), const MinInt = -9223372036854775808 pkg math (darwin-amd64-cgo), const MaxInt = 9223372036854775807 pkg math (darwin-amd64-cgo), const MaxUint = 18446744073709551615 pkg math (darwin-amd64-cgo), const MinInt = -9223372036854775808 pkg math (darwin-arm64), const MaxInt = 9223372036854775807
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 18K bytes - Viewed (0) -
utils/utils_test.go
tests := []struct { name string in interface{} out string }{ {"int", math.MaxInt64, "9223372036854775807"}, {"int8", int8(math.MaxInt8), "127"}, {"int16", int16(math.MaxInt16), "32767"}, {"int32", int32(math.MaxInt32), "2147483647"}, {"int64", int64(math.MaxInt64), "9223372036854775807"}, {"uint", uint(math.MaxUint64), "18446744073709551615"}, {"uint8", uint8(math.MaxUint8), "255"},
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Aug 22 11:03:42 UTC 2024 - 4.9K bytes - Viewed (0) -
docs/config/README.md
sync_events (boolean) set to enable synchronous bucket notifications (default: 'off') object_max_versions (number) set max allowed number of versions per object (default: '9223372036854775807') ``` or environment variables ``` MINIO_API_REQUESTS_MAX (number) set the maximum number of concurrent requests (default: 'auto')
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 16 08:43:49 UTC 2024 - 17.9K bytes - Viewed (1) -
src/archive/tar/tar_test.go
}, { header: &Header{ModTime: time.Unix(math.MaxInt64, 0)}, paxHdrs: map[string]string{paxMtime: "9223372036854775807"}, formats: FormatPAX | FormatGNU, }, { header: &Header{ModTime: time.Unix(math.MaxInt64, 0), Format: FormatUSTAR}, paxHdrs: map[string]string{paxMtime: "9223372036854775807"}, formats: FormatUnknown, }, { header: &Header{ModTime: time.Unix(-1, 0)},
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 25 00:25:45 UTC 2024 - 23.9K bytes - Viewed (0) -
internal/config/api/api.go
Key: apiRootAccess, Value: config.EnableOn, }, config.KV{ Key: apiSyncEvents, Value: config.EnableOff, }, config.KV{ Key: apiObjectMaxVersions, Value: "9223372036854775807", }, } ) // Config storage class configuration type Config struct { RequestsMax int `json:"requests_max"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 16 08:43:49 UTC 2024 - 11.5K bytes - Viewed (0) -
src/builtin/builtin.go
type int16 int16 // int32 is the set of all signed 32-bit integers. // Range: -2147483648 through 2147483647. type int32 int32 // int64 is the set of all signed 64-bit integers. // Range: -9223372036854775808 through 9223372036854775807. type int64 int64 // float32 is the set of all IEEE 754 32-bit floating-point numbers. type float32 float32 // float64 is the set of all IEEE 754 64-bit floating-point numbers.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Apr 11 20:22:45 UTC 2024 - 12.7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64.s
AND R1@>33, R2 AND $(1<<63), R1 // AND $-9223372036854775808, R1 // 21004192 AND $(1<<63-1), R1 // AND $9223372036854775807, R1 // 21f84092 ORR $(1<<63), R1 // ORR $-9223372036854775808, R1 // 210041b2 ORR $(1<<63-1), R1 // ORR $9223372036854775807, R1 // 21f840b2
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jul 24 18:45:14 UTC 2024 - 95.2K bytes - Viewed (0) -
internal/s3select/select_test.go
wantResult: `{"_1":3}`, }, { name: "bignum-1", query: `SELECT id from s3object s WHERE s.id <= 9223372036854775807`, wantResult: `{"id":0} {"id":1} {"id":2} {"id":3}`, }, { name: "bignum-2", query: `SELECT id from s3object s WHERE s.id >= -9223372036854775808`, wantResult: `{"id":0} {"id":1} {"id":2} {"id":3}`, }, { name: "donatello-3",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Dec 23 07:19:11 UTC 2023 - 76.2K bytes - Viewed (0) -
internal/s3select/sql/value_test.go
wantOK: true, }, { name: "max-overflow", fields: fields{ value: []byte("9223372036854775808"), }, // Seems to be what strconv.ParseInt returns want: math.MaxInt64, wantOK: false, }, { name: "min-underflow", fields: fields{ value: []byte("-9223372036854775809"), }, // Seems to be what strconv.ParseInt returns want: math.MinInt64,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 06 16:56:10 UTC 2023 - 12.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CookieTest.kt
.isEqualTo(MAX_DATE) assertThat(parseCookie(9223372036854773807L, url, "a=b; Max-Age=1")!!.expiresAt) .isEqualTo(MAX_DATE) assertThat(parseCookie(9223372036854773807L, url, "a=b; Max-Age=2")!!.expiresAt) .isEqualTo(MAX_DATE) assertThat(parseCookie(9223372036854773807L, url, "a=b; Max-Age=3")!!.expiresAt) .isEqualTo(MAX_DATE)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 24.3K bytes - Viewed (0)