- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for startCrawling (0.21 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerThreadTest.java
} /** * Test startCrawling increments active thread count. */ public void test_startCrawling() throws Exception { assertEquals(Integer.valueOf(0), crawlerContext.getActiveThreadCount()); // Use reflection to access protected method final java.lang.reflect.Method method = CrawlerThread.class.getDeclaredMethod("startCrawling"); method.setAccessible(true);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard_start.jsp
</div> <div class="card-footer"> <button type="submit" class="btn btn-success" name="startCrawling" value="<la:message key="labels.wizard_button_start_crawling"/>"> <i class="fa fa-play-circle" aria-hidden="true"></i>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
/** * Flag indicating whether to wait on folder operations. */ protected boolean noWaitOnFolder = false; /** * Increments the active thread count. */ protected void startCrawling() { synchronized (crawlerContext.activeThreadCountLock) { crawlerContext.activeThreadCount++; } } /** * Decrements the active thread count. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
* * @param form the start crawling form * @return HTML response redirecting to the wizard index */ @Execute @Secured({ ROLE }) public HtmlResponse startCrawling(final StartCrawlingForm form) { verifyToken(this::asIndexHtml); if (!processHelper.isProcessRunning()) { final List<ScheduledJob> scheduledJobList = scheduledJobService.getCrawlerJobList();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 16.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/log/LogType.java
* Each enum constant represents a specific event or state in the crawler's execution. */ public enum LogType { /** Indicates the start of a crawling process. */ START_CRAWLING, /** Indicates the cleanup phase of crawling. */ CLEANUP_CRAWLING, /** Indicates an unsupported URL was encountered when crawling started. */ UNSUPPORTED_URL_AT_CRAWLING_STARTED,
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java
*/ @Override public void log(final LogType key, final Object... objs) { switch (key) { case START_THREAD: processStartThread(objs); break; case START_CRAWLING: processStartCrawling(objs); break; case CLEANUP_CRAWLING: processCleanupCrawling(objs); break; case UNSUPPORTED_URL_AT_CRAWLING_STARTED:Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 14K bytes - Viewed (0)