- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for removePrefix (0.09 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilJvm.kt
* instances; this makes it clear which is which. */ @JvmField internal val okHttpName: String = OkHttpClient::class.java.name .removePrefix("okhttp3.")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 10.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
* Returns a domain string like `example.com` for an input domain like `EXAMPLE.COM` * or `.example.com`. */ private fun parseDomain(s: String): String { require(!s.endsWith(".")) return s.removePrefix(".").toCanonicalHost() ?: throw IllegalArgumentException() } /** Returns all of the cookies from a set of HTTP response headers. */ @JvmStatic fun parseAll( url: HttpUrl,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 23.1K bytes - Viewed (0)