- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for maintenance (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
/** * Admin action for maintenance operations including reindexing, log management, * and system diagnostics. */ public class AdminMaintenanceAction extends FessAdminAction { /** * Default constructor for AdminMaintenanceAction. */ public AdminMaintenanceAction() { super(); } /** * Role identifier for admin maintenance operations. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.maintenance; import org.codelibs.fess.util.ComponentUtil; import jakarta.validation.constraints.Size; /** * The form for maintenance actions. */ public class ActionForm { /** * Default constructor. */ public ActionForm() { // nothing }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* operations. * * <p>Certain cache configurations will result in the accrual of periodic maintenance tasks which * will be performed during write operations, or during occasional read operations in the absence of * writes. The {@link Cache#cleanUp} method of the returned cache will also perform maintenance, but * calling it should not be necessary with a high throughput cache. Only caches built with {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserInfoService.java
*/ public UserInfoService() { // Default constructor } /** * Deletes user information records older than the specified number of days. * This method is used for data cleanup and maintenance operations. * * @param days the number of days to keep user information records */ public void deleteBefore(final int days) { userInfoBhv.queryDelete(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java
* This form extends CreateForm to include fields necessary for updating existing scheduler entries, * including tracking information for optimistic locking. * Schedulers define automated jobs such as crawling and system maintenance tasks. * */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() { super(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java
/** * API action for admin job log management. * Provides RESTful API endpoints for viewing and managing job execution logs in the Fess search engine. * Job logs contain information about crawling jobs, indexing tasks, and system maintenance operations. * */ public class ApiAdminJoblogAction extends FessApiAdminAction { private static final Logger logger = LogManager.getLogger(ApiAdminJoblogAction.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
HtmlNext path_AdminLog_AdminLogJsp = new HtmlNext("/admin/log/admin_log.jsp"); /** The path of the HTML: /admin/maintenance/admin_maintenance.jsp */ HtmlNext path_AdminMaintenance_AdminMaintenanceJsp = new HtmlNext("/admin/maintenance/admin_maintenance.jsp"); /** The path of the HTML: /admin/pathmap/admin_pathmap.jsp */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.menu_jobLog=Job Log labels.menu_searchLog=Search Log labels.menu_failure_url=Failure URL labels.menu_search_list=Search labels.menu_backup=Backup labels.menu_access_token=Access Token labels.menu_maintenance=Maintenance labels.menu_related_content=Related Content labels.menu_related_query=Related Query labels.sidebar.placeholder_search=Search... labels.menu_plugin=Plugin labels.menu_storage=Storage labels.sidebar.menu=Menu
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java
import org.codelibs.fess.app.web.admin.keymatch.AdminKeymatchAction; import org.codelibs.fess.app.web.admin.labeltype.AdminLabeltypeAction; import org.codelibs.fess.app.web.admin.log.AdminLogAction; import org.codelibs.fess.app.web.admin.maintenance.AdminMaintenanceAction; import org.codelibs.fess.app.web.admin.pathmap.AdminPathmapAction; import org.codelibs.fess.app.web.admin.plugin.AdminPluginAction;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnectionPool.kt
} } if (connections.isEmpty()) cleanupQueue.cancelAll() for (policy in addressStates.values) { policy.scheduleOpener() } } /** * Performs maintenance on this pool, evicting the connection that has been idle the longest if * either it has exceeded the keep alive limit or the idle connections limit. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jun 03 17:10:08 UTC 2025 - 16.1K bytes - Viewed (0)