Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for test_setCrawlingExecutionInterval (0.16 seconds)

  1. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

        public void test_setMaxAccessCount_withZero() {
            webFsIndexHelper.setMaxAccessCount(0L);
            assertEquals(0L, webFsIndexHelper.maxAccessCount);
        }
    
        @Test
        public void test_setCrawlingExecutionInterval() {
            long interval = 5000L;
            webFsIndexHelper.setCrawlingExecutionInterval(interval);
            assertEquals(interval, webFsIndexHelper.crawlingExecutionInterval);
        }
    
        @Test
    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)
  2. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

            } catch (Exception e) {
                assertTrue("Exception handling should be fast", true);
            }
        }
    
        @Test
        public void test_setCrawlingExecutionInterval() {
            long interval = 100L; // Keep test intervals short
            dataIndexHelper.setCrawlingExecutionInterval(interval);
    
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.9K bytes
    - Click Count (0)
Back to Top