Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for minFresh (0.03 seconds)

  1. 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()
          }
    
        /**
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 10K bytes
    - Click Count (0)
Back to Top