Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 501 - 510 of 850 for tutoriel (0.06 seconds)

  1. docs/fr/docs/deployment/versions.md

    ## Mettre à niveau les versions de FastAPI { #upgrading-the-fastapi-versions }
    
    Vous devez ajouter des tests pour votre application.
    
    Avec **FastAPI** c'est très facile (merci à Starlette), consultez les documents : [Tests](../tutorial/testing.md)
    
    Après avoir des tests, vous pouvez mettre à niveau la version de **FastAPI** vers une version plus récente et vous assurer que tout votre code fonctionne correctement en exécutant vos tests.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  2. docs/de/docs/tutorial/cookie-param-models.md

    ## Die Dokumentation testen { #check-the-docs }
    
    Sie können die definierten Cookies in der Dokumentationsoberfläche unter `/docs` sehen:
    
    <div class="screenshot">
    <img src="/img/tutorial/cookie-param-models/image01.png">
    </div>
    
    /// info | Info
    
    Bitte beachten Sie, dass Browser Cookies auf spezielle Weise und im Hintergrund bearbeiten, sodass sie **nicht** leicht **JavaScript** erlauben, diese zu berühren.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 07:57:30 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  3. docs/ja/docs/advanced/response-change-status-code.md

    # レスポンス - ステータスコードの変更 { #response-change-status-code }
    
    すでに、デフォルトの[レスポンスのステータスコード](../tutorial/response-status-code.md)を設定できることをご存知かもしれません。
    
    しかし場合によっては、デフォルトとは異なるステータスコードを返す必要があります。
    
    ## ユースケース { #use-case }
    
    たとえば、デフォルトでは HTTP ステータスコード "OK" `200` を返したいとします。
    
    しかし、データが存在しなければそれを作成し、HTTP ステータスコード "CREATED" `201` を返したい。
    
    それでも、返すデータは `response_model` でフィルタ・変換できるようにしておきたい。
    
    そのような場合は `Response` パラメータを使えます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 2K bytes
    - Click Count (0)
  4. docs/pt/docs/how-to/extending-openapi.md

    ### Verificar { #check-it }
    
    Uma vez que você acessar [http://127.0.0.1:8000/redoc](http://127.0.0.1:8000/redoc), verá que está usando seu logo personalizado (neste exemplo, o logo do **FastAPI**):
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  5. docs/tr/docs/advanced/dataclasses.md

    {* ../../docs_src/dataclasses_/tutorial002_py310.py hl[1,6:12,18] *}
    
    Dataclass otomatik olarak bir Pydantic dataclass'ına dönüştürülür.
    
    Bu sayede şeması API docs kullanıcı arayüzünde görünür:
    
    <img src="/img/tutorial/dataclasses/image01.png">
    
    ## İç İçe Veri Yapılarında Dataclass'lar { #dataclasses-in-nested-data-structures }
    
    İç içe veri yapıları oluşturmak için `dataclasses` ile diğer type annotation'ları da birleştirebilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  6. docs/fr/docs/advanced/settings.md

    ## Paramètres dans un autre module { #settings-in-another-module }
    
    Vous pouvez placer ces paramètres dans un autre module comme vous l'avez vu dans [Applications plus grandes - Plusieurs fichiers](../tutorial/bigger-applications.md).
    
    Par exemple, vous pourriez avoir un fichier `config.py` avec :
    
    {* ../../docs_src/settings/app01_py310/config.py *}
    
    Puis l'utiliser dans un fichier `main.py` :
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  7. docs/ja/docs/tutorial/security/simple-oauth2.md

    ### 認証 { #authenticate }
    
    「Authorize」ボタンをクリックします。
    
    次の認証情報を使います:
    
    User: `johndoe`
    
    Password: `secret`
    
    <img src="/img/tutorial/security/image04.png">
    
    システムで認証されると、次のように表示されます:
    
    <img src="/img/tutorial/security/image05.png">
    
    ### 自分のユーザーデータを取得 { #get-your-own-user-data }
    
    `GET` の path `/users/me` を使います。
    
    次のようなユーザーデータが取得できます:
    
    ```JSON
    {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  8. docs/ja/docs/advanced/security/oauth2-scopes.md

    `:` のような他の文字が含まれていても、URL であっても問題ありません。
    
    それらの詳細は実装依存です。
    
    OAuth2 にとっては、単に文字列に過ぎません。
    
    ///
    
    ## 全体像 { #global-view }
    
    まず、メインの**チュートリアル - ユーザーガイド**にある [OAuth2(パスワード[ハッシュ化あり])、Bearer と JWT トークン](../../tutorial/security/oauth2-jwt.md) の例から変更される部分を、スコープ付き OAuth2 を使って手早く見てみましょう。
    
    {* ../../docs_src/security/tutorial005_an_py310.py hl[5,9,13,47,65,106,108:116,122:126,130:136,141,157] *}
    
    では、これらの変更を一つずつ確認していきます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/collect/Lists.java

       * use the {@code ArrayList} {@linkplain ArrayList#ArrayList() constructor} directly, taking
       * advantage of <a
       * href="https://docs.oracle.com/javase/tutorial/java/generics/genTypeInference.html#type-inference-instantiation">"diamond"
       * syntax</a>.
       */
      @SuppressWarnings("NonApiType") // acts as a direct substitute for a constructor call
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 16:38:09 GMT 2026
    - 42.1K bytes
    - Click Count (0)
  10. docs/en/docs/advanced/openapi-webhooks.md

    Now you can start your app and go to [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs).
    
    You will see your docs have the normal *path operations* and now also some **webhooks**:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.9K bytes
    - Click Count (0)
Back to Top