Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Aa (0.17 sec)

  1. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        cache.maxSize = 8
        taskFaker.runNextTask()
        set("a", "aa", "aa")
        set("b", "bb", "bbb")
    
        // Cause the cache trim job to fail.
        filesystem.setFaultyDelete(cacheDir / "a.0", true)
        taskFaker.runNextTask()
    
        // Confirm we still allow snapshot reads after a trim failure.
        assertValue("a", "aa", "aa")
        assertValue("b", "bb", "bbb")
    
        // Allow the test to clean up.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://${name251}a./").toString()).isEqualTo("http://${name251}a./")
        assertThat(parse("http://${name251}aa/").toString()).isEqualTo("http://${name251}aa/")
        assertInvalid("http://${name251}aa./", "Invalid URL host: \"${name251}aa.\"")
      }
    
      @Test
      fun labelIsEmpty() {
        assertInvalid("http:///", "Invalid URL host: \"\"")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 67.9K bytes
    - Viewed (0)
Back to top