- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setIndexUpdaterPriority (0.51 sec)
-
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
int priority = Thread.MAX_PRIORITY; webFsIndexHelper.setIndexUpdaterPriority(priority); assertEquals(priority, webFsIndexHelper.indexUpdaterPriority); } public void test_setIndexUpdaterPriority_withMinValue() { int priority = Thread.MIN_PRIORITY; webFsIndexHelper.setIndexUpdaterPriority(priority); assertEquals(priority, webFsIndexHelper.indexUpdaterPriority); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0) -
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. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0)