Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for commonClampToInt (0.15 sec)

  1. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

            this.maxAgeSeconds = maxAgeSeconds.commonClampToInt()
          }
    
        fun maxStale(maxStale: Duration) =
          apply {
            val maxStaleSeconds = maxStale.inWholeSeconds
            require(maxStaleSeconds >= 0) { "maxStale < 0: $maxStaleSeconds" }
            this.maxStaleSeconds = maxStaleSeconds.commonClampToInt()
          }
    
        fun minFresh(minFresh: Duration) =
          apply {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top