- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for setCrawlingExecutionInterval (0.13 seconds)
-
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* and the frequency of status checks during crawling operations. * * @param crawlingExecutionInterval interval in milliseconds */ public void setCrawlingExecutionInterval(final long crawlingExecutionInterval) { this.crawlingExecutionInterval = crawlingExecutionInterval; } /** * Sets the thread priority for crawler threads.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
} /** * Sets the interval time between crawling executions. * * @param crawlingExecutionInterval The crawling execution interval in milliseconds */ public void setCrawlingExecutionInterval(final long crawlingExecutionInterval) { this.crawlingExecutionInterval = crawlingExecutionInterval; } /** * Sets the thread priority for index updater operations. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
} @Test public void test_interval_boundary_values() { // Test interval boundary values quickly dataIndexHelper.setCrawlingExecutionInterval(0L); dataIndexHelper.setCrawlingExecutionInterval(1L); dataIndexHelper.setCrawlingExecutionInterval(Long.MAX_VALUE); assertTrue("Boundary value tests should be fast", true); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
long interval = 5000L; webFsIndexHelper.setCrawlingExecutionInterval(interval); assertEquals(interval, webFsIndexHelper.crawlingExecutionInterval); } @Test public void test_setCrawlingExecutionInterval_withDefaultValue() { webFsIndexHelper.setCrawlingExecutionInterval(Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.6K bytes - Click Count (0)