- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for addErrorsNotFoundOnFileSystem (0.14 sec)
-
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
if (response.getHttpStatus().orElse(200) == 404) { logger.debug("Not found: {}", targetUrl); saveError(messages -> messages.addErrorsNotFoundOnFileSystem(GLOBAL, targetUrl)); return redirect(ErrorAction.class); } return response; } catch (final Exception e) { logger.warn("Failed to load: {}", doc, e);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
} public void test_addErrorsNotFoundOnFileSystem() { String property = "testProperty"; String arg0 = "file.txt"; FessMessages result = messages.addErrorsNotFoundOnFileSystem(property, arg0); assertNotNull(result); assertSame(messages, result); assertTrue(messages.hasMessageOf(property)); } public void test_addErrorsCouldNotOpenOnSystem() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
* @param property The property name for the message. (NotNull) * @param arg0 The parameter arg0 for message. (NotNull) * @return this. (NotNull) */ public FessMessages addErrorsNotFoundOnFileSystem(String property, String arg0) { assertPropertyNotNull(property); add(property, new UserMessage(ERRORS_not_found_on_file_system, arg0)); return this; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 119.6K bytes - Viewed (0)