Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getJobRuntime (0.18 sec)

  1. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

            jobHelper.setMonitorInterval(1800);
            assertEquals(1800, jobHelper.monitorInterval);
        }
    
        public void test_getJobRuntime_null() {
            assertNull(jobHelper.getJobRuntime());
        }
    
        public void test_monitorTarget_expired_withoutEndTime() {
            JobLog jobLog = new JobLog();
            jobLog.setId("test-log-1");
            jobLog.setJobName("Test Job");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

                final Properties prop = new Properties();
                prop.putAll(ComponentUtil.getSystemProperties());
                final LaJobRuntime jobRuntime = ComponentUtil.getJobHelper().getJobRuntime();
                if (jobRuntime != null) {
                    final ScheduledJob job = (ScheduledJob) jobRuntime.getParameterMap().get(Constants.SCHEDULED_JOB);
                    if (job != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/JobHelper.java

            jobRuntimeLocal.set(runtime);
        }
    
        /**
         * Gets the job runtime for the current thread.
         *
         * @return the job runtime for the current thread
         */
        public LaJobRuntime getJobRuntime() {
            return jobRuntimeLocal.get();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/ExecJobTest.java

                    return 0;
                }
            }, "processHelper");
    
            ComponentUtil.register(new JobHelper() {
                @Override
                public LaJobRuntime getJobRuntime() {
                    return null;
                }
            }, "jobHelper");
        }
    
        @Override
        public void tearDown() throws Exception {
            FileUtils.deleteQuietly(tempDir);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top