Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for crawlingExecutionInterval (0.24 sec)

  1. 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)
  2. 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)
  3. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

            assertEquals(interval, webFsIndexHelper.crawlingExecutionInterval);
        }
    
        public void test_setCrawlingExecutionInterval_withDefaultValue() {
            webFsIndexHelper.setCrawlingExecutionInterval(Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL);
            assertEquals(Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL, webFsIndexHelper.crawlingExecutionInterval);
        }
    
        public void test_setIndexUpdaterPriority() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  4. 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());
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top