- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for minFresh (0.04 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt
this.maxStaleSeconds = maxStaleSeconds.commonClampToInt() } fun minFresh(minFresh: Duration) = apply { val minFreshSeconds = minFresh.inWholeSeconds require(minFreshSeconds >= 0) { "minFresh < 0: $minFreshSeconds" } this.minFreshSeconds = minFreshSeconds.commonClampToInt() } /**
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 10K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt
builder = builder.noCache() builder = builder.noStore() builder = builder.maxAge(0, TimeUnit.MILLISECONDS) builder = builder.maxStale(0, TimeUnit.MILLISECONDS) builder = builder.minFresh(0, TimeUnit.MILLISECONDS) builder = builder.onlyIfCached() builder = builder.noTransform() builder = builder.immutable() val cacheControl: CacheControl = builder.build() } @Test
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 46.5K bytes - Viewed (0)