- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 738 for 11 (1.86 sec)
-
src/test/java/jcifs/internal/smb1/com/SmbComQueryInformationResponseTest.java
} @Test void testNegativeTimezoneOffset() { // Test with negative timezone offset long negativeOffset = -11L * 3600000L; // -11 hours response = new SmbComQueryInformationResponse(mockConfig, negativeOffset); long testTime = 2000000000L; setFieldValue(response, "lastWriteTime", testTime);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/jcifs/util/ServerResponseValidatorTest.java
assertEquals(Integer.MIN_VALUE, validator.safeAdd(Integer.MIN_VALUE, 0)); assertEquals(0, validator.safeMultiply(0, Integer.MAX_VALUE)); assertEquals(1, validator.safeMultiply(1, 1)); // Test exact buffer boundaries byte[] buffer = new byte[100]; validator.validateBufferAccess(buffer, 0, 100); // Exactly full buffer
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
get() = Proxy(Proxy.Type.HTTP, socketAddress) /** * True if ALPN is used on incoming HTTPS connections to negotiate a protocol like HTTP/1.1 or * HTTP/2. This is true by default; set to false to disable negotiation and restrict connections * to HTTP/1.1. */ public var protocolNegotiationEnabled: Boolean = true /**
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Aug 02 20:36:00 UTC 2025 - 40.3K bytes - Viewed (0) -
internal/s3select/csv/testdata/testdata.zip
958007812,40.839885711669922,-73.85198974609375,40.864917755126953,1,2.85,11,0,0.5,0,0,,,11.5,2,1,182,3,green,0.00,5.1,0.0,40,32,3.80,1307,210.02,2,Bronx,021002,2021002,E,BX46,Parkchester,3709,493,318,2,Bronx,031800,2031800,I,BX31,Allerton-Pelham Gardens,3704^3389501,2,2014-03-07 10:01:17,2014-03-07 10:13:07,N,1,-73.859046936035156,40.837963104248047,-73.841796875,40.868251800537109,1,2.64,11,0,0.5,0,0,,,11.5,2,1,182,81,green,0.00,3.9,0.0,37,26,7.83,1307,210.02,2,Bronx,021002,2021002,E,BX46,Park...
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 111.6K bytes - Viewed (0) -
docs/zh/docs/tutorial/path-params-numeric-validations.md
因此,`0.5` 将是有效值。但是 `0.0`或 `0` 不是。 对于 <abbr title="less than"><code>lt</code></abbr> 也是一样的。 {* ../../docs_src/path_params_numeric_validations/tutorial006.py hl[11] *} ## 总结 你能够以与 [查询参数和字符串校验](query-params-str-validations.md){.internal-link target=_blank} 相同的方式使用 `Query`、`Path`(以及其他你还没见过的类)声明元数据和字符串校验。 而且你还可以声明数值校验: * `gt`:大于(`g`reater `t`han)
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.6K bytes - Viewed (0) -
cmd/mrf_gen.go
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 6.8K bytes - Viewed (0) -
internal/grid/grid_test.go
t.Log("2: server payload: ", len(payload), "bytes.") err := RemoteErr(payload) return nil, &err })) remote := grid.Managers[1] // 1: Echo errFatal(remote.RegisterSingleHandler(handlerTest, func(payload []byte) ([]byte, *RemoteErr) { t.Log("1: server payload: ", len(payload), "bytes.") return append([]byte{}, payload...), nil }))
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 36.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/InterceptorTest.kt
.addInterceptor(interceptor1) .addInterceptor(interceptor2) .build() server.enqueue( MockResponse .Builder() .body("abc") .throttleBody(1, 1, TimeUnit.SECONDS) .build(), ) val request1 = Request .Builder() .url(server.url("/")) .build() val call = client.newCall(request1)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Nov 04 16:11:23 UTC 2025 - 28.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
future = service.scheduleAtFixedRate(runnable, 1, 1, MILLISECONDS); assertExecutionException(future, ex); assertEquals(5, runnable.count); assertEquals(0, delegate.getQueue().size()); runnable = new ThrowingRunnable(5, ex); future = service.scheduleWithFixedDelay(runnable, 1, 1, MILLISECONDS); assertExecutionException(future, ex); assertEquals(5, runnable.count);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Dec 12 00:25:21 UTC 2025 - 26.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableCollection.java
} else if (minCapacity <= oldCapacity) { return oldCapacity; } // careful of overflow! int newCapacity = oldCapacity + (oldCapacity >> 1) + 1; if (newCapacity < minCapacity) { newCapacity = Integer.highestOneBit(minCapacity - 1) << 1; } if (newCapacity < 0) { newCapacity = Integer.MAX_VALUE; // guaranteed to be >= newCapacity } return newCapacity;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.4K bytes - Viewed (0)