Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for isProcessRunning (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 06:54:47 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java

            super.tearDown(testInfo);
        }
    
        @Test
        public void test_isProcessRunning_empty() {
            assertFalse(processHelper.isProcessRunning());
        }
    
        @Test
        public void test_isProcessRunning_withSessionId_notExists() {
            assertFalse(processHelper.isProcessRunning("nonexistent"));
        }
    
        @Test
        public void test_getRunningSessionIdSet_empty() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 16K bytes
    - Click Count (0)
  3. 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);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 11K bytes
    - Click Count (0)
Back to Top