Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for UPDATE (0.13 sec)

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

          abortQuietly(editor)
          return null
        }
      }
    
      @Throws(IOException::class)
      internal fun remove(request: Request) {
        cache.remove(key(request.url))
      }
    
      internal fun update(
        cached: Response,
        network: Response,
      ) {
        val entry = Entry(network)
        val snapshot = (cached.body as CacheResponseBody).snapshot
        var editor: DiskLruCache.Editor? = null
        try {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 26.8K bytes
    - Viewed (0)
Back to top