- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 207 for sale (0.02 seconds)
-
src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java
} } /** * Test concurrent access to stop() method. * Multiple threads call stop() simultaneously - should be safe. */ @Test public void test_stop_concurrentAccess() throws Exception { final int threadCount = 10; final Thread[] threads = new Thread[threadCount];Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.8K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java
assertTrue(exception3.getCause() instanceof RuntimeException); } @Test public void test_constructorWithThrowableCause_NullError() { // Test with null Error (should work same as null Exception) String message = "SSO login error with null cause"; Error nullError = null; SsoLoginException exception = new SsoLoginException(message, nullError);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.7K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
rename { "report$projectPathName-${report.parentFile.name}-${report.name}" } } } } /** * Zip a list of files with same root directory to a zip file. * * @param destZip the target zip file * @param srcFiles the mapping of relative path to the file */ privateCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 11 11:05:07 GMT 2026 - 14.3K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java
assertTrue(exception.aborted()); } @Test public void test_aborted_multipleCallsReturnSameValue() { // Test that multiple calls to aborted() return the same value String url = "http://example.com/test"; String message = "Test message"; Exception cause = new RuntimeException("Test cause"); boolean abort = true;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 16.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
FessSystemException exception1 = new FessSystemException("Test"); FessSystemException exception2 = new FessSystemException("Test"); // Both instances should be of the same class assertEquals(exception1.getClass(), exception2.getClass()); } @Test public void test_throwAndCatch() { // Test throwing and catching the exception
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorEdgeCaseTest.java
assertNotNull(results); } } /** * Test registering same searcher multiple times. */ @Test public void test_registerSameSearcherMultipleTimes() throws Exception { try (RankFusionProcessor processor = new RankFusionProcessor()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 14.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
public OptionalEntity<WebConfig> getWebConfig(final String id) { return webConfigBhv.selectByPK(id); } /** * Gets a web configuration by its name. * If multiple configurations have the same name, returns the first one ordered by sort order. * * @param name The name of the web configuration * @return Optional containing the web configuration if found */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java
ScriptEngine retrieved = scriptEngineFactory.getScriptEngine("customName"); assertNotNull(retrieved); assertEquals(customEngine, retrieved); } // Test multiple registrations of the same engine @Test public void test_multipleRegistrations() { testScriptEngine.register(); testScriptEngine.register(); // Register again // Should still work without errors
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.9K bytes - Click Count (0) -
architecture/standards/0009-use-american-english.md
* **Harder code search and refactoring**: Searching for identifiers, method names, or documentation becomes more difficult when multiple spellings exist for the same concept * **Inconsistent API surface**: Public APIs with mixed spelling conventions appear less professional and polished
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 3.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
ProtwordsItem item = new ProtwordsItem(1, "oldValue"); item.setNewInput("newValue"); ProtwordsFile.ProtwordsUpdater updater = protwordsFile.new ProtwordsUpdater(item); // Write the same item (should update) ProtwordsItem result = updater.write(item); assertNotNull(result); assertEquals("newValue", result.getInput()); assertEquals(1, result.getId());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0)