- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 168 for jobs (0.02 sec)
-
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. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.15.md
- Added completed job status in Cron Job event. ([#75712](https://github.com/kubernetes/kubernetes/pull/75712), [@danielqsj](https://github.com/danielqsj))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 278.9K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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) -
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6.2K bytes - Viewed (0) -
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) -
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)