Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isProcessRunning (1.18 sec)

  1. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

         */
        public boolean isProcessRunning() {
            return !runningProcessMap.isEmpty();
        }
    
        /**
         * Checks if the process with the given session ID is currently running.
         *
         * @param sessionId unique identifier for the process session
         * @return true if the process is running, false otherwise
         */
        public boolean isProcessRunning(final String sessionId) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 06:54:47 UTC 2025
    - 10.9K 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);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 11K bytes
    - Viewed (0)
  3. 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();
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 16.3K bytes
    - Viewed (0)
Back to top