Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getJobRuntime (0.07 seconds)

  1. 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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  2. 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();
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  3. 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)
  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
        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