Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IntervalRule (0.37 sec)

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

        public void test_intervalRule_getDelay() {
            IntervalRule rule = new IntervalRule("10:00", "18:00", "*", 5000);
            assertEquals(5000, rule.getDelay());
    
            rule = new IntervalRule("10:00", "18:00", "*", 0);
            assertEquals(0, rule.getDelay());
        }
    
        public void test_intervalRule_isTarget_sameDay() {
            IntervalRule rule = new IntervalRule("10:00", "18:00", "*", 1000);
    
            // Within range
    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

        }
    
        /** Wait time in milliseconds when crawler is not running */
        protected long crawlerWaitMillis = 10000;
    
        /** List of interval rules for controlling crawler timing */
        protected List<IntervalRule> ruleList = new ArrayList<>();
    
        /**
         * Checks the crawler status and waits if the crawler is not running.
         * This method blocks until the crawler is running again.
         */
    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