- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 18 for non_existent_ (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
@Test public void test_generate_parent_directory_not_exists() throws Exception { final File tempDir = new File(System.getProperty("java.io.tmpdir")); final File nonExistentParent = new File(tempDir, "non_existent_" + System.currentTimeMillis()); final File outputFile = new File(nonExistentParent, "output.txt"); try { assertFalse(nonExistentParent.exists());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/DocMapTest.java
assertEquals(true, docMap.get("key3")); assertTrue(docMap.containsKey("key1")); assertTrue(docMap.containsValue("value1")); assertFalse(docMap.containsKey("nonexistent")); assertFalse(docMap.containsValue("nonexistent")); } @Test public void test_put_and_get() { Map<String, Object> parentMap = new HashMap<>(); DocMap docMap = new DocMap(parentMap);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
// Try to execute with non-existent script type try { scriptExecutor.execute("nonexistent", "some script"); fail("Expected ScriptEngineException"); } catch (ScriptEngineException e) { assertTrue(e.getMessage().contains("nonexistent")); } } @Test public void test_execute_withNullScriptType() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
public void test_sendCommand_jobNotFound() { try { processHelper.sendCommand("nonexistent", "test command"); fail("Expected JobNotFoundException"); } catch (JobNotFoundException e) { assertTrue(e.getMessage().contains("Job for nonexistent is not found")); } } @Test public void test_startProcess_basicCommand() { String sessionId = "test_session";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 16K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
public void test_init_nonExistentDirectory() { ThumbnailManager manager = new ThumbnailManager() { @Override public void init() { baseDir = new File(tempDir, "nonexistent/dir"); if (baseDir.mkdirs()) { logger.info("Created: {}", baseDir.getAbsolutePath()); } if (!baseDir.isDirectory()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
Path path = ResourceUtil.getConfOrClassesPath("nonexistent.conf"); fail("Should throw ResourceNotFoundRuntimeException for non-existent file"); } catch (org.codelibs.core.exception.ResourceNotFoundRuntimeException e) { // Expected behavior - method throws exception for non-existent files assertTrue(e.getMessage().contains("nonexistent.conf")); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 11.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java
assertTrue("Field " + field + " should be found", queryFieldConfig.isSortField(field)); } // Test negative cases assertFalse(queryFieldConfig.isSortField("nonexistent")); assertFalse(queryFieldConfig.isSortField("title")); assertFalse(queryFieldConfig.isSortField("")); assertFalse(queryFieldConfig.isSortField(null)); } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
TestCorsHandler handler = new TestCorsHandler("example-handler"); corsHandlerFactory.add(origin, handler); // Execute CorsHandler result = corsHandlerFactory.get("https://nonexistent.com"); // Verify assertNull(result); } @Test public void test_add_overwriteExistingOrigin() { // Setup String origin = "https://example.com";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/OsddHelperTest.java
@Override public String getSsoType() { return "none"; } }); final OsddHelper osddHelper = new OsddHelper(); osddHelper.setOsddPath("osdd/nonexistent.xml"); osddHelper.init(); assertFalse(osddHelper.hasOpenSearchFile()); try { osddHelper.asStream(); fail("Should throw exception when osddFile is null");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
assertNull(dataStoreParams.get("key3")); } // Test get for non-existent key @Test public void test_getNonExistentKey() { assertNull(dataStoreParams.get("nonexistent")); } // Test getAsString with String value @Test public void test_getAsStringWithStringValue() { dataStoreParams.put("stringKey", "stringValue");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.9K bytes - Click Count (0)