Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for aa (0.14 sec)

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

        val sourceHeaders =
          Headers.Builder()
            .add("A", "aa")
            .add("a", "aa")
            .add("B", "bb")
            .build()
        val headers =
          Headers.Builder()
            .add("A", "a")
            .addAll(sourceHeaders)
            .add("C", "c")
            .build()
        assertThat(headers.toString()).isEqualTo("A: a\nA: aa\na: aa\nB: bb\nC: c\n")
      }
    
      @Test fun nameIndexesAreStrict() {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.6K 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)
  3. 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)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

      @Test
      fun partialRangeResponsesDoNotCorruptCache() {
        // 1. Request a range.
        // 2. Request a full document, expecting a cache miss.
        server.enqueue(
          MockResponse.Builder()
            .body("AA")
            .code(HttpURLConnection.HTTP_PARTIAL)
            .addHeader("Expires: " + formatDate(1, TimeUnit.HOURS))
            .addHeader("Content-Range: bytes 1000-1001/2000")
            .build(),
        )
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  5. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1029..102A    ; valid                                  # 3.0  MYANMAR LETTER O..MYANMAR LETTER AU
    102B          ; valid                                  # 5.1  MYANMAR VOWEL SIGN TALL AA
    102C..1032    ; valid                                  # 3.0  MYANMAR VOWEL SIGN AA..MYANMAR VOWEL SIGN AI
    1033..1035    ; valid                                  # 5.1  MYANMAR VOWEL SIGN MON II..MYANMAR VOWEL SIGN E ABOVE
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // counties
    aa.no
    ah.no
    bu.no
    fm.no
    hl.no
    hm.no
    jan-mayen.no
    mr.no
    nl.no
    nt.no
    of.no
    ol.no
    oslo.no
    rl.no
    sf.no
    st.no
    svalbard.no
    tm.no
    tr.no
    va.no
    vf.no
    // primary and lower secondary schools per county
    gs.aa.no
    gs.ah.no
    gs.bu.no
    gs.fm.no
    gs.hl.no
    gs.hm.no
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top