Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 278 for stor (0.3 sec)

  1. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    stjordal.no
    stjordalshalsen.no
    stjørdal.no
    stjørdalshalsen.no
    stockholm
    stokke.no
    stor-elvdal.no
    storage
    storage.yandexcloud.net
    stord.no
    stordal.no
    store
    store.bb
    store.dk
    store.nf
    store.ro
    store.st
    store.ve
    storebase.store
    storfjord.no
    storipress.app
    storj.farm
    strand.no
    stranda.no
    strapiapp.com
    streak-link.com
    streaklinks.com
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  2. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

                public void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap) {
                    // Do nothing
                }
    
                @Override
                public void stop() {
                    stopCallCount.incrementAndGet();
                }
            };
    
            // Execute stop multiple times
            dataStore.stop();
            dataStore.stop();
            dataStore.stop();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/DataStore.java

     */
    public interface DataStore {
    
        /**
         * Store the data.
         * @param config The data configuration.
         * @param callback The callback.
         * @param initParamMap The initial parameters.
         */
        void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap);
    
        /**
         * Stop the data store.
         */
        void stop();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

            } finally {
                if (task != null) {
                    try {
                        task.stop();
                    } catch (final Exception e) {
                        logger.warn("Failed to stop {}", jobLog, e);
                    }
                }
                jobLog.setEndTime(ComponentUtil.getSystemHelper().getCurrentTimeAsLong());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

            }
    
            /**
             * Stops the crawling operation gracefully.
             * If a data store is currently active, this method calls
             * its stop method to halt the crawling process.
             */
            public void stopCrawling() {
                if (dataStore != null) {
                    dataStore.stop();
                }
            }
    
            /**
             * Gets the crawling information ID for this thread.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

         *
         * @param id the ID of the scheduled job to stop
         * @return JSON response indicating success or failure
         */
        // PUT /api/admin/scheduler/{id}/stop
        @Execute(urlPattern = "{}/@word")
        public JsonResponse<ApiResult> put$stop(final String id) {
            scheduledJobService.getScheduledJob(id).ifPresent(entity -> {
                try {
                    entity.stop();
                } catch (final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

        /**
         * The flag to check if the data store is alive.
         */
        protected boolean alive = true;
    
        /**
         * Register this data store.
         */
        public void register() {
            ComponentUtil.getDataStoreFactory().add(getName(), this);
        }
    
        /**
         * Get the name of this data store.
         * @return The name of this data store.
         */
        protected abstract String getName();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_en.properties

    labels.crawling_info_DataCrawlExecTime=Crawl Execution Time (Data Store)
    labels.crawling_info_DataCrawlStartTime=Crawl Start Time (Data Store)
    labels.crawling_info_DataCrawlEndTime=Crawl End Time (Data Store)
    labels.crawling_info_DataIndexExecTime=Indexing Execution Time (Data Store)
    labels.crawling_info_DataIndexSize=Index Size (Data Store)
    labels.webauth_configuration=Web Authentication
    labels.webauth_list_hostname=Hostname
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

        }
    
        /**
         * Stops a running scheduled job.
         *
         * @param form the edit form containing the ID of the job to stop
         * @return HTML response redirecting to the list page after stopping
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse stop(final EditForm form) {
            verifyCrudMode(form.crudMode, CrudMode.DETAILS);
            final String id = form.id;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

     *         }
     *       },
     *       MoreExecutors.directExecutor());
     *
     *     Runtime.getRuntime().addShutdownHook(new Thread() {
     *       public void run() {
     *         // Give the services 5 seconds to stop to ensure that we are responsive to shutdown
     *         // requests.
     *         try {
     *           manager.stopAsync().awaitStopped(5, TimeUnit.SECONDS);
     *         } catch (TimeoutException timeout) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 33.2K bytes
    - Viewed (0)
Back to top