- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for setIndexUpdaterPriority (0.07 seconds)
-
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
} /** * Sets the thread priority for index updater operations. * * @param indexUpdaterPriority The index updater thread priority */ public void setIndexUpdaterPriority(final int indexUpdaterPriority) { this.indexUpdaterPriority = indexUpdaterPriority; } /** * Sets the thread priority for crawler operations. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
int priority = Thread.MAX_PRIORITY; webFsIndexHelper.setIndexUpdaterPriority(priority); assertEquals(priority, webFsIndexHelper.indexUpdaterPriority); } @Test public void test_setIndexUpdaterPriority_withMinValue() { int priority = Thread.MIN_PRIORITY; webFsIndexHelper.setIndexUpdaterPriority(priority); assertEquals(priority, webFsIndexHelper.indexUpdaterPriority);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)