- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for runAll (0.37 sec)
-
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
} // Test getExecuteType method public void test_getExecuteType() { assertEquals(Constants.EXECUTE_TYPE_CRAWLER, crawlJob.getExecuteType()); } // Test execute method with runAll scenario public void test_execute_runAll() { // Setup test crawlJob = new CrawlJob() { @Override protected int getRunningJobCount() { return 0;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
final List<String> dataConfigIdList = options.getDataConfigIdList(); final boolean runAll = webConfigIdList == null && fileConfigIdList == null && dataConfigIdList == null; Thread webFsCrawlerThread = null; Thread dataCrawlerThread = null; if (runAll || webConfigIdList != null || fileConfigIdList != null) { webFsCrawlerThread = new Thread((Runnable) () -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0)