Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for percentDecode (0.08 sec)

  1. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

              )
          }
    
        fun build(): HttpUrl {
          @Suppress("UNCHECKED_CAST") // percentDecode returns either List<String?> or List<String>.
          return HttpUrl(
            scheme = scheme ?: throw IllegalStateException("scheme == null"),
            username = encodedUsername.percentDecode(),
            password = encodedPassword.percentDecode(),
            host = host ?: throw IllegalStateException("host == null"),
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

      }
    
      @Test
      fun decodeEmptyPathSegments() {
        assertThat(parse("http://host/").pathSegments).containsExactly("")
      }
    
      @Test
      fun percentDecode() {
        assertThat(parse("http://host/%00").pathSegments).containsExactly("\u0000")
        assertThat(parse("http://host/a/%E2%98%83/c").pathSegments)
          .containsExactly("a", "\u2603", "c")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top