- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 174 for existent (0.15 seconds)
-
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
assertEquals("script for engine2", engine2.getLastScript()); } @Test public void test_execute_withInvalidScriptType() { // Try to execute with non-existent script type try { scriptExecutor.execute("nonexistent", "some script"); fail("Expected ScriptEngineException"); } catch (ScriptEngineException e) {
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/ThemeHelperTest.java
Path nonExistentDir = tempDir.resolve("non-existent"); themeHelper.closeQuietly(nonExistentDir); // Should not throw exception assertTrue(true); } @Test public void test_closeQuietly_existingDirectory() throws IOException { Path existingDir = tempDir.resolve("existing"); Files.createDirectory(existingDir);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
assertEquals(logId, jsonPath.getString("response.log.id")); logger.info("Get crawling info log by ID test completed"); } // Test GET with non-existent ID response = checkMethodBase(new HashMap<>()).get("/api/admin/crawlinginfo/log/nonexistent_id").asString(); assertEquals(1, JsonPath.from(response).getInt("response.status"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Mar 30 14:01:34 GMT 2026 - 13.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
assertEquals("12.2.0", result.getVersion()); } @Test public void test_getArtifact_notFound() { Artifact result = pluginHelper.getArtifact("non-existent", "1.0.0"); assertNull(result); } @Test public void test_getArtifact_nullInputs() { assertNull(pluginHelper.getArtifact(null, "1.0.0"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 22.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
manager.destroy(); } finally { System.clearProperty(Constants.FESS_VAR_PATH); } } // Test initialization with non-existent directory @Test public void test_init_nonExistentDirectory() { ThumbnailManager manager = new ThumbnailManager() { @Override public void init() {
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/helper/CrawlingInfoHelperTest.java
} @Test public void test_updateParams_noSession() { final String sessionId = "non-existent-session"; ComponentUtil.register(new CrawlingInfoService() { @Override public CrawlingInfo getLast(String sessionId) { return null; // No existing session } @Override public void store(CrawlingInfo entity) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 28.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
} }; try { emptyEnv.get("non.existent.property"); fail("Should throw ConfigPropertyNotFoundException"); } catch (ConfigPropertyNotFoundException e) { assertTrue(e.getMessage().contains("non.existent.property")); } try { emptyEnv.is("non.existent.boolean"); fail("Should throw ConfigPropertyNotFoundException");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
@Test public void test_propertyNotFound() { try { fessConfig.get("non.existent.property"); fail("Should throw ConfigPropertyNotFoundException"); } catch (ConfigPropertyNotFoundException e) { assertEquals("non.existent.property", e.getMessage()); } } // Test isExtensionAllowed method /*Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.6K bytes - Click Count (0) -
src/main/resources/fess_message_fr.properties
errors.app.db.already.deleted = Il a peut-être été supprimé par un autre processus. Veuillez réessayer. errors.app.db.already.updated = Il a peut-être été mis à jour par un autre processus. Veuillez réessayer. errors.app.db.already.exists = Les données existent déjà. Veuillez réessayer. errors.app.double.submit.request = Il a peut-être été traité avant cette requête. Veuillez réessayer. # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 14.1K bytes - Click Count (0) -
src/main/resources/fess_message_pt_BR.properties
errors.app.db.already.deleted = Pode ter sido excluído por outro processo. Por favor, tente novamente. errors.app.db.already.updated = Pode ter sido atualizado por outro processo. Por favor, tente novamente. errors.app.db.already.exists = Os dados já existem. Por favor, tente novamente. errors.app.double.submit.request = Esta solicitação pode já ter sido processada. Por favor, tente novamente. # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 13.7K bytes - Click Count (0)