- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for setDelayMillisBeforeProcessing (0.12 seconds)
-
src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java
} /** * Sets the delay time in milliseconds before processing a URL. * * @param delayMillisBeforeProcessing the delay time in milliseconds before processing */ public void setDelayMillisBeforeProcessing(final long delayMillisBeforeProcessing) { this.delayMillisBeforeProcessing = delayMillisBeforeProcessing; } /** * Gets the delay time in milliseconds for waiting for new URLs. *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.setDelayMillisBeforeProcessing(500L); assertEquals(500L, controller.getDelayMillisBeforeProcessing()); controller.setDelayMillisBeforeProcessing(3000L); assertEquals(3000L, controller.getDelayMillisBeforeProcessing()); controller.setDelayMillisBeforeProcessing(0L); assertEquals(0L, controller.getDelayMillisBeforeProcessing()); }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)