Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Cookie2 (0.2 sec)

  1. docs/en/docs/release-notes.md

    ## 0.29.0
    
    * Add support for declaring a `Response` parameter:
        * This allows declaring:
            * [Response Cookies](https://fastapi.tiangolo.com/advanced/response-cookies/).
            * [Response Headers](https://fastapi.tiangolo.com/advanced/response-headers/).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	if needsContinue {
    		rp.header.Del("Expect")
    	}
    	// Merge Cookie headers into one "; "-delimited value.
    	if cookies := rp.header["Cookie"]; len(cookies) > 1 {
    		rp.header.Set("Cookie", strings.Join(cookies, "; "))
    	}
    
    	// Setup Trailers
    	var trailer Header
    	for _, v := range rp.header["Trailer"] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. / */
        String COOKIE_DEFAULT_PATH = "cookie.default.path";
    
        /** The key of the configuration. e.g. 3600 */
        String COOKIE_DEFAULT_EXPIRE = "cookie.default.expire";
    
        /** The key of the configuration. e.g. cookie */
        String SESSION_TRACKING_MODES = "session.tracking.modes";
    
        /** The key of the configuration. e.g. 25 */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    
    type SockFprog struct {
    	Len    uint16
    	Filter *SockFilter
    }
    
    type InotifyEvent struct {
    	Wd     int32
    	Mask   uint32
    	Cookie uint32
    	Len    uint32
    }
    
    const SizeofInotifyEvent = 0x10
    
    const SI_LOAD_SHIFT = 0x10
    
    type Utsname struct {
    	Sysname    [65]byte
    	Nodename   [65]byte
    	Release    [65]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                        regarding processing a repeated header, with special
                                        handling for \"Set-Cookie\"."
                                      maxLength: 256
                                      minLength: 1
                                      pattern: ^[A-Za-z0-9!#$%&'*+\-.^_\x60|~]+$
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
Back to top