Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for crawlingExecutionInterval (0.12 seconds)

  1. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         * and the frequency of status checks during crawling operations.
         *
         * @param crawlingExecutionInterval interval in milliseconds
         */
        public void setCrawlingExecutionInterval(final long crawlingExecutionInterval) {
            this.crawlingExecutionInterval = crawlingExecutionInterval;
        }
    
        /**
         * Sets the thread priority for crawler threads.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

        }
    
        /**
         * Sets the interval time between crawling executions.
         *
         * @param crawlingExecutionInterval The crawling execution interval in milliseconds
         */
        public void setCrawlingExecutionInterval(final long crawlingExecutionInterval) {
            this.crawlingExecutionInterval = crawlingExecutionInterval;
        }
    
        /**
         * Sets the thread priority for index updater operations.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

            try {
                Field field = DataIndexHelper.class.getDeclaredField("crawlingExecutionInterval");
                field.setAccessible(true);
                long actualInterval = (Long) field.get(dataIndexHelper);
                assertEquals(interval, actualInterval);
            } catch (Exception e) {
                fail("Failed to verify crawlingExecutionInterval: " + e.getMessage());
            }
        }
    
        @Test
    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)
  4. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

            assertEquals(interval, webFsIndexHelper.crawlingExecutionInterval);
        }
    
        @Test
        public void test_setCrawlingExecutionInterval_withDefaultValue() {
            webFsIndexHelper.setCrawlingExecutionInterval(Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL);
            assertEquals(Constants.DEFAULT_CRAWLING_EXECUTION_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)
Back to Top