Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Ford (0.17 sec)

  1. docs/en/docs/deployment/concepts.md

    ## Program and Process
    
    We will talk a lot about the running "**process**", so it's useful to have clarity about what it means, and what's the difference with the word "**program**".
    
    ### What is a Program
    
    The word **program** is commonly used to describe many things:
    
    * The **code** that you write, the **Python files**.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/path-params-numeric-validations.md

    ```Python hl_lines="7"
    {!../../../docs_src/path_params_numeric_validations/tutorial003.py!}
    ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 17:59:29 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  3. docs/en/docs/python-types.md

    * ๐Ÿšจ Avoid using `Optional[SomeType]`
    * Instead โœจ **use `Union[SomeType, None]`** โœจ.
    
    Both are equivalent and underneath they are the same, but I would recommend `Union` instead of `Optional` because the word "**optional**" would seem to imply that the value is optional, and it actually means "it can be `None`", even if it's not optional and is still required.
    
    I think `Union[SomeType, None]` is more explicit about what it means.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 17K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    * โœ Fix typo about file path in `docs/en/docs/tutorial/bigger-applications.md`. PR [#3285](https://github.com/tiangolo/fastapi/pull/3285) by [@HolyDorus](https://github.com/HolyDorus).
    * โœ Re-word to clarify test client in `docs/en/docs/tutorial/testing.md`. PR [#3382](https://github.com/tiangolo/fastapi/pull/3382) by [@Bharat123rox](https://github.com/Bharat123rox).
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  5. docs/en/docs/advanced/events.md

    Because this code is executed before the application **starts** taking requests, and right after it **finishes** handling requests, it covers the whole application **lifespan** (the word "lifespan" will be important in a second ๐Ÿ˜‰).
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  6. docs/ja/docs/tutorial/path-params-numeric-validations.md

    ใ‚ฏใ‚จใƒชใƒ‘ใƒฉใƒกใƒผใ‚ฟ`q`ใ‚’`Query`ใ‚„ใƒ‡ใƒ•ใ‚ฉใƒซใƒˆๅ€คใชใ—ใงๅฎฃ่จ€ใ—ใ€ใƒ‘ใ‚นใƒ‘ใƒฉใƒกใƒผใ‚ฟ`item_id`ใ‚’`Path`ใ‚’็”จใ„ใฆๅฎฃ่จ€ใ—ใ€ใใ‚Œใ‚‰ใ‚’ๅˆฅใฎ้ †็•ชใซไธฆใณใŸใ„ๅ ดๅˆใ€Pythonใซใฏๅฐ‘ใ—็‰นๆฎŠใชๆง‹ๆ–‡ใŒ็”จๆ„ใ•ใ‚Œใฆใ„ใพใ™ใ€‚
    
    ้–ขๆ•ฐใฎๆœ€ๅˆใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใจใ—ใฆ`*`ใ‚’ๆธกใ—ใพใ™ใ€‚
    
    Pythonใฏใใฎ`*`ใงไฝ•ใ‹ใ‚’ใ™ใ‚‹ใ“ใจใฏใ‚ใ‚Šใพใ›ใ‚“ใŒใ€ใใ‚Œไปฅ้™ใฎใ™ในใฆใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใŒใ‚ญใƒผใƒฏใƒผใƒ‰ๅผ•ๆ•ฐ๏ผˆใ‚ญใƒผใจๅ€คใฎใƒšใ‚ข๏ผ‰ใจใ—ใฆๅ‘ผใฐใ‚Œใ‚‹ในใใ‚‚ใฎใงใ‚ใ‚‹ใจ็Ÿฅใฃใฆใ„ใ‚‹ใงใ—ใ‚‡ใ†ใ€‚ใใ‚Œใฏ<abbr title="From: K-ey W-ord Arg-uments"><code>kwargs</code></abbr>ใจใ—ใฆใ‚‚็Ÿฅใ‚‰ใ‚Œใฆใ„ใพใ™ใ€‚ใŸใจใˆใƒ‡ใƒ•ใ‚ฉใƒซใƒˆๅ€คใŒใชใใฆใ‚‚ใ€‚
    
    ```Python hl_lines="8"
    {!../../../docs_src/path_params_numeric_validations/tutorial003.py!}
    ```
    
    ## ๆ•ฐๅ€คใฎๆคœ่จผ: ไปฅไธŠ
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Jan 15 15:46:32 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/path-params-numeric-validations.md

    Pass `*`, as the first parameter of the function.
    
    Python won't do anything with that `*`, but it will know that all the following parameters should be called as keyword arguments (key-value pairs), also known as <abbr title="From: K-ey W-ord Arg-uments"><code>kwargs</code></abbr>. Even if they don't have a default value.
    
    ```Python hl_lines="7"
    {!../../../docs_src/path_params_numeric_validations/tutorial003.py!}
    ```
    
    ### Better with `Annotated`
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/manually.md

    ## Server Machine and Server Program
    
    There's a small detail about names to keep in mind. ๐Ÿ’ก
    
    The word "**server**" is commonly used to refer to both the remote/cloud computer (the physical or virtual machine) and also the program that is running on that machine (e.g. Uvicorn).
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/path-params-numeric-validations.md

    ๐Ÿšถโ€โ™€๏ธ `*`, ๐Ÿฅ‡ ๐Ÿ”ข ๐Ÿ”ข.
    
    ๐Ÿ ๐Ÿ† ๐Ÿšซ ๐Ÿ•ณ โฎ๏ธ ๐Ÿ‘ˆ `*`, โœ‹๏ธ โšซ๏ธ ๐Ÿ”œ ๐Ÿ’ญ ๐Ÿ‘ˆ ๐ŸŒ ๐Ÿ“„ ๐Ÿ”ข ๐Ÿ”œ ๐Ÿค™ ๐Ÿ‡จ๐Ÿ‡ป โŒ (๐Ÿ”‘-๐Ÿ’ฒ ๐Ÿ‘ซ), ๐Ÿ’ญ <abbr title="From: K-ey W-ord Arg-uments"><code>kwargs</code></abbr>. ๐Ÿšฅ ๐Ÿ‘ซ ๐Ÿšซ โœ”๏ธ ๐Ÿ”ข ๐Ÿ’ฒ.
    
    ```Python hl_lines="7"
    {!../../../docs_src/path_params_numeric_validations/tutorial003.py!}
    ```
    
    ## ๐Ÿ”ข ๐Ÿ”ฌ: ๐Ÿ‘‘ ๐ŸŒ˜ โš–๏ธ ๐ŸŒ“
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/generate-clients.md

    ### Preprocess the OpenAPI Specification for the Client Generator
    
    The generated code still has some **duplicated information**.
    
    We already know that this method is related to the **items** because that word is in the `ItemsService` (taken from the tag), but we still have the tag name prefixed in the method name too. ๐Ÿ˜•
    
    We will probably still want to keep it for OpenAPI in general, as that will ensure that the operation IDs are **unique**.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.5K bytes
    - Viewed (0)
Back to top