Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for maintenance (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                }
            }
    
            if (!unhealthy.isEmpty()) {
                log.info("Removed {} unhealthy connections from pool", unhealthy.size());
            }
    
            // Perform maintenance tasks
            performMaintenanceTasks();
        }
    
        /**
         * Remove idle connections to free up pool space
         */
        private void removeIdleConnections() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
Back to top