Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 301 - 310 of 323 for cookey (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/fr/docs/tutorial/query-params-str-validations.md

    /// tip | Astuce
    
    Ici nous utilisons `Query()` parce qu’il s’agit d’un **paramètre de requête**. Plus tard nous verrons d’autres comme `Path()`, `Body()`, `Header()` et `Cookie()`, qui acceptent également les mêmes arguments que `Query()`.
    
    ///
    
    FastAPI va maintenant :
    
    - **Valider** les données en s’assurant que la longueur maximale est de 50 caractères
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 19K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

       * by applying the given {@code AsyncFunction} to the result of the original {@code Future}.
       * Example usage:
       *
       * {@snippet :
       * FluentFuture<RowKey> rowKeyFuture = FluentFuture.from(indexService.lookUp(query));
       * ListenableFuture<QueryResult> queryFuture =
       *     rowKeyFuture.transformAsync(dataService::readFuture, executor);
       * }
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 19.8K bytes
    - Click Count (0)
  3. docs/es/docs/tutorial/query-params-str-validations.md

    /// tip | Consejo
    
    Aquí estamos usando `Query()` porque este es un **parámetro de query**. Más adelante veremos otros como `Path()`, `Body()`, `Header()`, y `Cookie()`, que también aceptan los mismos argumentos que `Query()`.
    
    ///
    
    FastAPI ahora:
    
    * Validará los datos asegurándose de que la longitud máxima sea de 50 caracteres
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  4. docs/ko/docs/tutorial/query-params-str-validations.md

    하지만 `Annotated` 안에 `Query(max_length=50)`를 넣음으로써, 이 값에 대해 **추가 검증**을 적용하고 최대 50자까지만 허용하도록 FastAPI에 알려줍니다. 😎
    
    /// tip | 팁
    
    여기서는 **쿼리 매개변수**이기 때문에 `Query()`를 사용합니다. 나중에 `Path()`, `Body()`, `Header()`, `Cookie()`와 같이 `Query()`와 동일한 인자를 받는 것들도 보게 될 것입니다.
    
    ///
    
    이제 FastAPI는 다음을 수행합니다:
    
    * 최대 길이가 50자인지 확인하도록 데이터를 **검증**합니다
    * 데이터가 유효하지 않을 때 클라이언트에게 **명확한 오류**를 보여줍니다
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  5. docs/ja/docs/_llm-test.md

    * path operation デコレータ
    * path operation 関数
    
    * ボディ
    * リクエストボディ
    * レスポンスボディ
    * JSON ボディ
    * フォームボディ
    * ファイルボディ
    * 関数本体
    
    * パラメータ
    * ボディパラメータ
    * パスパラメータ
    * クエリパラメータ
    * Cookie パラメータ
    * ヘッダーパラメータ
    * フォームパラメータ
    * 関数パラメータ
    
    * イベント
    * 起動イベント
    * サーバーの起動
    * シャットダウンイベント
    * lifespan イベント
    
    * ハンドラ
    * イベントハンドラ
    * 例外ハンドラ
    * 処理する
    
    * モデル
    * Pydantic モデル
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 13.5K bytes
    - Click Count (0)
  6. docs/zh/docs/tutorial/query-params-str-validations.md

    注意默认值依然是 `None`,所以该参数仍是可选的。
    
    但现在把 `Query(max_length=50)` 放到 `Annotated` 里,我们就在告诉 FastAPI,这个值需要**额外校验**,最大长度为 50 个字符。😎
    
    /// tip | 提示
    
    这里用的是 `Query()`,因为这是一个**查询参数**。稍后我们还会看到 `Path()`、`Body()`、`Header()` 和 `Cookie()`,它们也接受与 `Query()` 相同的参数。
    
    ///
    
    FastAPI 现在会:
    
    - 对数据进行**校验**,确保最大长度为 50 个字符
    - 当数据无效时向客户端展示**清晰的错误**
    - 在 OpenAPI 模式的*路径操作*中**记录**该参数(因此会出现在**自动文档 UI** 中)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 15.4K bytes
    - Click Count (0)
  7. docs/ja/docs/tutorial/query-params-str-validations.md

    しかし、`Annotated` の中に `Query(max_length=50)` を入れることで、この値に **追加のバリデーション** をしたい、最大 50 文字にしたい、と FastAPI に伝えています。 😎
    
    /// tip | 豆知識
    
    ここでは **クエリパラメータ** なので `Query()` を使っています。後で `Path()`、`Body()`、`Header()`、`Cookie()` など、`Query()` と同じ引数を受け取れるものも見ていきます。
    
    ///
    
    FastAPI は次を行います:
    
    * 最大長が 50 文字であることを確かめるようデータを **検証** する
    * データが有効でないときに、クライアントに **明確なエラー** を表示する
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  8. api/go1.11.txt

    pkg net/http, const SameSiteStrictMode = 3
    pkg net/http, const SameSiteStrictMode SameSite
    pkg net/http, const StatusMisdirectedRequest = 421
    pkg net/http, const StatusMisdirectedRequest ideal-int
    pkg net/http, type Cookie struct, SameSite SameSite
    pkg net/http, type SameSite int
    pkg net/http, type Transport struct, MaxConnsPerHost int
    pkg net/http/httptrace, type ClientTrace struct, Got1xxResponse func(int, textproto.MIMEHeader) error
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Click Count (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

          MockResponse
            .Builder()
            .addHeader("Set-Cookie: a=FIRST")
            .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS))
            .addHeader("Cache-Control: max-age=0")
            .body("A")
            .build(),
        )
        server.enqueue(
          MockResponse
            .Builder()
            .addHeader("Set-Cookie: a=SECOND")
            .code(HttpURLConnection.HTTP_NOT_MODIFIED)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Mar 20 09:13:37 GMT 2026
    - 121K bytes
    - Click Count (0)
  10. guava/src/com/google/common/collect/ImmutableMap.java

         * pass an expression that *might* be null. This could happen with:
         *
         * - a `getFooOrDefault(@Nullable Foo defaultValue)` method that returns
         *   `map.getOrDefault(FOO_KEY, defaultValue)`
         *
         * - a call that consults a chain of maps, as in `mapA.getOrDefault(key, mapB.getOrDefault(key,
         *   ...))`
         *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 44.7K bytes
    - Click Count (0)
Back to Top