- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getDelayMillisBeforeProcessing (0.41 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalControllerTest.java
assertEquals(0L, controller.getDelayMillisAfterProcessing()); assertEquals(500L, controller.getDelayMillisAtNoUrlInQueue()); assertEquals(0L, controller.getDelayMillisBeforeProcessing()); assertEquals(1000L, controller.getDelayMillisForWaitingNewUrl()); } /** * Test constructor with parameters */ public void test_constructorWithParams() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:58:39 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java
} /** * Gets the delay time in milliseconds before processing a URL. * * @return the delay time in milliseconds before processing */ public long getDelayMillisBeforeProcessing() { return delayMillisBeforeProcessing; } /** * Sets the delay time in milliseconds before processing a URL. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Wed Nov 19 07:09:17 UTC 2025 - 5.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalController.java
} /** * Gets the delay in milliseconds before processing a URL. * @return delay in milliseconds */ public long getDelayMillisBeforeProcessing() { return delayMillisBeforeProcessing; } /** * Sets the delay in milliseconds before processing a URL. * @param delayMillisBeforeProcessing delay in milliseconds */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:58:39 UTC 2025 - 5.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/HostIntervalControllerTest.java
params.put("delayMillisBeforeProcessing", 200L); final HostIntervalController controller = new HostIntervalController(params); assertEquals(200L, controller.getDelayMillisBeforeProcessing()); } /** * Test that second access to same host is delayed */ public void test_sameHost_sequentialAccess() {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 11.4K bytes - Viewed (0)