Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Moreau (0.28 sec)

  1. okhttp/src/test/java/okhttp3/internal/idn/PunycodeTest.kt

        )
    
        // (G) Japanese (kanji and hiragana)
        testEncodeDecode(
          unicode = "なぜみんな日本語を話してくれないのか",
          punycode = "xn--n8jok5ay5dzabd5bym9f0cm5685rrjetr6pdxa",
        )
    
        // (H) Korean (Hangul syllables)
        testEncodeDecode(
          unicode = "세계의모든사람들이한국어를이해한다면얼마나좋을까",
          punycode = "xn--989aomsvi5e83db1d2a355cv1e0vak1dwrv93d5xbh15a0dt30a5jpsd879ccm6fea98c",
        )
    
        // (I) Russian (Cyrillic)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  2. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

          source: Buffer,
          byteCount: Long,
        ) {
          val toRead = minOf(remainingByteCount, byteCount)
          if (toRead > 0L) {
            source.read(buffer, toRead)
          }
          val toSkip = byteCount - toRead
          if (toSkip > 0L) {
            source.skip(toSkip)
          }
          remainingByteCount -= toRead
          receivedByteCount += byteCount
        }
    
        @Throws(IOException::class)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Mar 31 17:16:15 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  3. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    327C          ; mapped                 ; CC38 ACE0     # 4.0  CIRCLED KOREAN CHARACTER CHAMKO
    327D          ; mapped                 ; C8FC C758     # 4.0  CIRCLED KOREAN CHARACTER JUEUI
    327E          ; mapped                 ; C6B0          # 4.1  CIRCLED HANGUL IEUNG U
    327F          ; valid                  ;      ; NV8    # 1.1  KOREAN STANDARD SYMBOL
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    عراق
    
    // xn--mgbayh7gpa ("al-Ordon", Arabic) : JO
    // National Information Technology Center (NITC)
    // Royal Scientific Society, Al-Jubeiha
    الاردن
    
    // xn--3e0b707e ("Republic of Korea", Hangul) : KR
    한국
    
    // xn--80ao21a ("Kaz", Kazakh) : KZ
    қаз
    
    // xn--q7ce6a ("Lao", Lao) : LA
    ລາວ
    
    // xn--fzc2c9e2c ("Lanka", Sinhalese-Sinhala) : LK
    // https://nic.lk
    ලංකා
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top