Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for exploration (0.18 sec)

  1. src/main/resources/fess_label_fr.properties

    labels.crawling_info_CrawlerEndTime=Heure de fin du robot d'exploration
    labels.crawling_info_CrawlerExecTime=Temps d'exécution du robot d'exploration
    labels.crawling_info_CrawlerStatus=Statut du robot d'exploration
    labels.crawling_info_WebFsCrawlExecTime=Temps d'exécution de l'exploration (Web/Fichier)
    labels.crawling_info_WebFsCrawlStartTime=Heure de début de l'exploration (Web/Fichier)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

        /**
         * Calculates the document expiration date based on crawling configuration.
         * If the config has a timeToLive value, calculates expiration from current time.
         * Otherwise, returns the stored document expiration time.
         *
         * @param config the crawling configuration containing time-to-live settings
         * @return the document expiration date, or null if no expiration is set
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_fr.properties

    success.crawling_info_delete_all = Données de session supprimées.
    success.start_crawl_process = Démarrage d'un processus d'exploration.
    success.upload_design_file = {0} mis à jour.
    success.update_design_jsp_file = {0} mis à jour.
    success.create_crawling_config_at_wizard = Création d'une configuration d'exploration {0}.
    success.failure_url_delete_all = URL d'échec supprimées.
    success.delete_file = Fichier {0} supprimé.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Suppliers.java

       * value after the specified time has passed. Subsequent calls to {@code get()} return the cached
       * value if the expiration time has not passed. After the expiration time, a new value is
       * retrieved, cached, and returned. See: <a
       * href="http://en.wikipedia.org/wiki/Memoization">memoization</a>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Suppliers.java

       * value after the specified time has passed. Subsequent calls to {@code get()} return the cached
       * value if the expiration time has not passed. After the expiration time, a new value is
       * retrieved, cached, and returned. See: <a
       * href="http://en.wikipedia.org/wiki/Memoization">memoization</a>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

            private final long expiration;
    
            /**
             * Constructs StateData with nonce and expiration.
             * @param nonce The nonce value.
             * @param expiration The expiration timestamp.
             */
            public StateData(final String nonce, final long expiration) {
                this.nonce = nonce;
                this.expiration = expiration;
            }
    
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt

        /** The last modified date of the cached response, if known. */
        private var lastModified: Date? = null
        private var lastModifiedString: String? = null
    
        /**
         * The expiration date of the cached response, if known. If both this field and the max age are
         * set, the max age is preferred.
         */
        private var expires: Date? = null
    
        /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 12K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

         */
        public void setMaxCacheSize(final long maxCacheSize) {
            this.maxCacheSize = maxCacheSize;
        }
    
        /**
         * Sets the cache expiration time after write in milliseconds.
         *
         * @param cacheExpireAfterWrite the expiration time in milliseconds
         */
        public void setCacheExpireAfterWrite(final long cacheExpireAfterWrite) {
            this.cacheExpireAfterWrite = cacheExpireAfterWrite;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/CrawlJob.java

            this.namespace = namespace;
            return this;
        }
    
        /**
         * Sets the document expiration period in days.
         * Controls how long crawled documents remain in the search index.
         *
         * @param documentExpires the expiration period: -2 (system default), -1 (never expire),
         *                       0 or positive (expire after specified days)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                public void store(CrawlingInfo entity) {
                    assertEquals("Test Crawl", entity.getName());
                    // Don't check exact expiration time, just verify it's reasonable
                    assertNotNull(entity.getExpiredTime());
                    assertTrue("Expiration time should be in the future", entity.getExpiredTime().longValue() > currentTime);
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
Back to top