- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 381 for complex (0.04 sec)
-
futures/listenablefuture1/src/com/google/common/util/concurrent/ListenableFuture.java
* The listener will run when the {@code Future}'s computation is {@linkplain Future#isDone() * complete} or, if the computation is already complete, immediately. * * <p>There is no guaranteed ordering of execution of listeners, but any listener added through * this method is guaranteed to be called once the computation is complete. * * <p>Exceptions thrown by a listener will be propagated up to the executor. Any exception thrown
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ListenableFuture.java
* The listener will run when the {@code Future}'s computation is {@linkplain Future#isDone() * complete} or, if the computation is already complete, immediately. * * <p>There is no guaranteed ordering of execution of listeners, but any listener added through * this method is guaranteed to be called once the computation is complete. * * <p>Exceptions thrown by a listener will be propagated up to the executor. Any exception thrown
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
assertNotNull(dataStoreParams.get("camelCaseKey")); dataStoreParams.put("snake_case_key", "value2"); assertNotNull(dataStoreParams.get("snake_case_key")); } // Test with complex object values public void test_complexObjectValues() { Map<String, String> complexObject = new HashMap<>(); complexObject.put("nested", "value");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
assertEquals("custom_field", queryContext.getDefaultField()); queryContext.setDefaultField(null); assertNull(queryContext.getDefaultField()); } // Test complex scenario with multiple operations public void test_complexScenario() { getMockRequest().setAttribute(Constants.FIELD_LOGS, new HashMap<String, List<String>>());
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/query/BoostQueryCommandTest.java
assertTrue(e instanceof InvalidQueryException || e instanceof NullPointerException); } } public void test_execute_withComplexBooleanQuery() { // Test executing BoostQuery with a complex BooleanQuery containing multiple clauses BooleanQuery.Builder boolBuilder = new BooleanQuery.Builder(); boolBuilder.add(new TermQuery(new Term("title", "fess")), BooleanClause.Occur.MUST);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
// Mock implementation that doesn't require client entity.setLastUpdated(System.currentTimeMillis()); } } // Simple mock class without complex interface requirements private static class MockLaCron implements LaCron { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java
RankFusionSearcher simpleSearcher = new SimpleSearcher(); assertEquals("simple", simpleSearcher.getName()); } public void test_getName_complexCamelCaseSearcher() { // Test with complex camel case naming RankFusionSearcher complexSearcher = new VeryComplexRankFusionSearcher(); assertEquals("very_complex_rank_fusion", complexSearcher.getName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
} return newValue; } /** * Builds the complete query string from the configured parameters. * Combines base query, extra queries, field filters, and sort field into a single query string. * * @return the complete formatted query string */ public String build() { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
assertEquals(16L, MemoryUtil.sizeOf(Boolean.TRUE)); assertEquals(16L, MemoryUtil.sizeOf(Boolean.FALSE)); } public void test_sizeOf_complexNestedStructures() { // Complex nested structure Map<String, Object> complexMap = new HashMap<>(); complexMap.put("strings", Arrays.asList("test1", "test2")); complexMap.put("numbers", Arrays.asList(1, 2, 3));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
// Test with null permissions user = new TestFessUser("testuser", new String[] {}, new String[] {}, null); assertNull(user.getPermissions()); // Test with complex permission strings permissions = new String[] { "admin:*", "user:read", "document:write:123" }; user = new TestFessUser("testuser", new String[] {}, new String[] {}, permissions);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0)