Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for 23 (0.21 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Huffman.kt

          28, 20, 22, 20, 20, 22, 22, 22, 23, 22, 23, 23, 23, 23, 23, 24, 23, 24, 24, 22, 23, 24,
          23, 23, 23, 23, 21, 22, 23, 22, 23, 23, 24, 22, 21, 20, 22, 22, 23, 23, 21, 23, 22, 22,
          24, 21, 22, 23, 23, 21, 21, 22, 21, 23, 22, 23, 23, 20, 22, 22, 22, 23, 22, 22, 23, 26,
          26, 20, 19, 22, 23, 22, 25, 26, 26, 26, 27, 27, 26, 24, 25, 19, 21, 26, 27, 27, 26, 27,
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HttpUrlJvmTest.kt

            .host("host")
            .username("=[]:;\"~|?#@^/$%*")
            .build()
        assertThat(url.toString())
          .isEqualTo("http://%3D%5B%5D%3A%3B%22~%7C%3F%23%40%5E%2F$%25*@host/")
        assertThat(url.toUri().toString())
          .isEqualTo("http://%3D%5B%5D%3A%3B%22~%7C%3F%23%40%5E%2F$%25*@host/")
      }
    
      @Test
      fun toUriPasswordSpecialCharacters() {
        val url =
          HttpUrl.Builder()
            .scheme("http")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

            .fragment("k:\u0001@/\\?#%l")
            .build()
        assertThat(url.toString())
          .isEqualTo(
            "http://a%3A%01%40%2F%5C%3F%23%25b:c%3A%01%40%2F%5C%3F%23%25d@ef:8080/" +
              "g:%01@%2F%5C%3F%23%25h?i:%01@/\\?%23%25j#k:%01@/\\?#%25l",
          )
        assertThat(url.scheme).isEqualTo("http")
        assertThat(url.username).isEqualTo("a:\u0001@/\\?#%b")
    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)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    amazon
    
    // americanexpress : 2015-07-31 American Express Travel Related Services Company, Inc.
    americanexpress
    
    // americanfamily : 2015-07-23 AmFam, Inc.
    americanfamily
    
    // amex : 2015-07-31 American Express Travel Related Services Company, Inc.
    amex
    
    // amfam : 2015-07-23 AmFam, Inc.
    amfam
    
    // amica : 2015-05-28 Amica Mutual Insurance Company
    amica
    
    // amsterdam : 2014-07-24 Gemeente Amsterdam
    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)
  5. okhttp/src/main/kotlin/okhttp3/internal/platform/AndroidPlatform.kt

      override fun isCleartextTrafficPermitted(hostname: String): Boolean =
        when {
          Build.VERSION.SDK_INT >= 24 -> NetworkSecurityPolicy.getInstance().isCleartextTrafficPermitted(hostname)
          Build.VERSION.SDK_INT >= 23 -> NetworkSecurityPolicy.getInstance().isCleartextTrafficPermitted
          else -> true
        }
    
      override fun buildCertificateChainCleaner(trustManager: X509TrustManager): CertificateChainCleaner =
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  6. .github/workflows/build.yml

            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Enable KVM group perms
            # https://github.blog/changelog/2023-02-23-hardware-accelerated-android-virtualization-on-actions-windows-and-linux-larger-hosted-runners/
            run: |
    Others
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 01:51:50 GMT 2024
    - 17.2K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_1x.md

    OkHttp 1.x Change Log
    =====================
    
    ## Version 1.6.0
    
    _2014-05-23_
    
     * Offer bridges to make it easier to migrate from OkHttp 1.x to OkHttp 2.0.
       This adds `OkUrlFactory`, `Cache`, and `@Deprecated` annotations for APIs
       dropped in 2.0.
    
    ## Version 1.5.4
    
    _2014-04-14_
    
     * Drop ALPN support in Android. There's a concurrency bug in all
       currently-shipping versions.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 6.4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidLog.kt

        // We need to handle long logger names before they hit Log.
        // java.lang.IllegalArgumentException: Log tag "okhttp3.mockwebserver.MockWebServer" exceeds limit of 23 characters
        return knownLoggers[loggerName] ?: loggerName.take(23)
      }
    
      fun enable() {
        for ((logger, tag) in knownLoggers) {
          enableLogging(logger, tag)
        }
      }
    
      private fun enableLogging(
        logger: String,
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    \#\\  s:http h:example.org p:/foo/bar f:#\\
    \#;?  s:http h:example.org p:/foo/bar f:#;?
    ?  s:http h:example.org p:/foo/bar q:?
    /  s:http h:example.org p:/
    :23  s:http h:example.org p:/foo/:23
    /:23  s:http h:example.org p:/:23
    ::  s:http h:example.org p:/foo/::
    ::23  s:http h:example.org p:/foo/::23
    foo://  s:foo p://
    http://a:b@c:29/d  s:http u:a pass:b h:c port:29 p:/d
    http::@c:29  s:http h:example.org p:/foo/:@c:29
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  10. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

        }
    
        if (Build.VERSION.SDK_INT >= 24) {
          localhostInsecureRequest()
        }
      }
    
      @Test
      fun testHttpRequestNotBlockedOnLegacyAndroid() {
        assumeTrue(Build.VERSION.SDK_INT < 23)
    
        val request = Request.Builder().url("http://squareup.com/robots.txt").build()
    
        val response = client.newCall(request).execute()
    
        response.use {
          assertEquals(200, response.code)
        }
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 27K bytes
    - Viewed (1)
Back to top