- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 407 for multiples (0.12 sec)
-
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) -
src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java
} // Test that the class implements InvokerAssistant interface public void test_implementsInterface() { assertTrue(invokerAssistant instanceof InvokerAssistant); } // Test multiple calls to the same method return consistent results public void test_methodConsistency() { // Test assistClientInvokeNames consistency String[] names1 = invokerAssistant.assistClientInvokeNames();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.15.md
- Multiple Kubernetes clusters can now share the same resource group - When upgrading from previous releases, issues will arise with public IPs if multiple clusters share the same resource group. To solve these problems, make the following changes to the cluster:
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 278.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
String template = "Template content"; Object result = scriptEngine.evaluate(template, null); assertEquals("Template content", result); } // Test evaluate method with multiple parameters public void test_evaluate_withMultipleParams() { String template = "${greeting} ${name}, you are ${age} years old"; Map<String, Object> paramMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java
// Test empty event type EmptySearchLogEvent emptyEvent = new EmptySearchLogEvent(); assertEquals("", emptyEvent.getEventType()); } // Test multiple implementations public void test_multipleImplementations() { // Create different implementations SearchLogEvent event1 = new TestSearchLogEvent("id1", 1L, "type1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
iterator.remove(); assertEquals(initialSize - 1, map.size()); // (We can't assert that the values collection no longer contains the // removed value, because the underlying map can have multiple mappings // to the same value.) assertInvariants(map); assertThrows(IllegalStateException.class, iterator::remove); } else { iterator.next();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 43.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
} catch (IllegalArgumentException e) { assertEquals("name or scriptEngine is null.", e.getMessage()); } } // Test add multiple engines public void test_add_multipleEngines() { TestScriptEngine engine1 = new TestScriptEngine("engine1"); TestScriptEngine engine2 = new TestScriptEngine("engine2");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
writer.flush(); } }; monitorTarget.appendException(buf, exception); assertTrue(buf.toString().contains("Special test exception")); } // Test multiple appends to the same buffer public void test_multipleAppends() { StringBuilder buf = new StringBuilder(); monitorTarget.append(buf, "key1", () -> "value1"); buf.append(",");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultiset.java
* .addCopies(Bean.RED, 8) * .addCopies(Bean.BLACK_EYED, 10) * .build(); * } * * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build * multiple multisets in series. * * @since 2.0 */ public static class Builder<E> extends ImmutableCollection.Builder<E> { final Multiset<E> contents; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0)