Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for startCrawling (1.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top