- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for 817e (0.13 sec)
-
src/test/java/org/codelibs/fess/util/JvmUtilTest.java
System.setProperty("java.version", "17.0.2"); String[] args = new String[] { "-server", // No version prefix "8-:-Xms1g", // Range from 8 "17:-Xmx4g", // Exact 17 "invalid:pattern", // Invalid pattern "18-:-XX:+UseZGC", // Range from 18 (should be excluded) "11:-XX:+UseG1GC", // Exact 11 (should be excluded)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 10.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/HostAndPortTest.java
checkFromStringCase("2001::3", 65536, "2001::3", -1, false); } public void testFromStringUnusedDefaultPort() { // Default port, but unused. checkFromStringCase("gmail.com:81", 77, "gmail.com", 81, true); checkFromStringCase("192.0.2.2:83", 77, "192.0.2.2", 83, true); checkFromStringCase("[2001::2]:85", 77, "2001::2", 85, true); } public void testFromStringNonAsciiDigits() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/HostAndPortTest.java
checkFromStringCase("2001::3", 65536, "2001::3", -1, false); } public void testFromStringUnusedDefaultPort() { // Default port, but unused. checkFromStringCase("gmail.com:81", 77, "gmail.com", 81, true); checkFromStringCase("192.0.2.2:83", 77, "192.0.2.2", 83, true); checkFromStringCase("[2001::2]:85", 77, "2001::2", 85, true); } public void testFromStringNonAsciiDigits() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequestTest.java
when(mockOutputData.size()).thenReturn(50); request.setOutputData(mockOutputData); int size = request.size(); // Base size 120 + 50 = 170, aligned to 8 = 176 assertEquals(176, size); verify(mockOutputData).size(); } @Test @DisplayName("Test size calculation with both input and output data") void testSizeWithBothData() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
// size8(18, 2): rem = 18%8 - 2 = 2 - 2 = 0, returns 18 assertEquals(18, ServerMessageBlock2.size8(18, 2)); // size8(17, 2): rem = 17%8 - 2 = 1 - 2 = -1, rem = 8 + (-1) = 7, returns 17 + 8 - 7 = 18 assertEquals(18, ServerMessageBlock2.size8(17, 2)); // size8(15, 2): rem = 15%8 - 2 = 7 - 2 = 5, returns 15 + 8 - 5 = 18
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt
testResponseCaching(TransferKind.END_OF_STREAM) } /** * Skipping bytes in the input stream caused ResponseCache corruption. * http://code.google.com/p/android/issues/detail?id=8175 */ private fun testResponseCaching(transferKind: TransferKind) { val mockResponse = MockResponse .Builder() .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 113.6K bytes - Viewed (0)