- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 50 for Job (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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
/** * Creates a new scheduled job from a crawler configuration. * * @param type the crawler type (web, file, or data) * @param id the crawler configuration ID * @param name the name for the new job (base64 encoded) * @return HTML response for the job creation form */ @Execute @Secured({ ROLE })Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 21.8K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.2K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
import org.codelibs.fess.util.ComponentUtil; 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.9K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java
import jakarta.annotation.Resource; /** * Admin action for Job Log. * */ public class AdminJoblogAction extends FessAdminAction { /** * Default constructor. */ public AdminJoblogAction() { super(); } /** The role name for job log administration. */ public static final String ROLE = "admin-joblog";Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/UpdateLabelJob.java
import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.util.DocumentUtil; import org.opensearch.index.query.QueryBuilder; import org.opensearch.script.Script; /** * Job class for updating label information in the search index. * This job processes documents and updates their label fields based on URL pattern matching. */ public class UpdateLabelJob {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
public HtmlResponse index() { throw new UnsupportedOperationException("index() is not supported in API. Use the admin UI instead."); } /** * Starts a scheduled job by ID. * * @param id the ID of the scheduled job to start * @return JSON response indicating success or failure */ // PUT /api/admin/scheduler/{id}/start @Execute(urlPattern = "{}/@word")
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 12:34:02 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.file_auth_scheme_samba=Samba labels.file_auth_scheme_ftp=FTP labels.pagination_page_guide_msg={0}/{1} ({2} items) labels.list_could_not_find_crud_table=Not registered. labels.scheduledjob_configuration=Job Scheduler labels.scheduledjob_title_details=Job labels.scheduledjob_name=Name labels.scheduledjob_target=Target labels.scheduledjob_status=Status labels.scheduledjob_cronExpression=Schedule labels.scheduledjob_scriptType=Execution MethodRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 44K bytes - Viewed (0)