- Sort Score
- Num 10 results
- Language All
Results 491 - 500 of 1,246 for FAILED (0.04 seconds)
-
src/main/java/org/codelibs/fess/suggest/request/Request.java
} final Deferred<T> deferred = new Deferred<>(); try { processRequest(client, deferred); } catch (final Exception e) { throw new SuggesterException("Failed to execute request: " + getClass().getSimpleName(), e); } return deferred.promise(); } /** * Processes the request. * @param client The OpenSearch client.Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Nov 23 11:21:40 GMT 2025 - 2.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
@Test public void test_execute_exceptionThrown() { thumbnailManager.setThrowException(true); thumbnailManager.setExceptionMessage("Purge failed"); String result = purgeThumbnailJob.execute(); assertTrue(result.contains("Purge failed")); } // Test execute with exception thrown (no message) @Test public void test_execute_exceptionThrownNoMessage() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.4K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Parser.java
* @return the parsed invoker request. Caller must start by checking {@link InvokerRequest#parsingFailed()} as * if there are parser errors, this request may not be fully processed and should immediately be failed. */ @Nonnull InvokerRequest parseInvocation(@Nonnull ParserRequest parserRequest);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 31 20:56:58 GMT 2025 - 1.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
webAuthenticationService.store(entity); saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); } catch (final Exception e) { logger.warn("Failed to process a request.", e); throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), this::asEditHtml); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 19.7K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/io/Smb2FlushResponseTest.java
// When int bytesRead = response.readBytesWireFormat(buffer, pos); // Then assertEquals(4, bytesRead, "Failed at position " + pos); } } @Test @DisplayName("Should handle buffer with exact required size")Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
assertEquals("newpassword", testLdapManager.changePasswordPassword); assertTrue(testLdapManager.changePasswordCalled); } @Test public void test_changePassword_failure() { // Test failed password change when LDAP admin sync is disabled testLdapManager.changePasswordResult = false; testFessConfig.ldapAdminSyncPassword = false;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.5K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java
httpEntity = response.getEntity(); consumer.accept(response, httpEntity); } catch (final Exception e) { logger.warn("Failed to authenticate with form-based authentication: scheme={}, url={}", scheme, request.getRequestUri(), e); } finally { try {
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sat Jan 31 12:23:29 GMT 2026 - 62.2K bytes - Click Count (0) -
android/guava/src/com/google/common/io/TempFileCreator.java
Paths.get(JAVA_IO_TMPDIR.value()), /* prefix= */ null, directoryPermissions.get()) .toFile(); } catch (IOException e) { throw new IllegalStateException("Failed to create directory", e); } } @Override File createTempFile(String prefix) throws IOException { return java.nio.file.Files.createTempFile(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 29 18:50:14 GMT 2025 - 11.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
} else if (e instanceof java.lang.reflect.InvocationTargetException) { // Method exists but failed to execute, which is acceptable in test environment assertTrue("Method invocation failed in test environment", true); } else { fail("Failed to test getExpiredTime method: " + (message != null ? message : e.getClass().getSimpleName())); } } }
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) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sun Nov 23 02:01:26 GMT 2025 - 26.2K bytes - Click Count (0)