- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for startCrawling (0.11 sec)
-
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: Sun Sep 21 03:50:09 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.8K 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: Sun Sep 21 03:50:09 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: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0)