Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for encodedPathSegments (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

          if (isDotDot(segment)) {
            pop()
            return
          }
          if (encodedPathSegments[encodedPathSegments.size - 1].isEmpty()) {
            encodedPathSegments[encodedPathSegments.size - 1] = segment
          } else {
            encodedPathSegments.add(segment)
          }
          if (addTrailingSlash) {
            encodedPathSegments.add("")
          }
        }
    
        /**
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 63.5K bytes
    - Click Count (0)
  2. okhttp/api/android/okhttp.api

    	public final fun encodedFragment ()Ljava/lang/String;
    	public final fun encodedPassword ()Ljava/lang/String;
    	public final fun encodedPath ()Ljava/lang/String;
    	public final fun encodedPathSegments ()Ljava/util/List;
    	public final fun encodedQuery ()Ljava/lang/String;
    	public final fun encodedUsername ()Ljava/lang/String;
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun fragment ()Ljava/lang/String;
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 72.3K bytes
    - Click Count (0)
  3. okhttp/src/androidMain/baseline-prof.txt

    HSPLokhttp3/HttpUrl;->encodedPassword()Ljava/lang/String;
    HSPLokhttp3/HttpUrl;->encodedPath()Ljava/lang/String;
    HSPLokhttp3/HttpUrl;->encodedPathSegments()Ljava/util/List;
    HSPLokhttp3/HttpUrl;->encodedQuery()Ljava/lang/String;
    HSPLokhttp3/HttpUrl;->encodedUsername()Ljava/lang/String;
    HSPLokhttp3/HttpUrl;->hashCode()I
    HSPLokhttp3/HttpUrl;->redact()Ljava/lang/String;
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Dec 30 23:28:56 GMT 2024
    - 127.9K bytes
    - Click Count (1)
  4. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

            .build()
        assertThat(url.toString()).isEqualTo("http://host/a%2fb/c/d%2525e/f%25g")
        assertThat(url.encodedPath).isEqualTo("/a%2fb/c/d%2525e/f%25g")
        assertThat(url.encodedPathSegments)
          .containsExactly("a%2fb", "c", "d%2525e", "f%25g")
        assertThat(url.pathSegments).containsExactly("a/b", "c", "d%25e", "f%g")
      }
    
      @Test
      fun composeWithAddSegment() {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Aug 04 07:38:48 GMT 2025
    - 69.9K bytes
    - Click Count (0)
Back to Top