Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for jobs (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

        /**
         * The behavior for scheduled jobs.
         */
        @Resource
        protected ScheduledJobBhv scheduledJobBhv;
    
        /**
         * The Fess configuration.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Gets a list of scheduled jobs based on the pager.
         * @param scheduledJobPager The pager for scheduled jobs.
         * @return A list of scheduled jobs.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/fess/app/service/JobLogService.java

            });
        }
    
        /**
         * Updates the status of expired jobs that haven't finished.
         * Jobs that have been running longer than the expired job interval
         * without an end time are marked as failed.
         */
        public void updateStatus() {
            final long expiry = ComponentUtil.getSystemHelper().getCurrentTimeAsLong() - expiredJobInterval;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  4. 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)
  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. .github/workflows/docs.yml

      pull_request:
        types: [opened, labeled, unlabeled, synchronize]
    
    permissions:
      contents: read
    
    env:
      GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
    
    jobs:
      test_docs:
        permissions:
          checks: write # for actions/upload-artifact
        runs-on: ubuntu-latest
        if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'documentation')
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 987 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing scheduled job configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing scheduler entries,
     * including tracking information for optimistic locking.
     * Schedulers define automated jobs such as crawling and system maintenance tasks.
     *
     */
    public class EditForm extends CreateForm {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  8. 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)
  9. .github/workflows/containers.yml

      pull_request:
        types: [opened, labeled, unlabeled, synchronize]
    
    permissions:
      contents: read
    
    env:
      GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
    
    jobs:
      test_containers:
        permissions:
          checks: write # for actions/upload-artifact
        runs-on: ubuntu-latest
        if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'containers')
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 872 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