Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 85 for Cookies (0.17 sec)

  1. okhttp/src/main/kotlin/okhttp3/Request.kt

        open fun header(
          name: String,
          value: String,
        ) = commonHeader(name, value)
    
        /**
         * Adds a header with [name] and [value]. Prefer this method for multiply-valued
         * headers like "Cookie".
         *
         * Note that for some headers including `Content-Length` and `Content-Encoding`,
         * OkHttp may replace [value] with a header derived from the request body.
         */
        open fun addHeader(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. docs/en/data/external_links.yml

    -python-framework-2n10 title: Introduction to the fastapi python framework - author: Nils de Bruin author_link: https://medium.com/@nilsdebruin link: https://medium.com/data-rebels/fastapi-how-to-add-basic-and-cookie-authentication-a45c85ef47d3 title: FastAPI — How to add basic and cookie authentication - author: Nils de Bruin author_link: https://medium.com/@nilsdebruin link: https://medium.com/data-rebels/fastapi-google-as-an-external-authentication-provider-3a527672cf33 title: FastAPI — Google...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. src/net/textproto/reader.go

    		"Content-Transfer-Encoding",
    		"Content-Type",
    		"Cookie",
    		"Date",
    		"Dkim-Signature",
    		"Etag",
    		"Expires",
    		"From",
    		"Host",
    		"If-Modified-Since",
    		"If-None-Match",
    		"In-Reply-To",
    		"Last-Modified",
    		"Location",
    		"Message-Id",
    		"Mime-Version",
    		"Pragma",
    		"Received",
    		"Return-Path",
    		"Server",
    		"Set-Cookie",
    		"Subject",
    		"To",
    		"User-Agent",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_tls13.go

    		ch.secureRenegotiationSupported != ch1.secureRenegotiationSupported ||
    		!bytes.Equal(ch.secureRenegotiation, ch1.secureRenegotiation) ||
    		ch.scts != ch1.scts ||
    		!bytes.Equal(ch.cookie, ch1.cookie) ||
    		!bytes.Equal(ch.pskModes, ch1.pskModes)
    }
    
    func (hs *serverHandshakeStateTLS13) sendServerParameters() error {
    	c := hs.c
    
    	if err := transcriptMsg(hs.clientHello, hs.transcript); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/productpage.py

            # SkyWalking trace headers.
            'sw8',
    
            # Application-specific headers to forward.
            'user-agent',
    
            # Context and session specific headers
            'cookie',
            'authorization',
            'jwt',
        ]
        # For Zipkin, always propagate b3 headers.
        # For Lightstep, always propagate the x-ot-span-context header.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  6. docs/he/docs/index.md

    -   תכונות נוספות רבות (תודות ל - Starlette) כגון:
        -   **WebSockets**
        -   בדיקות קלות במיוחד מבוססות על `requests` ו - `pytest`
        -   **CORS**
        -   **Cookie Sessions**
        -   ...ועוד.
    
    ## ביצועים
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. docs/bn/docs/index.md

    - আরো অতিরিক্ত বৈশিষ্ট্য (স্টারলেটকে ধন্যবাদ) হিসাবে:
      - **WebSockets**
      - **GraphQL**
      - HTTPX এবং `pytest` ভিত্তিক অত্যন্ত সহজ পরীক্ষা
      - **CORS**
      - **Cookie Sessions**
      - ...এবং আরো।
    
    ## কর্মক্ষমতা
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. docs/tr/docs/index.md

    * Diğer ekstra özellikler (Starlette sayesinde):
        * **WebSocketler**
        * HTTPX ve `pytest` sayesinde aşırı kolay testler.
        * **CORS**
        * **Cookie Sessions**
        * ...ve daha fazlası.
    
    ## Performans
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/runtime/netpoll.go

    	lock    mutex // protects the following fields
    	closing bool
    	rrun    bool      // whether rt is running
    	wrun    bool      // whether wt is running
    	user    uint32    // user settable cookie
    	rseq    uintptr   // protects from stale read timers
    	rt      timer     // read deadline timer
    	rd      int64     // read deadline (a nanotime in the future, -1 when expired)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/query-params-str-validations.md

    !!! tip
    
        Here we are using `Query()` because this is a **query parameter**. Later we will see others like `Path()`, `Body()`, `Header()`, and `Cookie()`, that also accept the same arguments as `Query()`.
    
    FastAPI will now:
    
    * **Validate** the data making sure that the max length is 50 characters
    * Show a **clear error** for the client when the data is not valid
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top