- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for setMaxRetryCount (0.08 sec)
-
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
} public void test_setMaxRetryCount() { indexingHelper.setMaxRetryCount(10); assertEquals(10, indexingHelper.maxRetryCount); indexingHelper.setMaxRetryCount(0); assertEquals(0, indexingHelper.maxRetryCount); } public void test_setDefaultRowSize() { indexingHelper.setDefaultRowSize(50);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
public int getMaxRetryCount() { return maxRetryCount; } /** * Sets the maximum retry count. * @param maxRetryCount The maximum retry count. */ public void setMaxRetryCount(final int maxRetryCount) { this.maxRetryCount = maxRetryCount; } /** * Returns the retry interval. * @return The retry interval in milliseconds. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
}).prototype("httpClient", FaultTolerantClient.class, client -> { client.setCrawlerClient(container.getComponent("internalHttpClient")); client.setMaxRetryCount(5); client.setRetryInterval(500); }).prototype("fsClient", FileSystemClient.class).prototype("ruleManager", RuleManagerImpl.class, manager -> {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 19.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
this.retryInterval = retryInterval; } /** * Sets the maximum retry count. * * @param maxRetryCount The maximum retry count. */ public void setMaxRetryCount(final int maxRetryCount) { this.maxRetryCount = maxRetryCount; } /** * Sets the connection timeout in milliseconds. * * @param connTimeout The connection timeout.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 25.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
} /** * Sets the maximum number of retry attempts for failed operations. * * @param maxRetryCount the maximum retry count */ public void setMaxRetryCount(final int maxRetryCount) { this.maxRetryCount = maxRetryCount; } /** * Sets the default number of rows to process in a single batch. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0)