Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 35 (0.13 sec)

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

            "Parsing: <http://f:999999/c> against <http://example.org/foo/bar>",
            "Parsing: <http://192.0x00A80001> against <about:blank>",
            "Parsing: <http://%30%78%63%30%2e%30%32%35%30.01> against <http://other.com/>",
            "Parsing: <http://192.168.0.257> against <http://other.com/>",
            "Parsing: <http://0Xc0.0250.01> against <http://other.com/>",
          )
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    # No special handling for IPv4 or IPv4-like URLs
    http://%30%78%63%30%2e%30%32%35%30.01  s:http p:/ h:192.168.0.1
    http://%30%78%63%30%2e%30%32%35%30.01%2e  s:http p:/ h:0xc0.0250.01.
    http://192.168.0.257
    
    # Invalid escaping should trigger the regular host error handling.
    http://%3g%78%63%30%2e%30%32%35%30%2E.01
    
    # Something that isn't exactly an IP should get treated as a host and
    # spaces escaped.
    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)
  3. okhttp/src/test/java/okhttp3/FormBodyTest.kt

        // Browsers use '+' for space.
        assertThat(formEncode(32)).isEqualTo("+")
        assertThat(formEncode(33)).isEqualTo("%21")
        assertThat(formEncode(34)).isEqualTo("%22")
        assertThat(formEncode(35)).isEqualTo("%23")
        assertThat(formEncode(36)).isEqualTo("%24")
        assertThat(formEncode(37)).isEqualTo("%25")
        assertThat(formEncode(38)).isEqualTo("%26")
        assertThat(formEncode(39)).isEqualTo("%27")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 7.8K bytes
    - Viewed (0)
Back to top