Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for rider (0.02 seconds)

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

  1. docs_src/extra_models/tutorial003_py310.py

    
    class CarItem(BaseItem):
        type: str = "car"
    
    
    class PlaneItem(BaseItem):
        type: str = "plane"
        size: int
    
    
    items = {
        "item1": {"description": "All my friends drive a low rider", "type": "car"},
        "item2": {
            "description": "Music is my aeroplane, it's my aeroplane",
            "type": "plane",
            "size": 5,
        },
    }
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 612 bytes
    - Click Count (0)
  2. docs/fr/docs/tutorial/dependencies/classes-as-dependencies.md

    ... comme dans :
    
    {* ../../docs_src/dependencies/tutorial003_an_py310.py hl[19] *}
    
    Mais il est recommandé de déclarer le type ; ainsi, votre éditeur saura ce qui sera passé comme paramètre `commons`, et pourra vous aider avec l'autocomplétion, les vérifications de type, etc. :
    
    <img src="/img/tutorial/dependencies/image02.png">
    
    ## Raccourci { #shortcut }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/resources/checkstyle.xml

      </module>
    
      <!--
        We include snippets that are wrapped in `// tag` and `// end` into the
        docs, stripping the leading spaces. If the context is wider than 76
        characters then it'll need to scroll. This fails the build if it sees
        such snippets.
      -->
      <module name="org.elasticsearch.gradle.internal.checkstyle.SnippetLengthCheck">
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 12:48:46 GMT 2021
    - 6K bytes
    - Click Count (0)
  4. docs/fr/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

    ///
    
    Si vous avez une ancienne application FastAPI avec Pydantic v1, je vais vous montrer comment la migrer vers Pydantic v2, et les **fonctionnalités de FastAPI 0.119.0** pour vous aider à une migration progressive.
    
    ## Guide officiel { #official-guide }
    
    Pydantic propose un [Guide de migration](https://docs.pydantic.dev/latest/migration/) officiel de la v1 à la v2.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  5. guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       *
       * @param expected expected value of {@link #container}
       */
      /*
       * TODO: improve this and other implementations and move out of this framework
       * for wider use
       *
       * TODO: could we incorporate the overriding logic from AbstractListTester, by
       * examining whether the features include KNOWN_ORDER?
       */
      protected void expectContents(Collection<E> expected) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 20:54:16 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/security/first-steps.md

    * Frontend bu token’ı geçici olarak bir yerde saklar.
    * Kullanıcı frontend’de tıklayarak web uygulamasının başka bir bölümüne gider.
    * Frontend’in API’den daha fazla veri alması gerekir.
        * Ancak o endpoint için authentication gereklidir.
        * Bu yüzden API’mizle authenticate olmak için `Authorization` header’ını, `Bearer ` + token değeriyle gönderir.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.2K bytes
    - Click Count (0)
Back to Top