- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 20 for ScheduledJob (0.17 sec)
-
src/main/java/org/codelibs/fess/exception/JobNotFoundException.java
*/ package org.codelibs.fess.exception; import org.codelibs.fess.es.config.exentity.ScheduledJob; public class JobNotFoundException extends FessSystemException { private static final long serialVersionUID = 1L; public JobNotFoundException(final ScheduledJob scheduledJob) { super(scheduledJob.toString()); } public JobNotFoundException(final String message) { super(message);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exbhv/ScheduledJobBhv.java
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.lang.ThreadUtil; import org.codelibs.fess.es.config.bsbhv.BsScheduledJobBhv; import org.codelibs.fess.es.config.exentity.ScheduledJob; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalEntity; /** * @author FreeGen */ public class ScheduledJobBhv extends BsScheduledJobBhv {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
prop.putAll(ComponentUtil.getSystemProperties()); final LaJobRuntime jobRuntime = ComponentUtil.getJobHelper().getJobRuntime(); if (jobRuntime != null) { final ScheduledJob job = (ScheduledJob) jobRuntime.getParameterMap().get(Constants.SCHEDULED_JOB); if (job != null) { prop.setProperty("job.runtime.id", job.getId());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
cb.query().setCrawler_Equal(Constants.T); }, scheduledJob -> { if (fessConfig.isSchedulerTarget(scheduledJob.getTarget())) { if (scheduledJob.isRunning()) { if (logger.isDebugEnabled()) { logger.debug("{} is running.", scheduledJob.getId()); } counter.incrementAndGet();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jun 23 04:13:47 UTC 2024 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
form.available = entity.isEnabled() ? Constants.ON : null; } private static OptionalEntity<ScheduledJob> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new ScheduledJob()).map(entity -> { entity.setCreatedBy(username); entity.setCreatedTime(currentTime);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 18.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String OPTION_QUERY_OQ = "oq"; public static final String OPTION_QUERY_NQ = "nq"; // job public static final String SCHEDULED_JOB = "scheduledJob"; public static final String DEFAULT_JOB_TARGET = "all"; public static final String DEFAULT_JOB_SCRIPT_TYPE = "groovy"; public static final int EXIT_OK = 0;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
* Fix TestServiceAlloc flakes ([#37487](https://github.com/kubernetes/kubernetes/pull/37487), [@wojtek-t](https://github.com/wojtek-t)) * Change ScheduledJob POD name suffix from hash to Unix Epoch ([#36883](https://github.com/kubernetes/kubernetes/pull/36883), [@jakub-d](https://github.com/jakub-d))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.3.md
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 84K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
* The `batch/v2alpha1.ScheduledJob` was removed. Migrate to `batch/v1beta.CronJob` to continue managing time based jobs. * The `rbac/v1alpha1`, `settings/v1alpha1`, and `scheduling/v1alpha1` APIs are disabled by default.
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.5.md
If you do not, you risk allowing unauthorized users to access your federation apiserver. * You do not need to adjust this flag on Kubelet: there was no authorization for the Kubelet APIs in 1.4. * batch/v2alpha1.ScheduledJob has been renamed, use batch/v2alpha1.CronJob instead ([#36021](https://github.com/kubernetes/kubernetes/pull/36021), [@soltysh](https://github.com/soltysh)) * PetSet has been renamed to StatefulSet.
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 136.4K bytes - Viewed (0)