Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setCrawlingExecutionInterval (1.57 sec)

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

            }
        }
    
        public void test_interval_boundary_values() {
            // Test interval boundary values quickly
            dataIndexHelper.setCrawlingExecutionInterval(0L);
            dataIndexHelper.setCrawlingExecutionInterval(1L);
            dataIndexHelper.setCrawlingExecutionInterval(Long.MAX_VALUE);
            assertTrue("Boundary value tests should be fast", true);
        }
    
        public void test_performance_optimization() {
    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

            long interval = 5000L;
            webFsIndexHelper.setCrawlingExecutionInterval(interval);
            assertEquals(interval, webFsIndexHelper.crawlingExecutionInterval);
        }
    
        public void test_setCrawlingExecutionInterval_withDefaultValue() {
            webFsIndexHelper.setCrawlingExecutionInterval(Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. 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.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  4. 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.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
Back to top