- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 157 for sale (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java
// Test hashCode consistency int metadataHashCode = SsoResponseType.METADATA.hashCode(); int logoutHashCode = SsoResponseType.LOGOUT.hashCode(); // Hash code should be consistent for the same object assertEquals(metadataHashCode, SsoResponseType.METADATA.hashCode()); assertEquals(logoutHashCode, SsoResponseType.LOGOUT.hashCode());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.3K bytes - Click Count (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt
fun scriptsCacheDirsUnder(cacheDir: File) = scriptCacheDirNames .map { File(cacheDir, it) } .filter { it.isDirectory } /** * Clean up cache files for older versions that aren't multi-process safe. */ fun FileSystemOperations.removeDodgyCacheFiles(dir: Directory) { if (dir.asFile.isDirectory) { for (cacheDir in dir.asFile.listFiles()) { if (!cacheDir.name.matches(dirVersionPattern)) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 28 08:29:28 GMT 2024 - 4.4K bytes - Click Count (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/CachesCleaner.kt
fileSystemOperations.delete { delete(workerDir.dir("wrapper/dists/dist")) } // Remove caches that weren't multi-process safe and may be corrupt fileSystemOperations.removeDodgyCacheFiles(workerDir.dir("caches")) // Remove old daemon log files fileSystemOperations.removeDaemonLogFiles(workerDir.dir("daemon")) }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 28 08:29:28 GMT 2024 - 4.2K 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)