- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for Lax (0.01 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt
assertThat(parse(url, "a=b; SameSite= ")!!.sameSite).isEqualTo("") assertThat(parse(url, "a= b; SameSite= Lax")!!.sameSite).isEqualTo("Lax") assertThat(parse(url, "a=b ; SameSite=Lax ;")!!.sameSite).isEqualTo("Lax") assertThat(parse(url, "a=\r\t \nb\n; \rSameSite=\n \tLax")!!.sameSite).isEqualTo("Lax") } @Test fun builderSameSiteTrimmed() { var cookieBuilder = Cookie .Builder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 24.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchHelperTest.java
public Integer getCookieSearchParameterMaxAgeAsInteger() { return 3600; } @Override public String getCookieSearchParameterSameSite() { return "Lax"; } @Override public boolean isSearchLog() { return true; } @Override public boolean isUserFavorite() { return true;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 18.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
* * - "Strict": the cookie is omitted when the subject URL is an embedded resource or a * potentially-destructive navigation. * * - "Lax": the cookie is omitted when the subject URL is an embedded resource. It is sent for * potentially-destructive navigation. This is the default value. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 23.1K bytes - Viewed (0)