Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 89 of 89 for Cookies (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

        this.sslSocketFactory = sslSocketFactory
      }
    
      /**
       * Configure the server to not perform SSL authentication of the client. This leaves
       * authentication to another layer such as in an HTTP cookie or header. This is the default and
       * most common configuration.
       */
      fun noClientAuth() {
        this.clientAuth = CLIENT_AUTH_NONE
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  6. docs/yo/docs/index.md

    * Ọpọlọpọ àwọn àfikún àwọn ẹ̀yà (ọpẹ́ pàtàkìsi sí Starlette) bí:
        * **WebSockets**
        * àwọn ìdánwò tí ó rọrùn púpọ̀ lórí HTTPX àti `pytest`
        * **CORS**
        * **Cookie Sessions**
        * ...àti síwájú síi.
    
    ## Ìṣesí
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/original_ip_detection/xff/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/stateful_session/cookie/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/stateful_session/header/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/internal_redirect/allow_listed_routes/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster.go

    				// as UNHEALTHY ('coarse state'), which is what will show in config dumps.
    				// DRAINING/UNHEALTHY will not be used normally for new requests. They will be used if cookie/header
    				// selects them.
    				defaultCluster.cluster.CommonLbConfig.OverrideHostStatus = &core.HealthStatusSet{
    					Statuses: []core.HealthStatus{
    						core.HealthStatus_HEALTHY,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. docs/ja/docs/alternatives.md

    !!! check "**FastAPI**へ与えたインスピレーション"
        素晴らしい性能を得るための方法を見つけた点。
    
        Hug (HugはFalconをベースにしています) と一緒に、**FastAPI**が`response`引数を関数に持つことにインスピレーションを与えました。
    
        **FastAPI**では任意ですが、ヘッダーやCookieやステータスコードを設定するために利用されています。
    
    ### <a href="https://moltenframework.com/" class="external-link" target="_blank">Molten</a>
    
    **FastAPI**を構築する最初の段階でMoltenを発見しました。そして、それは非常に似たようなアイデアを持っています。
    
    * Pythonの型ヒントに基づいている
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top