Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setCrawlerWaitMillis (0.08 sec)

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

            // Test default wait time
            assertEquals(10000, helper.crawlerWaitMillis);
    
            // Test setting new wait time
            helper.setCrawlerWaitMillis(5000);
            assertEquals(5000, helper.crawlerWaitMillis);
    
            helper.setCrawlerWaitMillis(0);
            assertEquals(0, helper.crawlerWaitMillis);
        }
    
        public void test_parseTime_validFormat() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

        }
    
        /**
         * Sets the wait time in milliseconds when the crawler is not running.
         *
         * @param crawlerWaitMillis the wait time in milliseconds
         */
        public void setCrawlerWaitMillis(final long crawlerWaitMillis) {
            this.crawlerWaitMillis = crawlerWaitMillis;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top