- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 47 for burgers (0.08 sec)
-
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: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Aug 28 23:33:37 UTC 2024 - 23.5K bytes - Viewed (0) -
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: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 25.4K bytes - Viewed (0) -
docs/es/docs/async.md
<img src="https://fastapi.tiangolo.com/img/async/concurrent-burgers/concurrent-burgers-01.png" alt="illustration"> Llega tu turno, haces tu pedido de 2 hamburguesas impresionantes para esa persona 😍 y para ti. <img src="https://fastapi.tiangolo.com/img/async/concurrent-burgers/concurrent-burgers-02.png" alt="illustration">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 19 18:15:21 UTC 2024 - 24.9K bytes - Viewed (0) -
docs/de/docs/async.md
<img src="/img/async/parallel-burgers/parallel-burgers-04.png" class="illustration"> Dann kommt Ihr Kassierer/Koch 👨🍳 endlich mit Ihren Burgern zurück, nachdem Sie lange vor der Theke gewartet 🕙 haben. <img src="/img/async/parallel-burgers/parallel-burgers-05.png" class="illustration">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 26.6K bytes - Viewed (0) -
docs/zh/docs/async.md
你和你的恋人一起去快餐店,你排队在后面,收银员从你前面的人接单。😍 <img src="/img/async/concurrent-burgers/concurrent-burgers-01.png" class="illustration"> 然后轮到你了,你为你的恋人和你选了两个非常豪华的汉堡。🍔🍔 <img src="/img/async/concurrent-burgers/concurrent-burgers-02.png" class="illustration"> 收银员对厨房里的厨师说了一些话,让他们知道他们必须为你准备汉堡(尽管他们目前正在为之前的顾客准备汉堡)。 <img src="/img/async/concurrent-burgers/concurrent-burgers-03.png" class="illustration"> 你付钱了。 💸 收银员给你轮到的号码。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 21.1K bytes - Viewed (0) -
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: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 21.9K bytes - Viewed (0) -
docs/em/docs/async.md
<img src="/img/async/concurrent-burgers/concurrent-burgers-01.png" class="illustration"> ⤴️ ⚫️ 👆 🔄, 👆 🥉 👆 ✔ 2️⃣ 📶 🎀 🍔 👆 🥰 & 👆. 👶 👶 <img src="/img/async/concurrent-burgers/concurrent-burgers-02.png" class="illustration"> 🏧 💬 🕳 🍳 👨🍳 👫 💭 👫 ✔️ 🏗 👆 🍔 (✋️ 👫 ⏳ 🏗 🕐 ⏮️ 👩💻). <img src="/img/async/concurrent-burgers/concurrent-burgers-03.png" class="illustration"> 👆 💸. 👶
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 18.7K bytes - Viewed (0) -
docs/ru/docs/async.md
burgers = get_burgers(2) ``` --- Если сторонняя библиотека требует вызывать её с ключевым словом `await`, необходимо писать *функции обработки пути* с использованием `async def`, например: ```Python hl_lines="2-3" @app.get('/burgers') async def read_burgers(): burgers = await get_burgers(2) return burgers ``` ### Технические подробности
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 39.9K bytes - Viewed (0) -
docs/pt/docs/async.md
burgers = get_burgers(2) ``` --- Então, se você está usando uma biblioteca que diz que você pode chamá-la com `await`, você precisa criar as *funções de operação de rota* com `async def`, como em: ```Python hl_lines="2 3" @app.get('/burgers') async def read_burgers(): burgers = await get_burgers(2) return burgers ``` ### Mais detalhes técnicos
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 22.2K bytes - Viewed (0) -
docs/ko/docs/async.md
```Python hl_lines="1" async def get_burgers(number: int): # Do some asynchronous stuff to create the burgers return burgers ``` ...`def`를 사용하는 대신: ```Python hl_lines="2" # This is not asynchronous def get_sequential_burgers(number: int): # Do some sequential stuff to create the burgers return burgers ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 26.7K bytes - Viewed (0)