- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 152 for Schedule (0.07 sec)
-
src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp
<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="system"/> <jsp:param name="menuType" value="scheduler"/> </jsp:include> <div class="content-wrapper"> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-6">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ScheduledJobException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * This exception is thrown when a scheduled job fails. */ public class ScheduledJobException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructor. * @param message Exception message.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (1) -
src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_details.jsp
<c:if test="${editable}"><la:link styleClass="btn btn-success" href="/admin/scheduler/createnewjob/web_crawling/${f:u(id)}/${fe:base64(name)}"> <em class="fa fa-plus-circle"> <la:message key="labels.web_crawling_button_create_job"/>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 10.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.3.md
* Specifically the new controller watches the API server for scheduled pods. It processes each pod and ensures that any volumes that implement the volume Attacher interface are attached to the node their pod is scheduled to.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 84K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
/** * Form class for editing job log entries in the admin interface. * This form handles the editing of system job execution logs, * providing details about scheduled tasks and their execution status. */ public class EditForm { /** * Creates a new EditForm instance. */ public EditForm() { // Default constructor } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java
this.daemon = daemon; return this; } /** * Sets the priority for new threads created with this ThreadFactory. * * <p><b>Warning:</b> relying on the thread scheduler is <a * href="http://errorprone.info/bugpattern/ThreadPriorityCheck">discouraged</a>. * * <p><b>Java 21+ users:</b> use {@link Thread.Builder.OfPlatform#priority(int)} instead. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:35:26 UTC 2025 - 9K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeTraverser.java
* implements {@code SuccessorsFunction}, which has a similar API as {@link #children} or can be * the same lambda function as passed into {@link #using(Function)}. * <p>This class is scheduled to be removed in October 2019. */ // TODO(b/68134636): Remove by 2019-10 @Deprecated @Beta @GwtCompatible public abstract class TreeTraverser<T> { /** Constructor for use by subclasses. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Call.kt
* remote server accepted the request before the failure. * @throws IllegalStateException when the call has already been executed. */ @Throws(IOException::class) fun execute(): Response /** * Schedules the request to be executed at some point in the future. * * The [dispatcher][OkHttpClient.dispatcher] defines when the request will run: usually
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
checkMethodBase(requestBody).delete("/api/admin/searchlist/query"); refresh(); for (String sId : getSchedulerIds(NAME_PREFIX)) { deleteMethod("/api/admin/scheduler/setting/" + sId); } for (String fId : getFileConfigIds(NAME_PREFIX)) { deleteMethod("/api/admin/fileconfig/setting/" + fId); } deleteTestToken(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/webapp/js/admin/popper.min.js.map
(called) {\n return\n }\n called = true\n window.Promise.resolve().then(() => {\n called = false\n fn()\n })\n }\n}\n\nexport function taskDebounce(fn) {\n let scheduled = false;\n return () => {\n if (!scheduled) {\n scheduled = true;\n setTimeout(() => {\n scheduled = false;\n fn();\n }, timeoutDuration);\n }\n };\n}\n\nconst supportsMicroTasks = isBrowser && window.Promise\n\n\n/**\n* Create a debounced version of a method, that's asynchronously...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 120.9K bytes - Viewed (0)