- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 372 for Deployment (0.06 sec)
-
docs/pt/docs/tutorial/first-steps.md
``` </div> Em seguida, faça o deploy da sua aplicação: <div class="termy"> ```console $ fastapi deploy Deploying to FastAPI Cloud... ✅ Deployment successful! 🐔 Ready the chicken! Your app is ready at https://myapp.fastapicloud.dev ``` </div> É isso! Agora você pode acessar sua aplicação nessa URL. ✨
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 13.6K bytes - Viewed (0) -
docs/es/docs/tutorial/first-steps.md
You are logged in to FastAPI Cloud 🚀 ``` </div> Luego despliega tu app: <div class="termy"> ```console $ fastapi deploy Deploying to FastAPI Cloud... ✅ Deployment successful! 🐔 Ready the chicken! Your app is ready at https://myapp.fastapicloud.dev ``` </div> ¡Eso es todo! Ahora puedes acceder a tu app en esa URL. ✨
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 13.3K bytes - Viewed (0) -
docs/en/docs/_llm-test.md
* the type annotation * the type hint * the server worker * the Uvicorn worker * the Gunicorn Worker * the worker process * the worker class * the workload * the deployment * to deploy * the SDK * the software development kit * the `APIRouter` * the `requirements.txt` * the Bearer Token * the breaking change * the bug * the button * the callable
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Dec 11 14:48:47 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/de/docs/async.md
Wie Sie diese Parallelität in der Produktion erreichen, erfahren Sie im Abschnitt über [Deployment](deployment/index.md){.internal-link target=_blank}. ## `async` und `await` { #async-and-await }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Sep 20 15:10:09 UTC 2025 - 27.9K bytes - Viewed (0) -
cmd/bucket-replication-stats.go
if s.hasReplicationUsage() { return true } } return false } // ReplicationStats holds the global in-memory replication stats type ReplicationStats struct { // map of site deployment ID to site replication status // for site replication - maintain stats at global level srStats *SRStats // active worker stats workers *ActiveWorkerStat // queue stats cache qCache queueCache
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 13.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
## Notable Changes to Existing Behavior ### Deployments - ReplicaSets of paused Deployments are now scaled while the Deployment is paused. This is retroactive to existing Deployments. - When scaling a Deployment during a rollout, the ReplicaSets of all Deployments are now scaled proportionally based on the number of replicas they each have instead of only scaling the newest ReplicaSet.
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0) -
docs/en/docs/alternatives.md
The main web server to run **FastAPI** applications. You can also use the `--workers` command line option to have an asynchronous multi-process server. Check more details in the [Deployment](deployment/index.md){.internal-link target=_blank} section. /// ## Benchmarks and speed { #benchmarks-and-speed }
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Oct 11 17:48:49 UTC 2025 - 23.6K bytes - Viewed (0) -
docs/ru/docs/advanced/behind-a-proxy.md
Указав `--proxy-headers`, FastAPI сможет редиректить на корректный адрес. 😎 ``` https://mysuperapp.com/items/ ``` /// tip | Совет Если хотите узнать больше об HTTPS, смотрите руководство [О HTTPS](../deployment/https.md){.internal-link target=_blank}. /// ### Как работают пересылаемые заголовки прокси { #how-proxy-forwarded-headers-work }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 23.2K bytes - Viewed (0) -
docs/uk/docs/tutorial/query-params-str-validations.md
FastAPI додав підтримку `Annotated` (і почав рекомендувати його) у версії 0.95.0. Якщо у Вас старіша версія, під час використання `Annotated` можуть виникати помилки. Переконайтеся, що Ви [оновили версію FastAPI](../deployment/versions.md#upgrading-the-fastapi-versions){.internal-link target=_blank} до принаймні 0.95.1, перш ніж використовувати `Annotated`. /// ## Використання `Annotated` у типі параметра `q`Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri May 30 14:17:24 UTC 2025 - 26.1K bytes - Viewed (0) -
docs/zh/docs/async.md
并且,你也可以利用并行和多进程(让多个进程并行运行)的优点来处理与机器学习系统中类似的 **CPU 密集型** 工作。 这一点,再加上 Python 是**数据科学**、机器学习(尤其是深度学习)的主要语言这一简单事实,使得 **FastAPI** 与数据科学/机器学习 Web API 和应用程序(以及其他许多应用程序)非常匹配。 了解如何在生产环境中实现这种并行性,可查看此文 [Deployment](deployment/index.md){.internal-link target=_blank}。 ## `async` 和 `await` 现代版本的 Python 有一种非常直观的方式来定义异步代码。这使它看起来就像正常的"顺序"代码,并在适当的时候"等待"。 当有一个操作需要等待才能给出结果,且支持这个新的 Python 特性时,你可以编写如下代码: ```PythonRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 21.5K bytes - Viewed (0)