Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isProcessRunning (0.21 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse startCrawling(final StartCrawlingForm form) {
            verifyToken(this::asIndexHtml);
            if (!processHelper.isProcessRunning()) {
                final List<ScheduledJob> scheduledJobList = scheduledJobService.getCrawlerJobList();
                final JobManager jobManager = ComponentUtil.getJobManager();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

                        RenderDataUtil.register(data, "crawlingInfoParamItems", crawlingInfoService.getCrawlingInfoParamList(id));
                        RenderDataUtil.register(data, "running", processHelper.isProcessRunning(entity.getSessionId()));
                    })).orElseGet(() -> {
                        throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id), this::asListHtml);
                        return null;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
Back to top