- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 242 for virtual (0.44 sec)
-
docs/pt/docs/deployment/concepts.md
### Em um servidor remoto Ao configurar um servidor remoto (um servidor em nuvem, uma máquina virtual, etc.), a coisa mais simples que você pode fazer é usar `fastapi run` (que usa Uvicorn) ou algo semelhante, manualmente, da mesma forma que você faz ao desenvolver localmente. E funcionará e será útil **durante o desenvolvimento**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 19.7K bytes - Viewed (0) -
docs/zh-hant/docs/environment-variables.md
系統會在 `C:\opt\custompython\bin\python` 中**找到** `python` 程式並執行它。 這大致等同於輸入以下指令: <div class="termy"> ```console $ C:\opt\custompython\bin\python ``` </div> //// 當學習[虛擬環境](virtual-environments.md)時,這些資訊將會很有用。 ## 結論 透過這個教學,你應該對**環境變數**是什麼以及如何在 Python 中使用它們有了基本的了解。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 12:17:55 UTC 2024 - 8K bytes - Viewed (0) -
docs/es/docs/deployment/concepts.md
### En un Servidor Remoto Cuando configuras un servidor remoto (un servidor en la nube, una máquina virtual, etc.) lo más sencillo que puedes hacer es usar `fastapi run` (que utiliza Uvicorn) o algo similar, manualmente, de la misma manera que lo haces al desarrollar localmente. Y funcionará y será útil **durante el desarrollo**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
/** * Permissions required to access documents from this configuration. */ @CustomSize(maxKey = "form.admin.max.input.size") public String permissions; /** * Virtual host names for this web configuration. */ @CustomSize(maxKey = "form.admin.max.input.size") public String virtualHosts; /** * The sort order for this web configuration. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
cmd/handler-utils.go
} } } } // Returns "/bucketName/objectName" for path-style or virtual-host-style requests. func getResource(path string, host string, domains []string) (string, error) { if len(domains) == 0 { return path, nil } // If virtual-host-style is enabled construct the "resource" properly. xhost, err := xnet.ParseHost(host) if err != nil { return "", err }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.3K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* Default sort order for search results. * Defines how search results are ordered when no specific sort is requested. */ @Size(max = 1000) public String defaultSortValue; /** * Virtual host configuration for multi-tenant setups. * Allows different search configurations based on the request host. */ @Size(max = 10000) public String virtualHostValue; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/request-forms.md
# 폼 데이터 JSON 대신 폼 필드를 받아야 하는 경우 `Form`을 사용할 수 있습니다. /// info | 정보 폼을 사용하려면, 먼저 <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>를 설치하세요. [가상 환경](../virtual-environments.md){.internal-link target=_blank}을 생성하고 활성화한 다음, 아래와 같이 설치할 수 있습니다: ```console $ pip install python-multipart ``` /// ## `Form` 임포트하기 `fastapi`에서 `Form`을 임포트합니다:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 12:42:55 UTC 2024 - 3K bytes - Viewed (0) -
docs/en/docs/index.md
## Installation { #installation } Create and activate a <a href="https://fastapi.tiangolo.com/virtual-environments/" class="external-link" target="_blank">virtual environment</a> and then install FastAPI: <div class="termy"> ```console $ pip install "fastapi[standard]" ---> 100% ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.3K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
### Install `pydantic-settings` { #install-pydantic-settings } First, make sure you create your [virtual environment](../virtual-environments.md){.internal-link target=_blank}, activate it, and then install the `pydantic-settings` package: <div class="termy"> ```console $ pip install pydantic-settings ---> 100% ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
docs/ru/docs/advanced/websockets.md
Вы можете использовать <a href="https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API" class="external-link" target="_blank">веб-сокеты</a> в **FastAPI**. ## Установка `WebSockets` Убедитесь, что [виртуальная среда](../virtual-environments.md){.internal-link target=_blank} создана, активируйте её и установите `websockets`: <div class="termy"> ```console $ pip install websockets ---> 100% ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Feb 03 13:33:39 UTC 2025 - 8.3K bytes - Viewed (0)