Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_setCrawlingExecutionInterval (0.66 sec)

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

            } catch (Exception e) {
                assertTrue("Exception handling should be fast", true);
            }
        }
    
        public void test_setCrawlingExecutionInterval() {
            long interval = 100L; // Keep test intervals short
            dataIndexHelper.setCrawlingExecutionInterval(interval);
    
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

        }
    
        public void test_setMaxAccessCount_withZero() {
            webFsIndexHelper.setMaxAccessCount(0L);
            assertEquals(0L, webFsIndexHelper.maxAccessCount);
        }
    
        public void test_setCrawlingExecutionInterval() {
            long interval = 5000L;
            webFsIndexHelper.setCrawlingExecutionInterval(interval);
            assertEquals(interval, webFsIndexHelper.crawlingExecutionInterval);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 15.2K bytes
    - Viewed (0)
Back to top