Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LaJobRuntime (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

    import org.codelibs.fess.opensearch.config.exentity.ScheduledJob;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.job.JobManager;
    import org.lastaflute.job.LaJob;
    import org.lastaflute.job.LaJobRuntime;
    import org.lastaflute.job.key.LaJobUnique;
    
    /**
     * This job executes a script.
     */
    public class ScriptExecutorJob implements LaJob {
        /**
         * Constructor.
         */
        public ScriptExecutorJob() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/JobHelper.java

         *
         * @param runtime the job runtime to set
         */
        public void setJobRuntime(final LaJobRuntime runtime) {
            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)
  3. src/main/java/org/codelibs/fess/job/ExecJob.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.opensearch.config.exentity.ScheduledJob;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.di.exception.IORuntimeException;
    import org.lastaflute.job.LaJobRuntime;
    
    /**
     * Abstract base class for executable jobs in the Fess search engine.
     * This class provides common functionality for job execution including process management,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/ExecJobTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.di.exception.IORuntimeException;
    import org.lastaflute.job.LaJobRuntime;
    
    public class ExecJobTest extends UnitFessTestCase {
    
        private TestExecJob execJob;
        private File tempDir;
        private SystemHelper originalSystemHelper;
        private ProcessHelper originalProcessHelper;
    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