Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for setEncodedPathSegment (0.19 seconds)

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

            "unexpected path segment: $pathSegment"
          }
          encodedPathSegments[index] = canonicalPathSegment
        }
    
        fun setEncodedPathSegment(
          index: Int,
          encodedPathSegment: String,
        ) = apply {
          val canonicalPathSegment =
            encodedPathSegment.canonicalize(
              encodeSet = PATH_SEGMENT_ENCODE_SET,
    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/jvm/okhttp.api

    	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;
    	public final fun setEncodedQueryParameter (Ljava/lang/String;Ljava/lang/String;)Lokhttp3/HttpUrl$Builder;
    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/api/android/okhttp.api

    	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;
    	public final fun setEncodedQueryParameter (Ljava/lang/String;Ljava/lang/String;)Lokhttp3/HttpUrl$Builder;
    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)
  4. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

        builder = builder.addPathSegments("")
        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("", "")
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 49.7K bytes
    - Click Count (0)
Back to Top