- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 69 for minutter (1.05 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
* The cache is configured with a maximum size of 100 entries and expires after 10 minutes. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } crawlingConfigCache = CacheBuilder.newBuilder().maximumSize(100).expireAfterWrite(10, TimeUnit.MINUTES).build(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
* Cache for storing resource file modification timestamps to enable cache busting. * The cache expires after 10 minutes and has a maximum size of 1000 entries. */ private static LoadingCache<String, Long> resourceHashCache = CacheBuilder.newBuilder().maximumSize(1000).expireAfterWrite(10, TimeUnit.MINUTES).build(new CacheLoader<String, Long>() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java
.maximumSize(fessConfig.getSuggestPopularWordCacheSizeAsInteger().longValue()) .expireAfterWrite(fessConfig.getSuggestPopularWordCacheExpireAsInteger().longValue(), TimeUnit.MINUTES) .build(); } }; popularWordHelper.init(); } public void test_getCacheKey_allParameters() { String seed = "test_seed";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
helper.init(); assertNotNull(helper.userInfoCache); assertNotNull(helper.searchLogLogger); } public void test_setUserCheckInterval() { long interval = 5 * 60 * 1000L; // 5 minutes searchLogHelper.setUserCheckInterval(interval); assertEquals(interval, searchLogHelper.userCheckInterval); } public void test_setUserInfoCacheSize() { int cacheSize = 5000;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
- Reduce default NodeStatusReportFrequency to 5 minutes. With this change, periodic node status updates will be send every 5m if node status doesn't change (otherwise they are still send with 10s). Bump NodeProblemDetector version to v0.8.0 to reduce forced NodeStatus updates frequency to 5 minutes. ([#84007](https://github.com/kubernetes/kubernetes/pull/84007), [@wojtek-t](https://github.com/wojtek-t))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
if (config != null) { final Integer timeToLive = config.getTimeToLive(); if (timeToLive != null) { // timeToLive minutes final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); return new Date(now + timeToLive.longValue() * 1000 * 60); } }
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/helper/PluginHelper.java
/** * Cache for storing available artifacts by type. * The cache expires after 5 minutes and has a maximum size of 10 entries. */ protected LoadingCache<ArtifactType, Artifact[]> availableArtifacts = CacheBuilder.newBuilder() .maximumSize(10) .expireAfterWrite(5, TimeUnit.MINUTES) .build(new CacheLoader<ArtifactType, Artifact[]>() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
.github/workflows/build.yml
uses: gradle/actions/setup-gradle@v4 - name: Run native-image tests run: ./gradlew -PgraalBuild=true native-image-tests:nativeTest testandroid: runs-on: ubuntu-latest timeout-minutes: 30 strategy: fail-fast: false matrix: api-level: - 21 - 29 - 34 steps: - name: Checkout
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 07:15:58 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
popularWordHelper.clearCache(); } } /** * Sets the interval for storing search logs. * * @param searchStoreInterval The search store interval in minutes. */ public void setSearchStoreInterval(final long searchStoreInterval) { this.searchStoreInterval = searchStoreInterval; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
/** * Default constructor for SearchLogHelper. */ public SearchLogHelper() { // Default constructor } /** Interval for checking user information in milliseconds (default: 10 minutes). */ protected long userCheckInterval = 10 * 60 * 1000L; // 10 min /** Maximum size of the user information cache. */ protected int userInfoCacheSize = 10000; /** Queue for storing search logs. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0)