- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for setDelayMillisAfterProcessing (0.16 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java
} /** * Sets the delay time in milliseconds after processing a URL. * * @param delayMillisAfterProcessing the delay time in milliseconds after processing */ public void setDelayMillisAfterProcessing(final long delayMillisAfterProcessing) { this.delayMillisAfterProcessing = delayMillisAfterProcessing; } /** * Gets the delay time in milliseconds when there are no URLs in the queue.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Nov 19 07:09:17 GMT 2025 - 5.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java
controller.setDelayMillisAfterProcessing(1000L); assertEquals(1000L, controller.getDelayMillisAfterProcessing()); controller.setDelayMillisAfterProcessing(5000L); assertEquals(5000L, controller.getDelayMillisAfterProcessing()); controller.setDelayMillisAfterProcessing(0L); assertEquals(0L, controller.getDelayMillisAfterProcessing()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 6.2K bytes - Click Count (0)