Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for httponly (0.29 sec)

  1. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        }
    
        public void setCookieSecure(final Boolean cookieSecure) {
            this.cookieSecure = cookieSecure;
        }
    
        public void setCookieHttpOnly(final boolean httpOnly) {
            this.httpOnly = httpOnly;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/net/http/cookie_test.go

    		}},
    	},
    	{
    		Header{"Set-Cookie": {"ASP.NET_SessionId=foo; path=/; HttpOnly"}},
    		[]*Cookie{{
    			Name:     "ASP.NET_SessionId",
    			Value:    "foo",
    			Path:     "/",
    			HttpOnly: true,
    			Raw:      "ASP.NET_SessionId=foo; path=/; HttpOnly",
    		}},
    	},
    	{
    		Header{"Set-Cookie": {"samesitedefault=foo; SameSite"}},
    		[]*Cookie{{
    			Name:     "samesitedefault",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Cookie.kt

      )
      fun path(): String = path
    
      @JvmName("-deprecated_httpOnly")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "httpOnly"),
        level = DeprecationLevel.ERROR,
      )
      fun httpOnly(): Boolean = httpOnly
    
      @JvmName("-deprecated_secure")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "secure"),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CookieTest.kt

            "a= ; Path=/c; Domain=example.com; Max-Age=5; Secure; HttpOnly",
            "a=b;          Domain=example.com; Max-Age=5; Secure; HttpOnly",
            "a=b; Path=/c;                     Max-Age=5; Secure; HttpOnly",
            "a=b; Path=/c; Domain=example.com;            Secure; HttpOnly",
            "a=b; Path=/c; Domain=example.com; Max-Age=5;         HttpOnly",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. src/net/http/cookie.go

    			case "none":
    				c.SameSite = SameSiteNoneMode
    			default:
    				c.SameSite = SameSiteDefaultMode
    			}
    			continue
    		case "secure":
    			c.Secure = true
    			continue
    		case "httponly":
    			c.HttpOnly = true
    			continue
    		case "domain":
    			c.Domain = val
    			continue
    		case "max-age":
    			secs, err := strconv.Atoi(val)
    			if err != nil || secs != 0 && val[0] == '0' {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/net/http/cookiejar/jar.go

    			if !c.Expires.After(now) {
    				return e, true, nil
    			}
    			e.Expires = c.Expires
    			e.Persistent = true
    		}
    	}
    
    	e.Value = c.Value
    	e.Quoted = c.Quoted
    	e.Secure = c.Secure
    	e.HttpOnly = c.HttpOnly
    
    	switch c.SameSite {
    	case http.SameSiteDefaultMode:
    		e.SameSite = "SameSite"
    	case http.SameSiteStrictMode:
    		e.SameSite = "SameSite=Strict"
    	case http.SameSiteLaxMode:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/KotlinDeprecationErrorTest.kt

        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
      fun formBody() {
        val formBody: FormBody = FormBody.Builder().build()
        val size: Int = formBody.size()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/jar_test.go

    			"a=1",
    			"b=2; secure",
    			"c=3; httponly",
    			"d=4; secure; httponly"},
    		"a=1 b=2 c=3 d=4",
    		[]query{
    			{"http://www.host.test", "a=1 c=3"},
    			{"https://www.host.test", "a=1 b=2 c=3 d=4"},
    		},
    	},
    	{
    		"Update value via http.",
    		"http://www.host.test",
    		[]string{
    			"a=w",
    			"b=x; secure",
    			"c=y; httponly",
    			"d=z; secure; httponly"},
    		"a=w b=x c=y d=z",
    		[]query{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

        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
        val matches: Boolean = cookie.matches("".toHttpUrl())
        val parsedCookie: Cookie? = Cookie.parse("".toHttpUrl(), "")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. 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: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top