- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getDelayMillisAtNoUrlInQueue (0.38 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalControllerTest.java
final DefaultIntervalController controller = new DefaultIntervalController(); assertEquals(0L, controller.getDelayMillisAfterProcessing()); assertEquals(500L, controller.getDelayMillisAtNoUrlInQueue()); assertEquals(0L, controller.getDelayMillisBeforeProcessing()); assertEquals(1000L, controller.getDelayMillisForWaitingNewUrl()); } /** * Test constructor with parameters
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 when there are no URLs in the queue. * * @return the delay time in milliseconds when no URLs are available */ public long getDelayMillisAtNoUrlInQueue() { return delayMillisAtNoUrlInQueue; } /** * Sets the delay time in milliseconds when there are no URLs in the queue. *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 when no URL is in the queue. * @return delay in milliseconds */ public long getDelayMillisAtNoUrlInQueue() { return delayMillisAtNoUrlInQueue; } /** * Sets the delay in milliseconds when no URL is in the queue. * @param delayMillisAtNoUrlInQueue 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)