Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for iteratorRemoveFromCache (0.42 sec)

  1. okhttp/src/test/java/okhttp3/CacheTest.kt

        // ... and nothing else.
        assertThat(i.hasNext()).isFalse()
        assertFailsWith<NoSuchElementException> {
          i.next()
        }
      }
    
      @Test
      fun iteratorRemoveFromCache() {
        // Put a response in the cache.
        server.enqueue(
          MockResponse.Builder()
            .addHeader("Cache-Control: max-age=60")
            .body("a")
            .build(),
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
Back to top