Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 761 - 770 of 1,511 for notre (0.03 seconds)

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

  1. docs/ko/docs/tutorial/query-param-models.md

    # 쿼리 매개변수 모델 { #query-parameter-models }
    
    연관된 **쿼리 매개변수** 그룹이 있다면 이를 선언하기 위해 **Pydantic 모델**을 생성할 수 있습니다.
    
    이렇게 하면 **여러 곳**에서 **모델을 재사용**할 수 있을 뿐만 아니라, 매개변수에 대한 검증 및 메타데이터도 한 번에 선언할 수 있습니다. 😎
    
    /// note | 참고
    
    이 기능은 FastAPI 버전 `0.115.0`부터 지원됩니다. 🤓
    
    ///
    
    ## Pydantic 모델과 쿼리 매개변수 { #query-parameters-with-a-pydantic-model }
    
    필요한 **쿼리 매개변수**를 **Pydantic 모델** 안에 선언한 다음, 매개변수를 `Query`로 선언합니다:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Jan 11 00:15:26 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  2. docs/pt/docs/tutorial/extra-data-types.md

    ## Exemplo { #example }
    
    Aqui está um exemplo de *operação de rota* com parâmetros utilizando-se de alguns dos tipos acima.
    
    {* ../../docs_src/extra_data_types/tutorial001_an_py310.py hl[1,3,12:16] *}
    
    Note que os parâmetros dentro da função têm seu tipo de dados natural, e você pode, por exemplo, realizar manipulações normais de data, como:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  3. docs/uk/docs/tutorial/header-params.md

    Ви можете визначити значення за замовчуванням, а також усі додаткові параметри валідації або анотації:
    
    {* ../../docs_src/header_params/tutorial001_an_py310.py hl[9] *}
    
    /// note | Технічні деталі
    
    `Header` є «сестринським» класом для `Path`, `Query` і `Cookie`. Він також успадковується від того ж спільного класу `Param`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:42:01 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/advanced/response-headers.md

    ## 直接回傳 `Response` { #return-a-response-directly }
    
    當你直接回傳 `Response` 時,也能加入標頭。
    
    依照[直接回傳 Response](response-directly.md)中的說明建立回應,並把標頭作為額外參數傳入:
    
    {* ../../docs_src/response_headers/tutorial001_py310.py hl[10:12] *}
    
    /// note | 技術細節
    
    你也可以使用 `from starlette.responses import Response` 或 `from starlette.responses import JSONResponse`。
    
    為了方便開發者,FastAPI 提供與 `starlette.responses` 相同的內容於 `fastapi.responses`。但大多數可用的回應類型其實直接來自 Starlette。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  5. docs/zh/docs/advanced/using-request-directly.md

    因此,能够提取、验证路径参数、并转换为指定类型,还可以用 OpenAPI 注释。
    
    同样,您也可以正常声明其它参数,而且还可以提取 `Request`。
    
    ///
    
    ## `Request` 文档 { #request-documentation }
    
    你可以在[Starlette 官方文档站点的 `Request` 对象](https://www.starlette.dev/requests/)中阅读更多细节。
    
    /// note | 技术细节
    
    您也可以使用 `from starlette.requests import Request`。
    
    **FastAPI** 直接提供它只是为了方便开发者,但它直接来自 Starlette。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2K bytes
    - Click Count (0)
  6. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt

      val ca: Boolean,
      /** The maximum number of intermediate CAs between this and leaf certificates. */
      val maxIntermediateCas: Long?,
    )
    
    /** A private key. Note that this class doesn't support attributes or an embedded public key. */
    internal data class PrivateKeyInfo(
      // v1(0), v2(1).
      val version: Long,
      val algorithmIdentifier: AlgorithmIdentifier,
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 6.4K bytes
    - Click Count (0)
  7. src/main/java/jcifs/smb1/smb1/SmbException.java

     * change the mapping.
     */
    
    public class SmbException extends IOException implements NtStatus, DosError, WinError {
    
        static String getMessageByCode(final int errcode) {
            /* Note there's a signedness error here because 0xC0000000 based values are
             * negative so it with NT_STATUS_SUCCESS (0) the binary search will not be
             * performed properly. The effect is that the code at index 1 is never found
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 6K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/server-sent-events.md

    {* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *}
    
    /// note | Hinweis
    
    `data` und `raw_data` schließen sich gegenseitig aus. Sie können pro `ServerSentEvent` nur eines von beiden setzen.
    
    ///
    
    ## Mit `Last-Event-ID` fortsetzen { #resuming-with-last-event-id }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:48:21 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/server-sent-events.md

    {* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *}
    
    /// note | Nota
    
    `data` e `raw_data` são mutuamente exclusivos. Você só pode definir um deles em cada `ServerSentEvent`.
    
    ///
    
    ## Retomando com `Last-Event-ID` { #resuming-with-last-event-id }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/path-operation-configuration.md

    你可以為「路徑操作」的回應設定 (HTTP) `status_code`。
    
    你可以直接傳入整數代碼,例如 `404`。
    
    如果不記得每個數字代碼代表什麼,你可以使用 `status` 中的速記常數:
    
    {* ../../docs_src/path_operation_configuration/tutorial001_py310.py hl[1,15] *}
    
    該狀態碼會用於回應,並被加入至 OpenAPI 結構描述中。
    
    /// note | 技術細節
    
    你也可以使用 `from starlette import status`。
    
    **FastAPI** 提供與 `starlette.status` 相同的 `fastapi.status`,僅為了方便你這位開發者,但它其實直接來自 Starlette。
    
    ///
    
    ## 標籤 { #tags }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.8K bytes
    - Click Count (0)
Back to Top