- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 407 for multiples (0.06 sec)
-
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
authenticationManager.insert(user); assertEquals(1, chain.updateCallCount); assertEquals(user, chain.lastUpdatedUser); } // Test insert with multiple chains public void test_insert_multipleChains() { User user = createTestUser("testuser"); TestAuthenticationChain chain1 = new TestAuthenticationChain();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
// It's definitely safe to multiply into numerator and denominator. numerator *= n; denominator *= i; numeratorBits += nBits; } else { // It might not be safe to multiply into numerator and denominator, // so multiply (numerator / denominator) into result.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 29 16:20:07 UTC 2025 - 46.8K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheStats.java
} /** * Returns the number of times {@link Cache} lookup methods have returned an uncached (newly * loaded) value, or null. Multiple concurrent calls to {@link Cache} lookup methods on an absent * value can result in multiple misses, all returning the results of a single cache load * operation. */ public long missCount() { return missCount; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
assertNotNull(specialProvider); assertEquals(Long.valueOf(4096L), specialConfig.getTimeAdjustTimeMillisAsLong()); } // Test memory efficiency with multiple providers public void test_memoryEfficiency() { // Create and discard multiple providers for (int i = 0; i < 100; i++) { FessTimeResourceProvider tempProvider = new FessTimeResourceProvider(mockConfig);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
assertNotNull(confPath); // Test with empty names confPath = ResourceUtil.getConfPath(); assertNotNull(confPath); // Test with multiple names confPath = ResourceUtil.getConfPath("dir1", "dir2", "file.conf"); assertNotNull(confPath); assertTrue(confPath.toString().contains("dir1"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
user = new TestFessUser("ユーザー名", new String[] {}, new String[] {}, new String[] {}); assertEquals("ユーザー名", user.getName()); } public void test_getRoleNames() { // Test with multiple roles String[] roles = { "admin", "user", "manager" }; FessUser user = new TestFessUser("testuser", roles, new String[] {}, new String[] {}); assertArrayEquals(roles, user.getRoleNames());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
} catch (final Exception e) { assertTrue("Empty command should be handled", true); } } // Test multiple commands configuration public void test_multiple_commands_configuration() throws Exception { // Test setting multiple commands without triggering execution final List<String> commands =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
docs/features/events.md
A single HTTP call may require follow-up requests to be made to handle authentication challenges, redirects, and HTTP-layer timeouts. In such cases multiple connections, requests, and responses may be attempted. Follow-ups are another reason a single call may trigger multiple events of the same type.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 7.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java
assertNotNull(retrievedByClassName); assertEquals(testScriptEngine, retrievedByClassName); } // Test register method with multiple engines public void test_register_multipleEngines() { TestScriptEngine engine1 = new TestScriptEngine("engine1"); TestScriptEngine engine2 = new TestScriptEngine("engine2"); engine1.register();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
} }; // Execute stop dataStore.stop(); assertTrue(stopCalled.get()); } public void test_stop_multipleCalls() { // Test multiple stop calls final AtomicInteger stopCallCount = new AtomicInteger(0); dataStore = new DataStore() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0)