Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for crawlerPriority (0.09 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/DataIndexHelperTest.java

            try {
                Field field = DataIndexHelper.class.getDeclaredField("crawlerPriority");
                field.setAccessible(true);
                int actualPriority = (Integer) field.get(dataIndexHelper);
                assertEquals(priority, actualPriority);
            } catch (Exception e) {
                fail("Failed to verify crawlerPriority: " + 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(priority, webFsIndexHelper.crawlerPriority);
        }
    
        @Test
        public void test_setCrawlerPriority_withMaxValue() {
            int priority = Thread.MAX_PRIORITY;
            webFsIndexHelper.setCrawlerPriority(priority);
            assertEquals(priority, webFsIndexHelper.crawlerPriority);
        }
    
        @Test
        public void test_setCrawlerPriority_withMinValue() {
    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