Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for job1 (0.01 sec)

  1. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

            assertEquals(2, count); // job1 and job3 are running
        }
    
        // Test getRunningJobCount with no running jobs
        public void test_getRunningJobCount_noRunningJobs() {
            // Skip this test - requires complex DB setup
            if (true)
                return;
            final List<ScheduledJob> scheduledJobs = new ArrayList<>();
    
            ScheduledJob job1 = new ScheduledJob() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

        }
    
        /**
         * Gets a scheduled job by its ID.
         * @param id The ID of the scheduled job.
         * @return An optional entity of the scheduled job.
         */
        public OptionalEntity<ScheduledJob> getScheduledJob(final String id) {
            return scheduledJobBhv.selectByPK(id);
        }
    
        /**
         * Deletes a scheduled job.
         * @param scheduledJob The scheduled job to delete.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

    import org.lastaflute.core.time.TimeManager;
    import org.lastaflute.job.LaCron;
    import org.lastaflute.job.LaJob;
    import org.lastaflute.job.LaJobRunner;
    import org.lastaflute.job.LaJobScheduler;
    
    import jakarta.annotation.Resource;
    
    /**
     * Job scheduler for managing all scheduled jobs in Fess.
     * Implements LaJobScheduler to handle job scheduling and execution.
     */
    public class AllJobScheduler implements LaJobScheduler {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/JobLogService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing job logs in the Fess application.
     * Provides functionality to create, read, update, and delete job log entries,
     * as well as manage job status and perform cleanup operations.
     */
    public class JobLogService {
    
        /**
         * Behavior class for job log database operations.
         */
        @Resource
        protected JobLogBhv jobLogBhv;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

        /** Service for managing scheduled jobs */
        @Resource
        private ScheduledJobService scheduledJobService;
        /** Pager for paginating scheduled job results */
        @Resource
        private SchedulerPager schedulerPager;
        /** Helper for processing scheduled jobs. */
        @Resource
        protected ProcessHelper processHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_job.xml

    	</component>
    
    	<!-- Jobs -->
    	<component name="crawlJob" class="org.codelibs.fess.job.CrawlJob" instance="prototype">
    	</component>
    	<component name="suggestJob" class="org.codelibs.fess.job.SuggestJob" instance="prototype">
    	</component>
    	<component name="aggregateLogJob" class="org.codelibs.fess.job.AggregateLogJob" instance="prototype">
    	</component>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 12 22:21:45 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java

    import org.lastaflute.web.response.JsonResponse;
    
    import jakarta.annotation.Resource;
    
    /**
     * API action for admin job log management.
     * Provides RESTful API endpoints for viewing and managing job execution logs in the Fess search engine.
     * Job logs contain information about crawling jobs, indexing tasks, and system maintenance operations.
     *
     */
    public class ApiAdminJoblogAction extends FessApiAdminAction {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/JobHelper.java

    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.job.JobManager;
    import org.lastaflute.job.LaCron;
    import org.lastaflute.job.LaJobRuntime;
    import org.lastaflute.job.LaScheduledJob;
    import org.lastaflute.job.key.LaJobUnique;
    import org.lastaflute.job.subsidiary.CronParamsSupplier;
    
    /**
     * Helper class for managing scheduled jobs within the Fess system.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/ExecJob.java

                if (jobRuntime != null) {
                    final ScheduledJob job = (ScheduledJob) jobRuntime.getParameterMap().get(Constants.SCHEDULED_JOB);
                    if (job != null) {
                        prop.setProperty("job.runtime.id", job.getId());
                        prop.setProperty("job.runtime.name", job.getName());
                    }
                }
                prop.store(out, cmdList.toString());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/PythonJob.java

            buf.append(filename.replaceAll("\\.\\.+", ""));
            return buf.toString();
        }
    
        /**
         * Returns the execution type identifier for Python jobs.
         *
         * @return the execution type constant for Python jobs
         */
        @Override
        protected String getExecuteType() {
            return Constants.EXECUTE_TYPE_PYTHON;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
Back to top