- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 42 for exploration (0.08 sec)
-
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) -
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) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
return e.getMessage(); } } /** * Gets the expiration time for thumbnails. * * @return the expiration time in milliseconds */ public long getExpiry() { return expiry; } /** * Sets the expiration time for thumbnails. * * @param expiry the expiration time in milliseconds (must be positive)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
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) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
import jakarta.validation.constraints.Size; /** * Form class for creating access tokens in the admin interface. * This form handles the creation of API access tokens with configurable permissions and expiration dates. */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { // Default constructor } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
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) -
android/guava/src/com/google/common/base/PatternCompiler.java
*/ @GwtIncompatible interface PatternCompiler { /** * Compiles the given pattern. * * @throws IllegalArgumentException if the pattern is invalid */ @RestrictedApi( explanation = "PatternCompiler is an implementation detail of com.google.common.base", allowedOnPath = ".*/com/google/common/base/.*") CommonPattern compile(String pattern); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.7K bytes - Viewed (0) -
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) -
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) -
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)