- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 1,172 for Lain (0.1 seconds)
-
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) -
docs/de/docs/environment-variables.md
```console // Hier setzen wir die Umgebungsvariable noch nicht $ python main.py // Da wir die Umgebungsvariable nicht gesetzt haben, erhalten wir den Defaultwert Hello World from Python // Aber wenn wir zuerst eine Umgebungsvariable erstellen $ export MY_NAME="Wade Wilson" // Und dann das Programm erneut aufrufen $ python main.py // Jetzt kann es die Umgebungsvariable lesen Hello Wade Wilson from Python
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/zh/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 17:06:37 GMT 2026 - 6.7K bytes - Click Count (0) -
docs/ko/docs/tutorial/testing.md
``` . ├── app │ ├── __init__.py │ └── main.py ``` `main.py` 파일 안에 **FastAPI** app 을 만들었습니다: {* ../../docs_src/app_testing/app_a_py310/main.py *} ### 테스트 파일 { #testing-file } 테스트를 위해 `test_main.py`라는 파일을 생성할 수 있습니다. 이 파일은 동일한 Python 패키지(즉, `__init__.py` 파일이 있는 동일한 디렉터리)에 위치할 수 있습니다. ``` hl_lines="5" . ├── app │ ├── __init__.py │ ├── main.py │ └── test_main.py ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 6.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java
Set<DependencyScope> dependencyScopes(); PathScope MAIN_COMPILE = pathScope( "main-compile", ProjectScope.MAIN, DependencyScope.COMPILE_ONLY, DependencyScope.COMPILE, DependencyScope.PROVIDED); PathScope MAIN_RUNTIME = pathScope("main-runtime", ProjectScope.MAIN, DependencyScope.COMPILE, DependencyScope.RUNTIME); PathScope TEST_COMPILE = pathScope(
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 10 20:52:34 GMT 2024 - 2.9K bytes - Click Count (0) -
docs/uk/docs/deployment/manually.md
``` </div> /// note | Примітка Команда `uvicorn main:app` означає: * `main`: файл `main.py` (Python «модуль»). * `app`: об'єкт, створений у `main.py` рядком `app = FastAPI()`. Це еквівалентно: ```Python from main import app ``` /// Кожна альтернативна ASGI-серверна програма матиме подібну команду; читайте більше в їхній документації.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 9.1K bytes - Click Count (0) -
docs/ru/docs/advanced/async-tests.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 }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 6.2K 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)