Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 471 - 480 of 1,857 for notre (0.06 seconds)

  1. docs/en/docs/advanced/async-tests.md

    </div>
    
    ## In Detail { #in-detail }
    
    The marker `@pytest.mark.anyio` tells pytest that this test function should be called asynchronously:
    
    {* ../../docs_src/async_tests/app_a_py310/test_main.py hl[7] *}
    
    /// tip
    
    Note that the test function is now `async def` instead of just `def` as before when using the `TestClient`.
    
    ///
    
    Then we can create an `AsyncClient` with the app, and send async requests to it, using `await`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  2. docs/ru/docs/tutorial/body-updates.md

    Это означает, что можно передавать только те данные, которые необходимо обновить, оставляя остальные нетронутыми.
    
    /// note | Примечание
    
    `PATCH` менее распространен и известен, чем `PUT`.
    
    А многие команды используют только `PUT`, даже для частичного обновления.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/body-multiple-params.md

    Ayrıca, varsayılan değeri `None` yaparak body parametrelerini opsiyonel olarak da tanımlayabilirsiniz:
    
    {* ../../docs_src/body_multiple_params/tutorial001_an_py310.py hl[18:20] *}
    
    /// note | Not
    
    Bu durumda body'den alınacak `item` opsiyoneldir. Çünkü varsayılan değeri `None` olarak ayarlanmıştır.
    
    ///
    
    ## Birden fazla body parametresi { #multiple-body-parameters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/advanced/templates.md

    {* ../../docs_src/templates/tutorial001_py310.py hl[4,11,15:18] *}
    
    /// note
    
    在 FastAPI 0.108.0、Starlette 0.29.0 之前,`name` 是第一個參數。
    
    此外,在更早的版本中,`request` 物件是作為 context 的鍵值對之一傳給 Jinja2 的。
    
    ///
    
    /// tip
    
    透過宣告 `response_class=HTMLResponse`,文件 UI 能夠知道回應將會是 HTML。
    
    ///
    
    /// note | 技術細節
    
    你也可以使用 `from starlette.templating import Jinja2Templates`。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  5. docs/uk/docs/tutorial/body-updates.md

    Це означає, що Ви можете надіслати лише ті дані, які хочете оновити, залишаючи інші без змін.
    
    /// note | Примітка
    
    `PATCH` менш поширений і менш відомий, ніж `PUT`.
    
    І багато команд використовують лише `PUT`, навіть для часткових оновлень.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java

     * It includes server address, port number, username, and password.
     * It also provides a method to check if the authentication matches a given FTP path.
     *
     * <p><b>Security Note:</b> This class stores credentials in memory. For security best practices:
     * <ul>
     *   <li>Call {@link #clearCredentials()} after authentication is complete to clear sensitive data from memory</li>
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sun Jan 04 09:30:17 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  7. docs/fr/docs/tutorial/schema-extra-example.md

    # Déclarer des exemples de données de requête { #declare-request-example-data }
    
    Vous pouvez déclarer des exemples des données que votre application peut recevoir.
    
    Voici plusieurs façons de le faire.
    
    ## Ajouter des données JSON Schema supplémentaires dans les modèles Pydantic { #extra-json-schema-data-in-pydantic-models }
    
    Vous pouvez déclarer `examples` pour un modèle Pydantic qui seront ajoutés au JSON Schema généré.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  8. docs/ko/docs/tutorial/request-files.md

    ```
    
    만약 일반적인 `def` *경로 처리 함수*의 내부라면, 다음과 같이 `UploadFile.file` 에 직접 접근할 수 있습니다:
    
    ```Python
    contents = myfile.file.read()
    ```
    
    /// note | `async` 기술 세부사항
    
    `async` 메소드들을 사용할 때 **FastAPI**는 스레드풀에서 파일 메소드들을 실행하고 그들을 기다립니다.
    
    ///
    
    /// note | Starlette 기술 세부사항
    
    **FastAPI**의 `UploadFile` 은 **Starlette**의 `UploadFile` 을 직접적으로 상속받지만, **Pydantic** 및 FastAPI의 다른 부분들과의 호환성을 위해 필요한 부분들이 추가되었습니다.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/query-params-str-validations.md

    {* ../../docs_src/query_params_str_validations/tutorial013_an_py310.py hl[9] *}
    
    /// note | 注意
    
    注意,在這種情況下,FastAPI 不會檢查清單的內容。
    
    例如,`list[int]` 會檢查(並文件化)清單內容為整數;但單獨使用 `list` 則不會。
    
    ///
    
    ## 宣告更多中繼資料 { #declare-more-metadata }
    
    你可以為參數加入更多資訊。
    
    這些資訊會被包含在產生的 OpenAPI 中,供文件 UI 與外部工具使用。
    
    /// note | 注意
    
    請留意,不同工具對 OpenAPI 的支援程度可能不同。
    
    有些工具可能暫時還不會顯示所有額外資訊;不過多半這些缺漏功能已在開發規劃中。
    
    ///
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/collect/Maps.java

      }
    
      /**
       * Creates a <i>mutable</i>, empty {@code HashMap} instance.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableMap#of()} instead.
       *
       * <p><b>Note:</b> if {@code K} is an {@code enum} type, use {@link #newEnumMap} instead.
       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
Back to Top