Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for removePathSegment (0.42 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        val base = parse("http://host/a/b/c")
        val url =
          base
            .newBuilder()
            .removePathSegment(0)
            .removePathSegment(0)
            .removePathSegment(0)
            .build()
        assertThat(url.pathSegments).containsExactly("")
        assertThat(url.encodedPath).isEqualTo("/")
      }
    
      @Test
      fun removePathSegmentOutOfBounds() {
        assertFailsWith<IndexOutOfBoundsException> {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

        builder = builder.addEncodedPathSegment("")
        builder = builder.addEncodedPathSegments("")
        builder = builder.setPathSegment(0, "")
        builder = builder.setEncodedPathSegment(0, "")
        builder = builder.removePathSegment(0)
        builder = builder.encodedPath("")
        builder = builder.query("")
        builder = builder.encodedQuery("")
        builder = builder.addQueryParameter("", "")
        builder = builder.addEncodedQueryParameter("", "")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 46.5K bytes
    - Viewed (0)
  3. okhttp/api/jvm/okhttp.api

    	public final fun removeAllEncodedQueryParameters (Ljava/lang/String;)Lokhttp3/HttpUrl$Builder;
    	public final fun removeAllQueryParameters (Ljava/lang/String;)Lokhttp3/HttpUrl$Builder;
    	public final fun removePathSegment (I)Lokhttp3/HttpUrl$Builder;
    	public final fun scheme (Ljava/lang/String;)Lokhttp3/HttpUrl$Builder;
    	public final fun setEncodedPathSegment (ILjava/lang/String;)Lokhttp3/HttpUrl$Builder;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

          require(!isDot(canonicalPathSegment) && !isDotDot(canonicalPathSegment)) {
            "unexpected path segment: $encodedPathSegment"
          }
        }
    
        fun removePathSegment(index: Int) =
          apply {
            encodedPathSegments.removeAt(index)
            if (encodedPathSegments.isEmpty()) {
              encodedPathSegments.add("") // Always leave at least one '/'.
            }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  5. okhttp/api/android/okhttp.api

    	public final fun removeAllEncodedQueryParameters (Ljava/lang/String;)Lokhttp3/HttpUrl$Builder;
    	public final fun removeAllQueryParameters (Ljava/lang/String;)Lokhttp3/HttpUrl$Builder;
    	public final fun removePathSegment (I)Lokhttp3/HttpUrl$Builder;
    	public final fun scheme (Ljava/lang/String;)Lokhttp3/HttpUrl$Builder;
    	public final fun setEncodedPathSegment (ILjava/lang/String;)Lokhttp3/HttpUrl$Builder;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
Back to top