- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for hostOnly (0.1 sec)
-
okhttp/src/main/kotlin/okhttp3/Cookie.kt
) fun expiresAt(): Long = expiresAt @JvmName("-deprecated_hostOnly") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "hostOnly"), level = DeprecationLevel.ERROR, ) fun hostOnly(): Boolean = hostOnly @JvmName("-deprecated_domain") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "domain"),
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:12:05 UTC 2024 - 23.1K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CookieTest.kt
assertThat(parse(punycode, "a=b; domain=xn--8ltr62k.jp")).isNull() } @Test fun hostOnly() { assertThat(parse(url, "a=b")!!.hostOnly).isTrue() assertThat( parse(url, "a=b; domain=example.com")!!.hostOnly, ).isFalse() } @Test fun defaultPath() { assertThat(parse("http://example.com/foo/bar".toHttpUrl(), "a=b")!!.path).isEqualTo("/foo")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 24.3K bytes - Viewed (0) -
docs/changelogs/upgrading_to_okhttp_4.md
* **Challenge**: authParams, charset, realm, scheme * **CipherSuite**: javaName * **ConnectionSpec**: cipherSuites, supportsTlsExtensions, tlsVersions * **Cookie**: domain, expiresAt, hostOnly, httpOnly, name, path, persistent, value * **Dispatcher**: executorService * **FormBody**: size * **Handshake**: cipherSuite, localCertificates, localPrincipal, peerCertificates, peerPrincipal, tlsVersion
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 16:58:16 UTC 2022 - 10.9K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/KotlinDeprecationErrorTest.kt
val name: String = cookie.name() val value: String = cookie.value() val persistent: Boolean = cookie.persistent() val expiresAt: Long = cookie.expiresAt() val hostOnly: Boolean = cookie.hostOnly() val domain: String = cookie.domain() val path: String = cookie.path() val httpOnly: Boolean = cookie.httpOnly() val secure: Boolean = cookie.secure() } @Test @Disabled
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 13.3K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt
val name: String = cookie.name val value: String = cookie.value val persistent: Boolean = cookie.persistent val expiresAt: Long = cookie.expiresAt val hostOnly: Boolean = cookie.hostOnly val domain: String = cookie.domain val path: String = cookie.path val httpOnly: Boolean = cookie.httpOnly val secure: Boolean = cookie.secure
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 01 14:21:25 UTC 2024 - 46.5K bytes - Viewed (0) -
okhttp/api/okhttp.api
public final fun domain ()Ljava/lang/String; public fun equals (Ljava/lang/Object;)Z public final fun expiresAt ()J public fun hashCode ()I public final fun hostOnly ()Z public final fun httpOnly ()Z public final fun matches (Lokhttp3/HttpUrl;)Z public final fun name ()Ljava/lang/String; public final fun newBuilder ()Lokhttp3/Cookie$Builder;
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 13:41:01 UTC 2024 - 70.2K bytes - Viewed (0)