Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 151 for cleanUp (0.05 sec)

  1. src/main/java/org/codelibs/fess/job/JobExecutor.java

         */
        public abstract Object execute(String scriptType, String script);
    
        /**
         * Initiates shutdown of the job executor.
         * This method notifies the shutdown listener to perform cleanup operations.
         */
        public void shutdown() {
            shutdownListener.onShutdown();
        }
    
        /**
         * Adds a shutdown listener to be notified when the executor is shutting down.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            } finally {
                // Ensure proper cleanup
                if (updater != null) {
                    try {
                        updater.close();
                    } catch (Exception e) {
                        // Ignore cleanup exceptions in test
                    }
                }
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

        }
    
        /**
         * Deletes all crawling sessions and their parameters except for the specified active sessions.
         * This is a cleanup operation that removes inactive session data while preserving active ones.
         *
         * @param activeSessionId a set of session IDs to preserve during the cleanup operation
         */
        public void deleteOldSessions(final Set<String> activeSessionId) {
            final List<CrawlingInfo> activeSessionList =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

         *
         * @param executorService the executor service for parallel processing
         * @param cleanup whether to run in cleanup mode
         * @return the number of tasks processed
         */
        public int generate(final ExecutorService executorService, final boolean cleanup) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final List<String> idList = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java

         * Default constructor.
         */
        public MailForm() {
            // Default constructor
        }
    
        /** The incremental crawling setting. */
        public String incrementalCrawling;
    
        /** The day for cleanup setting. */
        public String dayForCleanup;
    
        /** The crawling thread count setting. */
        public String crawlingThreadCount;
    
        /** The search log setting. */
        public String searchLog;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exec/Crawler.java

     * This class serves as the entry point for crawling web content, file systems, and data stores.
     * It manages the crawling lifecycle, including initialization, execution coordination,
     * monitoring, and cleanup operations.
     *
     * <p>The crawler can operate in different modes based on command-line options:
     * <ul>
     * <li>Web crawling - crawls web sites and web content</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.21.md

      - [Changelog since v1.21.8](#changelog-since-v1218)
      - [Changes by Kind](#changes-by-kind-4)
        - [Feature](#feature-2)
        - [Bug or Regression](#bug-or-regression-4)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
      - [Dependencies](#dependencies-5)
        - [Added](#added-5)
        - [Changed](#changed-5)
        - [Removed](#removed-5)
    - [v1.21.8](#v1218)
      - [Downloads for v1.21.8](#downloads-for-v1218)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

        - [Node Binaries](#node-binaries)
        - [Container Images](#container-images)
      - [Changelog since v1.29.14](#changelog-since-v12914)
      - [Changes by Kind](#changes-by-kind)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
      - [Dependencies](#dependencies)
        - [Added](#added)
        - [Changed](#changed)
        - [Removed](#removed)
    - [v1.29.14](#v12914)
      - [Downloads for v1.29.14](#downloads-for-v12914)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.27.md

      - [Changelog since v1.27.11](#changelog-since-v12711)
      - [Changes by Kind](#changes-by-kind-4)
        - [Feature](#feature-3)
        - [Bug or Regression](#bug-or-regression-4)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
      - [Dependencies](#dependencies-4)
        - [Added](#added-4)
        - [Changed](#changed-4)
        - [Removed](#removed-4)
    - [v1.27.11](#v12711)
      - [Downloads for v1.27.11](#downloads-for-v12711)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jul 17 07:48:22 UTC 2024
    - 466.3K bytes
    - Viewed (2)
  10. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        }
    
        /**
         * Hook method called after action execution.
         * This method delegates to the view helper's action hook for cleanup.
         *
         * @param runtime the action runtime context
         */
        @Override
        public final void godHandEpilogue(final ActionRuntime runtime) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15K bytes
    - Viewed (0)
Back to top