- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 158 for job1 (0.03 seconds)
-
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 start(final Map<String, Object> params) { ComponentUtil.getJobManager().findJobByUniqueOf(LaJobUnique.of(getId())).ifPresent(job -> { if (params != null && !params.isEmpty()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 3.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java
aggregateLogJob = new AggregateLogJob(); } @Test public void test_constructor() { // Test default constructor AggregateLogJob job = new AggregateLogJob(); assertNotNull(job); } @Test public void test_execute_success() { // Setup mock SearchLogHelper that succeeds SearchLogHelper mockSearchLogHelper = new SearchLogHelper() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/job/AllJobSchedulerTest.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.job; import org.codelibs.fess.unit.UnitFessTestCase; import org.lastaflute.job.LaJob; import org.lastaflute.job.LaJobScheduler; public class AllJobSchedulerTest extends UnitFessTestCase { public void test_AllJobScheduler_implementsLaJobScheduler() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 1.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
import org.codelibs.fess.app.service.UserInfoService; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.util.ComponentUtil; /** * Job for purging old log entries from the system. * This job removes old crawling sessions, search logs, job logs, and user info logs * based on configured retention periods. It helps maintain system performance by * preventing log tables from growing too large. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.6K bytes - Click Count (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.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.8K bytes - Click Count (0) -
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 */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/JobLogTests.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:29:45 GMT 2025 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
} /** * Starts a scheduled job by ID. * When job logging is enabled, a pre-generated job log ID is returned in the response * as {@code jobLogId}. When job logging is disabled, {@code jobLogId} is {@code null}. * * @param id the ID of the scheduled job to start * @return JSON response with {@code jobLogId} (nullable) and status */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 10.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java
// But we can verify the job still executes properly String result = updateLabelJob.execute(); assertNotNull(result); assertTrue(result.contains("documents")); } // Test constructor @Test public void test_constructor() { UpdateLabelJob job = new UpdateLabelJob(); assertNotNull(job); assertNull(job.queryBuilder); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
try { String source = "unknown"; String user = "system"; final ScheduledJob job = getCurrentScheduledJob(); if (job != null) { source = "scheduler:" + job.getName(); if (job.getCreatedBy() != null) { user = job.getCreatedBy(); } } else { try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 11.9K bytes - Click Count (0)