- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 464 for Waited (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
CopyUtil.copy(in, out); asyncImport(fileName, tempFile); } catch (final IOException e) { logger.warn("Failed to create a temp file.", e); if (tempFile.exists() && !tempFile.delete()) { logger.warn("Failed to delete {}.", tempFile.getAbsolutePath()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
maven-tests/mvnw
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 12 12:05:57 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
ThemeException exception = new ThemeException("Theme operation failed", middleCause); assertNotNull(exception); assertEquals("Theme operation failed", exception.getMessage()); assertNotNull(exception.getCause()); assertEquals(middleCause, exception.getCause()); assertEquals("Processing failed", exception.getCause().getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
} } else { logger.warn("Failed to send {} to {}. HTTP Status is {}. {}", body, url, response.getHttpStatusCode(), response.getContentAsString()); } } catch (final IOException e) { logger.warn("Failed to send {} to {}.", body, url, e); } })); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
if (logger.isDebugEnabled()) { logger.debug("Failed to process a scroll request.", e); } writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, e); } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Failed to process a scroll request.", e); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java
// Test exception chaining Throwable rootCause = new IllegalArgumentException("Invalid argument"); Throwable intermediateCause = new RuntimeException("Processing failed", rootCause); String message = "Plugin operation failed"; PluginException exception = new PluginException(message, intermediateCause); assertNotNull(exception); assertEquals(message, exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/resources/fess_message.properties
errors.failed_to_upload_protwords_file = Failed to upload a protwords file. errors.failed_to_download_stopwords_file = Failed to download a stopwords file. errors.failed_to_upload_stopwords_file = Failed to upload a stopwords file. errors.failed_to_download_elevate_file = Failed to download an elevate word file. errors.failed_to_upload_elevate_file = Failed to upload an elevate word file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
errors.failed_to_upload_protwords_file = Failed to upload a protwords file. errors.failed_to_download_stopwords_file = Failed to download a stopwords file. errors.failed_to_upload_stopwords_file = Failed to upload a stopwords file. errors.failed_to_download_elevate_file = Failed to download an elevate word file. errors.failed_to_upload_elevate_file = Failed to upload an elevate word file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
String message = "LDAP operation failed"; LdapOperationException exception = new LdapOperationException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withMessageAndCause() { // Test constructor with message and cause String message = "LDAP operation failed with error";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
} } return Result.FAILED; } /** * Enumeration representing the possible results of thumbnail image processing. */ protected enum Result { /** Thumbnail was successfully generated */ OK, /** Thumbnail generation failed due to processing errors */ FAILED, /** Image dimensions do not meet validation requirements */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0)