Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setCrawlerPriority (0.12 sec)

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

        public void test_thread_priority_settings() {
            // Test basic priority configurations without creating threads
            dataIndexHelper.setCrawlerPriority(Thread.MIN_PRIORITY);
            dataIndexHelper.setCrawlerPriority(Thread.NORM_PRIORITY);
            dataIndexHelper.setCrawlerPriority(Thread.MAX_PRIORITY);
            assertTrue("Priority settings should be fast", true);
        }
    
        public void test_multiple_quick_operations() {
    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

            int priority = Thread.NORM_PRIORITY;
            webFsIndexHelper.setCrawlerPriority(priority);
            assertEquals(priority, webFsIndexHelper.crawlerPriority);
        }
    
        public void test_setCrawlerPriority_withMaxValue() {
            int priority = Thread.MAX_PRIORITY;
            webFsIndexHelper.setCrawlerPriority(priority);
            assertEquals(priority, webFsIndexHelper.crawlerPriority);
        }
    
    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 thread priority for crawler operations.
         *
         * @param crawlerPriority The crawler thread priority
         */
        public void setCrawlerPriority(final int crawlerPriority) {
            this.crawlerPriority = crawlerPriority;
        }
    
    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

         * This priority will be applied to all newly created crawler threads.
         *
         * @param crawlerPriority thread priority (typically Thread.MIN_PRIORITY to Thread.MAX_PRIORITY)
         */
        public void setCrawlerPriority(final int crawlerPriority) {
            this.crawlerPriority = crawlerPriority;
        }
    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