- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for 9223372036854775807 (0.06 sec)
-
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 Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.1K bytes - Viewed (1) -
android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java
} } public void testParseLong() { assertThat(UnsignedLongs.parseUnsignedLong("18446744073709551615")) .isEqualTo(0xffffffffffffffffL); assertThat(UnsignedLongs.parseUnsignedLong("9223372036854775807")) .isEqualTo(0x7fffffffffffffffL); assertThat(UnsignedLongs.parseUnsignedLong("18382112080831834642")) .isEqualTo(0xff1a618b7f65ea12L);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K 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 Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Dec 30 23:59:23 UTC 2024 - 12.8K 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 Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Mar 26 10:48:50 UTC 2025 - 95.3K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/riscv64.s
MOV $0xffffffff00000000, X5 // MOV $-4294967296, X5 // 9302f0ff93920202 MOV $0x1ffffffff0000000, X5 // MOV $2305843008945258496, X5 // 9302f0ff9392f20193d23200 MOV $0x7fffffffffffffff, X5 // MOV $9223372036854775807, X5 // 9302f0ff93d21200 // Converted to load of symbol (AUIPC + LD) MOV $0x80000001, X5 // MOV $2147483649, X5 // 9702000083b20200 MOV $0x100000001, X5 // MOV $4294967297, X5 // 9702000083b20200
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed May 21 14:19:19 UTC 2025 - 49.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/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 Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 24.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java
@Max(value = 2147483647) @ValidateTypeFailure public Integer depth; /** * Maximum number of pages/documents to access during crawling. */ @Min(value = 0) @Max(value = 9223372036854775807L) @ValidateTypeFailure public Long maxAccessCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LongAdderTest.java
assertThat(longAdder.sum()).isEqualTo(Long.MAX_VALUE); longAdder.add(1); // silently overflows; is this a bug? // See https://github.com/google/guava/issues/3503 assertThat(longAdder.sum()).isEqualTo(-9223372036854775808L); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java
@Max(value = 2147483647) @ValidateTypeFailure public Integer depth; /** The maximum number of documents to access during crawling (0 means unlimited). */ @Min(value = 0) @Max(value = 9223372036854775807L) @ValidateTypeFailure public Long maxAccessCount; /** The number of threads to use for crawling (required, 1 to 2147483647). */ @Required @Min(value = 1) @Max(value = 2147483647)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
@Max(value = 2147483647) @ValidateTypeFailure public Integer depth; /** * The maximum number of URLs to access during crawling. */ @Min(value = 0) @Max(value = 9223372036854775807L) @ValidateTypeFailure public Long maxAccessCount; /** * The user agent string to use during crawling. */ @Required @Size(max = 200) public String userAgent;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0)