- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 433 for processed (0.03 sec)
-
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
testData.add(createRelatedQuery("test", new String[] { "related1", "related2" }, "")); mockBhv.setTestData(testData); relatedQueryHelper.init(); // Verify that load was called and data is processed String[] results = relatedQueryHelper.getRelatedQueries("test"); assertEquals(2, results.length); assertEquals("related1", results[0]); assertEquals("related2", results[1]); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/GcFinalization.java
* method returns. * * <p>This method does not create any memory pressure as would be required to cause soft * references to be processed. * * @throws RuntimeException if timed out or interrupted while waiting * @since 12.0 */ @SuppressWarnings({"removal", "Finalize"}) // b/260137033 public static void awaitFullGc() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/EventBus.java
* complicate debugging, lead to unintentional reentrant calls, and force apps to eagerly * initialize all possible subscribers at startup time. * <li>It uses reflection in ways that break when code is processed by optimizers/minimizers like * <a href="https://developer.android.com/studio/build/shrink-code">R8 and Proguard</a>. * <li>It doesn't offer a way to wait for multiple events before taking action. For example, it
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
} return urlSet; } /** * Processes the response data from a crawled URL, including failure handling. * This method extends the base response processing to handle Fess-specific failure * URL tracking when certain HTTP status codes are encountered. * * @param urlQueue the URL queue item that was processed * @param responseData the response data from the crawl operation */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
} @Override public Map<String, Object> process(Map<String, Object> target, AccessResult<String> accessResult) { if (throwException) { throw new RuntimeException("Test ingester exception"); } target.put("ingested", "processed"); return target; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
- When the go-client reflector relists, the ResourceVersion list option is set to the reflector's latest synced resource version to ensure the reflector does not "go back in time" and reprocess events older than it has already processed. If the server responds with an HTTP 410 (Gone) status code response, the relist falls back to using `resourceVersion=""`. ([#83520](https://github.com/kubernetes/kubernetes/pull/83520), [@jpbetz](https://github.com/jpbetz))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
/** The key of the message: It may have been processed before this request. Please try again. */ public static final String ERRORS_APP_DOUBLE_SUBMIT_REQUEST = "{errors.app.double.submit.request}"; /** The key of the message: Invalid username or password. */ public static final String ERRORS_login_error = "{errors.login_error}"; /** The key of the message: SSO login process failed. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 119.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
} /** * Gets the URL link for a document with proper protocol handling. * Handles file, SMB, FTP, and HTTP protocols. * * @param document the document data map * @return the processed URL link */ public String getUrlLink(final Map<String, Object> document) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt
} @Test @Disabled fun postBodiesRetransmittedOnAuthProblems() { fail("TODO") } @Test @Disabled fun cookiesAndTrailers() { // Do cookie headers get processed too many times? fail("TODO") } @Test fun emptyRequestHeaderValueIsAllowed() { server.enqueue( MockResponse(body = "body"), ) val response =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 133.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 73.4K bytes - Viewed (0)