- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 25 for 9223372036854775809 (0.17 sec)
-
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/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
public String configParameter; @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer depth; @Min(value = 0) @Max(value = 9223372036854775807L) @ValidateTypeFailure public Long maxAccessCount; @Required @Size(max = 200) public String userAgent; @Required @Min(value = 1) @Max(value = 2147483647)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K 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/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/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) -
guava-tests/test/com/google/common/math/LongMathTest.java
if (isAndroid && a == -4294967296L && b == 2147483648L) { /* * Bug in older versions of Android we test against, since fixed: -9223372036854775808L / * -4294967296L = -9223372036854775808L! * * To be clear, this bug affects not the test's computation of the expected result but the * _actual prod code_. But it probably affects only unusual cases.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 30.6K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64enc.s
// TODO means they cannot be handled by current assembler. #include "../../../../../runtime/textflag.h" TEXT asmtest(SB),DUPOK|NOSPLIT,$-8 AND $(1<<63), R1 // AND $-9223372036854775808, R1 // 21004192 ADCW ZR, R8, R10 // 0a011f1a ADC R0, R2, R12 // 4c00009a ADCSW R9, R21, R6 // a602093a
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jul 24 01:11:41 UTC 2023 - 43.9K 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) -
doc/go1.17_spec.html
int16 the set of all signed 16-bit integers (-32768 to 32767) int32 the set of all signed 32-bit integers (-2147483648 to 2147483647) int64 the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807) float32 the set of all IEEE 754 32-bit floating-point numbers float64 the set of all IEEE 754 64-bit floating-point numbers
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
doc/go_spec.html
int16 the set of all signed 16-bit integers (-32768 to 32767) int32 the set of all signed 32-bit integers (-2147483648 to 2147483647) int64 the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807) float32 the set of all IEEE 754 32-bit floating-point numbers float64 the set of all IEEE 754 64-bit floating-point numbers
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0)