Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for setCrawlerPriority (0.24 seconds)

  1. 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;
        }
    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 thread priority for crawler operations.
         *
         * @param crawlerPriority The crawler thread priority
         */
        public void setCrawlerPriority(final int crawlerPriority) {
            this.crawlerPriority = crawlerPriority;
        }
    
    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/WebFsIndexHelperTest.java

            int priority = Thread.NORM_PRIORITY;
            webFsIndexHelper.setCrawlerPriority(priority);
            assertEquals(priority, webFsIndexHelper.crawlerPriority);
        }
    
        @Test
        public void test_setCrawlerPriority_withMaxValue() {
            int priority = Thread.MAX_PRIORITY;
            webFsIndexHelper.setCrawlerPriority(priority);
            assertEquals(priority, webFsIndexHelper.crawlerPriority);
        }
    
    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)
  4. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

        @Test
        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);
        }
    
        @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)
Back to Top