- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 690 for Lain (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/de/docs/advanced/settings.md
Sie könnten beispielsweise eine Datei `config.py` haben mit: {* ../../docs_src/settings/app01_py310/config.py *} Und dann verwenden Sie diese in einer Datei `main.py`: {* ../../docs_src/settings/app01_py310/main.py hl[3,11:13] *} /// tip | Tipp Sie benötigen außerdem eine Datei `__init__.py`, wie in [Größere Anwendungen – mehrere Dateien](../tutorial/bigger-applications.md) gesehen. ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 12.5K bytes - Click Count (0) -
docs/ja/docs/deployment/manually.md
``` </div> /// note | 備考 `uvicorn main:app` というコマンドは次を指します: * `main`: ファイル `main.py`(Python の「モジュール」)。 * `app`: `main.py` 内で `app = FastAPI()` により作成されたオブジェクト。 これは次と等価です: ```Python from main import app ``` /// 他の ASGI サーバープログラムでも同様のコマンドがあり、詳細はそれぞれのドキュメントを参照してください。 /// warning | 注意
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 7.8K bytes - Click Count (0) -
docs/uk/docs/deployment/docker.md
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # (1)! COPY ./main.py /code/ # (2)! CMD ["fastapi", "run", "main.py", "--port", "80"] ``` 1. Скопіюйте файл `main.py` безпосередньо у директорію `/code` (без будь-якої директорії `./app`). 2. Використовуйте `fastapi run`, щоб обслуговувати ваш застосунок з одного файлу `main.py`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 44.2K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/async-tests.md
作為簡單範例,讓我們考慮與[更大型的應用](../tutorial/bigger-applications.md)與[測試](../tutorial/testing.md)中描述的類似檔案結構: ``` . ├── app │ ├── __init__.py │ ├── main.py │ └── test_main.py ``` 檔案 `main.py` 會是: {* ../../docs_src/async_tests/app_a_py310/main.py *} 檔案 `test_main.py` 會包含針對 `main.py` 的測試,現在可能像這樣: {* ../../docs_src/async_tests/app_a_py310/test_main.py *} ## 執行 { #run-it } 如常執行測試: <div class="termy">Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 3.5K bytes - Click Count (0) -
docs/en/docs/advanced/index.md
# Advanced User Guide { #advanced-user-guide } ## Additional Features { #additional-features } The main [Tutorial - User Guide](../tutorial/index.md) should be enough to give you a tour through all the main features of **FastAPI**. In the next sections you will see other options, configurations, and additional features. /// tip The next sections are **not necessarily "advanced"**.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 757 bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ProjectScope.java
* * @since 4.0.0 */ @Experimental @Immutable @SuppressWarnings("checkstyle:InterfaceIsType") public interface ProjectScope extends ExtensibleEnum { /** * Main scope. */ ProjectScope MAIN = projectScope("main"); /** * Test scope. */ ProjectScope TEST = projectScope("test");Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Feb 05 09:42:51 GMT 2024 - 1.8K bytes - Click Count (0) -
docs/en/docs/tutorial/testing.md
Let's say you have a file structure as described in [Bigger Applications](bigger-applications.md): ``` . ├── app │ ├── __init__.py │ └── main.py ``` In the file `main.py` you have your **FastAPI** app: {* ../../docs_src/app_testing/app_a_py310/main.py *} ### Testing file { #testing-file }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 5.7K bytes - Click Count (0) -
src/main/resources/fess_env_suggest.properties
# ------ # Does it send mock mail? (true: no send actually, logging only) mail.send.mock = false # SMTP server settings for main: host:port mail.smtp.server.main.host.and.port = localhost:25 # The prefix of subject to show test environment or not mail.subject.test.prefix = # The common return path of all mail mail.return.path = root@localhost
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 29 07:34:32 GMT 2018 - 2.2K bytes - Click Count (0) -
docs/fr/docs/deployment/docker.md
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # (1)! COPY ./main.py /code/ # (2)! CMD ["fastapi", "run", "main.py", "--port", "80"] ``` 1. Copier le fichier `main.py` directement dans le répertoire `/code` (sans répertoire `./app`). 2. Utiliser `fastapi run` pour servir votre application dans le fichier unique `main.py`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 32.3K bytes - Click Count (0) -
CLAUDE.md
src/main/resources/ ├── fess_config.properties # Main configuration ├── app.xml, fess.xml # DI configuration ├── fess_*.xml # Feature-specific DI ├── fess_label_*.properties # UI labels (i18n) ├── fess_message_*.properties # Validation messages (i18n) └── fess_indices/ # OpenSearch index mappings src/main/webapp/WEB-INF/view/ # JSP templates
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 09:48:10 GMT 2026 - 7.8K bytes - Click Count (0)