- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 825 for Multiple (0.06 sec)
-
src/test/java/jcifs/smb1/https/HandlerTest.java
// Then assertTrue(testHandler instanceof jcifs.smb1.http.Handler); assertEquals(443, testHandler.getDefaultPort()); } @Test @DisplayName("Should handle multiple instances") void testMultipleInstances() { // When Handler handler1 = new Handler(); Handler handler2 = new Handler(); Handler handler3 = new Handler();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt
} catch (expected: IllegalArgumentException) { assertThat(expected.message).isEqualTo("string includes multiple certificates") } try { decode(pkcs8Pem + certificatePem + pkcs8Pem) fail<Any>() } catch (expected: IllegalArgumentException) { assertThat(expected.message).isEqualTo("string includes multiple private keys") } } @Test fun decodeWrongType() { try { decode(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 22.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
} @Test @DisplayName("Test multiple encodes produce same result") void testMultipleEncodesProduceSameResult() { // Setup String pipeName = "RepeatedEncode"; long timeout = 3000L; FsctlPipeWaitRequest request = new FsctlPipeWaitRequest(pipeName, timeout); // Encode multiple times byte[] buffer1 = new byte[100];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
guava/src/com/google/common/math/BigIntegerMath.java
case 2: return nums.get(start).multiply(nums.get(start + 1)); case 3: return nums.get(start).multiply(nums.get(start + 1)).multiply(nums.get(start + 2)); default: // Otherwise, split the list in half and recursively do this. int m = (end + start) >>> 1; return listProduct(nums, start, m).multiply(listProduct(nums, m, end)); } } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterables.java
* stream.collect(MoreCollectors.onlyElement())}. * * @throws NoSuchElementException if the iterable is empty * @throws IllegalArgumentException if the iterable contains multiple elements */ @ParametricNullness public static <T extends @Nullable Object> T getOnlyElement(Iterable<T> iterable) { return Iterators.getOnlyElement(iterable.iterator()); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
assertTrue("Empty maxKey should match StringUtil.EMPTY", StringUtil.EMPTY.equals(emptyKeysAnnotation.maxKey())); } // Test annotation with multiple groups and payloads public void test_annotationWithMultipleGroupsAndPayloads() { final CustomSize multiAnnotation = new CustomSize() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
assertNotNull(lastParams); assertEquals(scriptExecutor, lastParams.get("executor")); } public void test_execute_withMultipleEngines() { // Setup multiple script engines TestScriptEngine engine1 = new TestScriptEngine("engine1"); TestScriptEngine engine2 = new TestScriptEngine("engine2"); scriptEngineFactory.add("type1", engine1);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/LtrQueryRescorerTest.java
assertEquals(testWindowSize, queryRescorerBuilder.windowSize().intValue()); } public void test_evaluate_multipleCallsWithDifferentConfigs() { // Test multiple calls with different configurations Map<String, Object> params = new HashMap<>(); params.put("param", "value"); // First call with model name
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.5K bytes - Viewed (0) -
guava/src/com/google/common/hash/Fingerprint2011.java
weakHashLength32WithSeeds(bytes, offset + length - 32, length * K1, K0, w); z += shiftMix(v[1]) * K1; x = rotateRight(z + x, 39) * K1; y = rotateRight(y, 33) * K1; // Decrease length to the nearest multiple of 64, and operate on 64-byte chunks. length = (length - 1) & ~63; do { x = rotateRight(x + y + v[0] + load64(bytes, offset + 16), 37) * K1;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponseTest.java
assertEquals(0, responseLength); } @Test void testMultipleReadDataWireFormatCalls() throws SMBProtocolDecodingException { // Test multiple calls to readDataWireFormat to ensure buffer is overwritten byte[] firstData = "First data set".getBytes(); byte[] secondData = "Second data set".getBytes(); byte[] buffer1 = new byte[100];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.5K bytes - Viewed (0)