Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 744 for Purger (0.24 sec)

  1. docs/en/docs/img/async/concurrent-burgers/concurrent-burgers-06.png

    concurrent-burgers-06.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 17 10:48:05 UTC 2022
    - 161K bytes
    - Viewed (0)
  2. docs/en/docs/img/async/concurrent-burgers/concurrent-burgers-04.png

    concurrent-burgers-04.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 17 10:48:05 UTC 2022
    - 159.6K bytes
    - Viewed (0)
  3. docs/en/docs/img/async/concurrent-burgers/concurrent-burgers-07.png

    concurrent-burgers-07.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 17 10:48:05 UTC 2022
    - 166K bytes
    - Viewed (0)
  4. docs/en/docs/img/async/parallel-burgers/parallel-burgers-02.png

    parallel-burgers-02.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 17 10:48:05 UTC 2022
    - 198.9K bytes
    - Viewed (0)
  5. docs/en/docs/img/async/parallel-burgers/parallel-burgers-03.png

    parallel-burgers-03.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 17 10:48:05 UTC 2022
    - 164.7K bytes
    - Viewed (0)
  6. docs/en/docs/img/async/parallel-burgers/parallel-burgers-04.png

    parallel-burgers-04.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 17 10:48:05 UTC 2022
    - 214.3K bytes
    - Viewed (0)
  7. docs/en/docs/img/async/parallel-burgers/parallel-burgers-05.png

    parallel-burgers-05.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 17 10:48:05 UTC 2022
    - 180.8K bytes
    - Viewed (0)
  8. docs/tr/docs/async.md

    burgers = get_burgers(2)
    ```
    
    ---
    
    Bu nedenle, size onu `await` ile çağırabileceğinizi söyleyen bir kitaplık kullanıyorsanız, onu `async def` ile tanımlanan *path fonksiyonu* içerisinde kullanmanız gerekir, örneğin:
    
    ```Python hl_lines="2-3"
    @app.get('/burgers')
    async def read_burgers():
        burgers = await get_burgers(2)
        return burgers
    ```
    
    ### Daha fazla teknik detay
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. docs/fr/docs/async.md

    #### Burgers parallèles
    
    Imaginons désormais que ce ne sont pas des "burgers concurrents" mais des "burgers parallèles".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. docs/en/docs/async.md

    The cashier says something to the cook in the kitchen so they know they have to prepare your burgers (even though they are currently preparing the ones for the previous clients).
    
    <img src="/img/async/concurrent-burgers/concurrent-burgers-03.png" class="illustration">
    
    You pay. 💸
    
    The cashier gives you the number of your turn.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top