Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getJobRuntime (0.04 seconds)

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

  1. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

            try {
                if (!ComponentUtil.hasComponent("jobHelper")) {
                    return null;
                }
                final LaJobRuntime runtime = ComponentUtil.getJobHelper().getJobRuntime();
                if (runtime != null) {
                    final Object job = runtime.getParameterMap().get(Constants.SCHEDULED_JOB);
                    if (job instanceof ScheduledJob) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/ExecJobTest.java

                    return 0;
                }
            }, "processHelper");
    
            ComponentUtil.register(new JobHelper() {
                @Override
                public LaJobRuntime getJobRuntime() {
                    return null;
                }
            }, "jobHelper");
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            FileUtils.deleteQuietly(tempDir);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.8K bytes
    - Click Count (0)
Back to Top