- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 268 for FAILURE (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
}); } /** * Retrieves a list of URLs that should be excluded from crawling based on failure counts. * URLs are excluded if they have failed more than the configured failure count threshold. * URLs can also be filtered by failure type using a regular expression pattern. * * @param configId the configuration ID to get excluded URLs for
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FileBackedOutputStreamAndroidIncompatibleTest.java
assertEquals(100, file.length()); assertTrue(file.exists()); out.close(); // Make sure that finalize deletes the file out = null; // times out and throws RuntimeException on failure GcFinalization.awaitDone( new GcFinalization.FinalizationPredicate() { @Override public boolean isDone() { return !file.exists(); } }); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 1.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RoutePlanner.kt
@Throws(IOException::class) fun plan(): Plan /** * Returns true if there's more route plans to try. * * @param failedConnection an optional connection that was resulted in a failure. If the failure * is recoverable, the connection's route may be recovered for the retry. */ fun hasNext(failedConnection: RealConnection? = null): Boolean /**
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java
public String appendQueryParameter; /** The login required setting. */ public String loginRequired; /** The ignore failure type setting. */ public String ignoreFailureType; /** The failure count threshold setting. */ public String failureCountThreshold; /** The popular word setting. */ public String popularWord;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt
val failure = context.executionException.orElseGet { null } if (uncaughtException != null) { throw failure + AssertionError("uncaught exception thrown during test", uncaughtException) } if (context.isFlaky()) { logEvents() } LogManager.getLogManager().reset() var result: Throwable? = failure
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri May 30 21:28:20 UTC 2025 - 10.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt
assertFailsWith<SSLPeerUnverifiedException> { call.execute() }.also { expected -> // Certificate pinning fails! assertThat(expected.message!!).startsWith("Certificate pinning failure!") } } @Test fun unrelatedPinnedIntermediateCertificateInChain() { // https://github.com/square/okhttp/issues/4729 platform.expectFailureOnConscryptPlatform()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 24.3K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
private static void createWebConfig() { final Map<String, Object> requestBody = new HashMap<>(); final String urls = "https://www.codelibs.org/" + "\n" + "http://failure.url"; final String includedUrls = "https://www.codelibs.org/.*" + "\n" + "http://failure.url.*"; requestBody.put("name", NAME_PREFIX + "WebConfig"); requestBody.put("urls", urls); requestBody.put("included_urls", includedUrls);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java
} // DELETE /api/admin/storage/delete/{id}/ /** * Deletes a file from storage. * @param id The ID of the file to delete. * @return A JSON response indicating the success or failure of the operation. */ @Execute public JsonResponse<ApiResult> delete$delete(final String id) { final PathInfo pi = convertToItem(id); if (StringUtil.isEmpty(pi.getName())) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/failing-test.yaml
validations: required: true - type: input id: testgrid attributes: label: Testgrid link - type: textarea id: reason attributes: label: Reason for failure (if possible) - type: textarea id: additional attributes: label: Anything else we need to know? - type: textarea id: sigs attributes: label: Relevant SIG(s)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Oct 05 16:55:38 UTC 2021 - 1.1K bytes - Viewed (0) -
mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/DeprecationBridge.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 03 13:16:34 UTC 2025 - 4.1K bytes - Viewed (0)