Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for IntervalRule (0.09 seconds)

  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());
        }
    
        @Test
        public void test_intervalRule_isTarget_sameDay() {
            IntervalRule rule = new IntervalRule("10:00", "18:00", "*", 1000);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (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.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 12:34:02 GMT 2025
    - 10K bytes
    - Click Count (0)
Back to Top