- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 200 for maxAge (0.04 seconds)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt
* will not be used and a network request will be made. * * @param maxAge a non-negative duration. This is stored and transmitted with [TimeUnit.SECONDS] * precision; finer precision will be lost. */ fun maxAge(maxAge: Duration) = apply { val maxAgeSeconds = maxAge.inWholeSecondsCreated: 2025-12-26 11:42 - Last Modified: 2024-12-27 13:39 - 10K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
* @return the maximum cache age in milliseconds */ public long getMaxAge() { return maxAge; } /** * Sets the maximum age for cached data * @param maxAge the maximum cache age in milliseconds */ public void setMaxAge(long maxAge) { this.maxAge = maxAge; } /** * Gets the timestamp when this cache entry was createdCreated: 2025-12-20 13:44 - Last Modified: 2025-08-23 02:21 - 11.4K bytes - Click Count (0) -
src/main/java/jcifs/util/ResourceManager.java
this.cleanupInterval = cleanupInterval; this.leakDetectionEnabled = enableLeakDetection; this.autoCleanupEnabled = enableAutoCleanup; // Restart cleanup task with new interval startCleanupTask(); log.info("ResourceManager configured: maxAge={} ms, cleanupInterval={} ms, leakDetection={}, autoCleanup={}", maxAge, cleanupInterval, enableLeakDetection, enableAutoCleanup);Created: 2025-12-20 13:44 - Last Modified: 2025-08-30 05:58 - 16.2K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheControlJvmTest.kt
.Builder() .maxAge(365 * 100, TimeUnit.DAYS) // Longer than Integer.MAX_VALUE seconds. .build() assertThat(cacheControl.maxAgeSeconds).isEqualTo(Int.MAX_VALUE) } @Test @Throws(Exception::class) fun secondsMustBeNonNegative() { val builder = CacheControl.Builder() assertFailsWith<IllegalArgumentException> { builder.maxAge(-1, TimeUnit.SECONDS) } }
Created: 2025-12-26 11:42 - Last Modified: 2025-03-19 19:25 - 7.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
} /** * Sets the maximum age of the role information in seconds. * @param maxAge The maximum age of the role information in seconds. */ public void setMaxAge(final long maxAge) { this.maxAge = maxAge; }Created: 2025-12-20 09:19 - Last Modified: 2025-11-28 16:29 - 15.1K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CookiesTest.kt
assertThat(cookie.value).isEqualTo("android") assertThat(cookie.comment).isNull() assertThat(cookie.commentURL).isNull() assertThat(cookie.discard).isFalse() assertThat(cookie.maxAge).isGreaterThan(100000000000L) assertThat(cookie.path).isEqualTo("/path") assertThat(cookie.secure).isTrue() assertThat(cookie.version).isEqualTo(0) } @Test fun testRfc2109Response() {
Created: 2025-12-26 11:42 - Last Modified: 2025-06-18 12:28 - 13K bytes - Click Count (0) -
docs/throttle/README.md
# MinIO Server Throttling Guide [](https://slack.min.io) [](https://hub.docker.com/r/minio/minio/) MinIO server allows to throttle incoming requests: - limit the number of active requests allowed across the cluster - limit the wait duration for each request in the queue
Created: 2025-12-28 19:28 - Last Modified: 2024-08-16 08:43 - 1.5K bytes - Click Count (1) -
docs/orchestration/kubernetes/README.md
# Deploy MinIO on Kubernetes [](https://slack.min.io) [](https://hub.docker.com/r/minio/minio/)
Created: 2025-12-28 19:28 - Last Modified: 2025-08-12 18:20 - 1.6K bytes - Click Count (0) -
docs/bucket/quota/README.md
# Bucket Quota Configuration Quickstart Guide [](https://slack.min.io) [](https://hub.docker.com/r/minio/minio/)  Buckets can be configured to have `Hard` quota - it disallows writes to the bucket after configured quota limit is reached.
Created: 2025-12-28 19:28 - Last Modified: 2025-08-12 18:20 - 1.1K bytes - Click Count (0) -
docs/extensions/fan-out/README.md
# Fan-Out Uploads [](https://slack.min.io) [](https://hub.docker.com/r/minio/minio/) ## Overview
Created: 2025-12-28 19:28 - Last Modified: 2023-05-25 05:51 - 1.4K bytes - Click Count (0)