- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for hasFailure (0.28 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/suggest/index/writer/SuggestWriterResultTest.java
assertTrue(result.hasFailure()); assertEquals(3, result.getFailures().size()); } @Test public void test_hasFailure() throws Exception { SuggestWriterResult result = new SuggestWriterResult(); assertFalse(result.hasFailure()); result.addFailure(new Exception("Test")); assertTrue(result.hasFailure()); } @TestCreated: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Thu Nov 13 00:40:54 GMT 2025 - 4.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestWriterResult.java
failures.add(t); } /** * Checks if there are any failures recorded. * * @return true if there is at least one failure, false otherwise */ public boolean hasFailure() { return !failures.isEmpty(); } /** * Returns the list of failures. * * @return a List of Throwable objects representing the failures */
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 1.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/CallServerInterceptor.kt
exchange.finishRequest() } } catch (e: IOException) { if (e is ConnectionShutdownException) { throw e // No request was sent so there's no response to read. } if (!exchange.hasFailure) { throw e // Don't attempt to read the response; we failed to send the request. } sendRequestException = e } try { if (responseBuilder == null) {
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Oct 30 13:46:58 GMT 2025 - 7.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestIndexWriter.java
} } final BulkResponse response = bulkRequestBuilder.execute().actionGet(settings.getBulkTimeout()); final SuggestWriterResult result = new SuggestWriterResult(); if (response.hasFailures()) { for (final BulkItemResponse bulkItemResponses : response.getItems()) { if (bulkItemResponses.isFailed()) {Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Thu Nov 20 08:32:33 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/score/ScoreBooster.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 6.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.3K bytes - Click Count (0)