Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setCrawlerPriority (0.07 seconds)

  1. 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)
  2. 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