- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 850 for multiples (0.04 sec)
-
src/test/java/jcifs/internal/dfs/ReferralTest.java
// Decode with excess length Referral referral2 = new Referral(); decodedSize = referral2.decode(testBuffer, 0, 512); assertEquals(24, decodedSize); } // Multiple Expanded Names Tests @Test public void testSingleExpandedName() { ByteBuffer bb = ByteBuffer.wrap(testBuffer).order(ByteOrder.LITTLE_ENDIAN); bb.putShort((short) 3);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java
assertTrue(result >= 158); // (50 + 300 + 8) - 200 assertNotNull(response.getInfo()); assertTrue(response.getInfo() instanceof FileInternalInfo); } @Test @DisplayName("Test multiple calls to getInfo return same instance") void testMultipleGetInfoCalls() throws Exception { response = new Smb2QueryInfoResponse(mockConfig, (byte) 1, (byte) 2); // Use reflection to set the info field
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt
.isEqualTo(2000L) } /** If a cookie incorrectly defines multiple 'Max-Age' attributes, the last one defined wins. */ @Test fun lastMaxAgeWins() { assertThat(parseCookie(0L, url, "a=b; Max-Age=2; Max-Age=4; Max-Age=1; Max-Age=3")!!.expiresAt) .isEqualTo(3000L) } /** If a cookie incorrectly defines multiple 'Expires' attributes, the last one defined wins. */ @Test fun lastExpiresAtWins() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 24.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableBiMap.java
* this builder to sort entries by value. * * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to * build multiple bimaps in series. Each bimap is a superset of the bimaps created before it. * * @since 2.0 */ public static final class Builder<K, V> extends ImmutableMap.Builder<K, V> { /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 22.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
MockNode nodeWithClass = new MockNode("div"); nodeWithClass.addAttribute("class", "highlight"); assertTrue(tag.matches(nodeWithClass)); // Node with multiple classes including target MockNode nodeWithMultipleClasses = new MockNode("div"); nodeWithMultipleClasses.addAttribute("class", "container highlight active");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
assertFalse(searchRequestParams.hasConditionQuery()); } public void test_hasConditionQuery_withMultipleEmptyQueries() { // Test with multiple empty strings testParams.conditions.put(SearchRequestParams.AS_Q, new String[] { "", " ", null }); assertFalse(searchRequestParams.hasConditionQuery()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
* .putAll("several", 1, 2, 3) * .putAll("many", 1, 2, 3, 4, 5) * .build(); * } * * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build * multiple multimaps in series. Each multimap contains the key-value mappings in the previously * created multimaps. * * @since 2.0 */ @DoNotMock public static class Builder<K, V> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 28.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
assertEquals("test_stackTracePresent", firstElement.getMethodName()); } public void test_multipleExceptionScenarios() { // Test multiple realistic exception scenarios // Scenario 1: Command not found CommandExecutionException cmdNotFound = new CommandExecutionException("Command 'xyz' not found");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
/** * API action for admin duplicate host management. * Provides RESTful API endpoints for managing duplicate host settings in the Fess search engine. * Duplicate host settings help prevent indexing the same content from multiple similar URLs. * */ public class ApiAdminDuplicatehostAction extends FessApiAdminAction { private static final Logger logger = LogManager.getLogger(ApiAdminDuplicatehostAction.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java
assertTrue(true); } finally { // Restore original ClassLoader Thread.currentThread().setContextClassLoader(originalClassLoader); } } // Test multiple invocations of hook method public void test_hook_multipleInvocations() { FwAssistantDirector assistantDirector = createMockAssistantDirector(); // First invocation
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0)