- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for LAX (0.02 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) -
guava/src/com/google/common/graph/NetworkBuilder.java
* flightNetwork.addEdge("LAX", "ATL", 3025); * flightNetwork.addEdge("LAX", "ATL", 1598); * flightNetwork.addEdge("ATL", "LAX", 2450); * * // Building a immutable network * ImmutableNetwork<String, Integer> immutableNetwork = * NetworkBuilder.directed() * .allowsParallelEdges(true) * .<String, Integer>immutable() * .addEdge("LAX", "ATL", 3025) * .addEdge("LAX", "ATL", 1598)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 7.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) -
LICENSE
combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Jan 18 20:25:38 UTC 2016 - 25.8K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Path attribute for the search parameter cookie. Typically set to "/" or the context path of the app. cookie.search.parameter.path=/ # SameSite attribute for the search parameter cookie. Valid values: Lax, Strict, None cookie.search.parameter.same_site=Lax # ---------------------------------------------------------- # Paging # ------
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
*/ String getCookieSearchParameterPath(); /** * Get the value for the key 'cookie.search.parameter.same_site'. <br> * The value is, e.g. Lax <br> * comment: SameSite attribute for the search parameter cookie. Valid values: Lax, Strict, None * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getCookieSearchParameterSameSite();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)