Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Lax (1.95 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top