- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for isProcessRunning (0.13 seconds)
-
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) -
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) -
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();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 02:14:37 GMT 2026 - 16.4K bytes - Click Count (0) -
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)