Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 160 for job1 (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java

        public Integer crudMode;
    
        /**
         * The name of the scheduled job.
         */
        @Required
        @Size(max = 100)
        public String name;
    
        /**
         * The target class for the scheduled job.
         */
        @Required
        @Size(max = 100)
        public String target;
    
        /**
         * The cron expression defining when the job should run.
         */
        @Size(max = 100)
        @CronExpression
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java

            assertNotNull(exception);
            assertEquals("Job[name=\"Test & Job\", id='<123>']", exception.getMessage());
        }
    
        public void test_constructorWithString_specialCharacters() {
            // Test with message containing special characters
            String message = "Job not found: \"My Job\" with params: {id=123, type='test'}";
    
            JobNotFoundException exception = new JobNotFoundException(message);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            super.tearDown();
        }
    
        public void test_constructor() {
            // Test that constructor creates instance without error
            PurgeDocJob job = new PurgeDocJob();
            assertNotNull(job);
        }
    
        public void test_execute_success() {
            // Execute the job
            String result = purgeDocJob.execute();
    
            // Assert deleteByQuery was called
            assertTrue(deleteByQueryCalled);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/failing-test.yaml

    name: Failing Test
    description: Report continuously failing tests or jobs in Kubernetes CI
    labels: kind/failing-test
    body:
      - type: textarea
        id: jobs
        attributes:
          label: Which jobs are failing?
          placeholder: |
            Please only use this template for submitting reports about continuously failing tests or jobs in Kubernetes CI.
        validations:
          required: true
    
      - type: textarea
        id: tests
        attributes:
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

            super.setUp();
            aggregateLogJob = new AggregateLogJob();
        }
    
        public void test_constructor() {
            // Test default constructor
            AggregateLogJob job = new AggregateLogJob();
            assertNotNull(job);
        }
    
        public void test_execute_success() {
            // Setup mock SearchLogHelper that succeeds
            SearchLogHelper mockSearchLogHelper = new SearchLogHelper() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

        public int crudMode;
    
        /**
         * The unique identifier of the job log entry being edited.
         * This is a required field for identifying which job log to update.
         */
        @Required
        @ValidateTypeFailure
        public String id;
    
        /**
         * The name of the job that was executed.
         * This is a required field identifying the specific job type.
         */
        @Required
        public String jobName;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

            @Override
            public org.lastaflute.job.subsidiary.RegisteredJob register(String cronExp, Class<? extends org.lastaflute.job.LaJob> jobType,
                    org.lastaflute.job.subsidiary.JobConcurrentExec concurrentExec, org.lastaflute.job.subsidiary.InitialCronOpCall opLambda) {
                return null;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJob.java

            ComponentUtil.getJobManager().findJobByUniqueOf(LaJobUnique.of(getId())).ifPresent(job -> {
                job.launchNow();
            }).orElse(() -> {
                throw new JobNotFoundException(this);
            });
        }
    
        public void stop() {
            ComponentUtil.getJobManager().findJobByUniqueOf(LaJobUnique.of(getId())).ifPresent(job -> {
                job.stopNow();
            }).orElse(() -> {
                throw new JobNotFoundException(this);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java

         */
        public String scriptType;
    
        /**
         * Whether the scheduled job is a crawler job.
         */
        public String crawler;
    
        /**
         * Whether logging is enabled for the scheduled job.
         */
        public String jobLogging;
    
        /**
         * Whether the scheduled job is available.
         */
        public String available;
    
        /**
         * Sort order of the scheduled job.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/PurgeDocJob.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Job for purging expired documents from the search index.
     * This job removes documents that have passed their expiration time based on the expires field.
     * It helps maintain the search index by cleaning up outdated content automatically.
     */
    public class PurgeDocJob {
    
        /** Logger instance for this class */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top