Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 89 for Cookies (0.18 sec)

  1. src/crypto/tls/handshake_messages_test.go

    	if rand.Intn(10) > 5 {
    		m.extendedMasterSecret = true
    	}
    	for i := 0; i < rand.Intn(5); i++ {
    		m.supportedVersions = append(m.supportedVersions, uint16(rand.Intn(0xffff)+1))
    	}
    	if rand.Intn(10) > 5 {
    		m.cookie = randomBytes(rand.Intn(500)+1, rand)
    	}
    	for i := 0; i < rand.Intn(5); i++ {
    		var ks keyShare
    		ks.group = CurveID(rand.Intn(30000) + 1)
    		ks.data = randomBytes(rand.Intn(200)+1, rand)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pilot/pkg/features/experimental.go

    	).Get()
    
    	PersistentSessionLabel = env.Register(
    		"PILOT_PERSISTENT_SESSION_LABEL",
    		"istio.io/persistent-session",
    		"If not empty, services with this label will use cookie based persistent sessions",
    	).Get()
    
    	PersistentSessionHeaderLabel = env.Register(
    		"PILOT_PERSISTENT_SESSION_HEADER_LABEL",
    		"istio.io/persistent-session-header",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. docs/ja/docs/features.md

    * APIキー:
         * ヘッダー
         * クエリパラメータ
         * クッキー、等
    
    さらに、Starletteのすべてのセキュリティ機能も含みます(**セッションCookie**を含む)。
    
    これらは、システム、データストア、リレーショナルデータベース、NoSQLデータベースなどと簡単に統合できる再利用可能なツールとコンポーネントとして構築されています。
    
    ### 依存性の注入(Dependency Injection)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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 (0)
  9. okhttp/src/main/kotlin/okhttp3/Response.kt

          name: String,
          value: String,
        ) = commonHeader(name, value)
    
        /**
         * Adds a header with [name] to [value]. Prefer this method for multiply-valued
         * headers like "Set-Cookie".
         */
        open fun addHeader(
          name: String,
          value: String,
        ) = commonAddHeader(name, value)
    
        /** Removes all headers named [name] on this builder. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. 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)
Back to top