- Sort Score
- Num 10 results
- Language All
Results 151 - 160 of 1,172 for Lain (0.02 seconds)
-
src/main/resources/fess_env_crawler.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) -
src/main/resources/fess_env_thumbnail.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 Feb 12 13:38:57 GMT 2018 - 2.2K bytes - Click Count (0) -
docs/ko/docs/fastapi-cli.md
이 `entrypoint`는 `fastapi` 명령어에 다음과 같이 앱을 임포트하라고 알려줍니다: ```python from main import app ``` 코드 구조가 다음과 같다면: ``` . ├── backend │ ├── main.py │ ├── __init__.py ``` `entrypoint`를 다음과 같이 설정합니다: ```toml [tool.fastapi] entrypoint = "backend.main:app" ``` 이는 다음과 동일합니다: ```python from backend.main import app ``` ### 경로와 함께 `fastapi dev` { #fastapi-dev-with-path }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 6.5K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java
// /tmp/junit-16591192886395443631/.m2/extensions.xml:3 // [main] WARNING org.apache.maven.cling.invoker.PlexusContainerCapsuleFactory - // [main] WARNING org.apache.maven.cling.invoker.PlexusContainerCapsuleFactory - Order of core extensions // precedence is project > user > installation. Selected extensions are: // [main] WARNING org.apache.maven.cling.invoker.PlexusContainerCapsuleFactory - *Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Oct 21 12:17:55 GMT 2025 - 9.3K bytes - Click Count (0) -
docs/tr/docs/advanced/async-tests.md
``` . ├── app │ ├── __init__.py │ ├── main.py │ └── test_main.py ``` `main.py` dosyası şöyle olur: {* ../../docs_src/async_tests/app_a_py310/main.py *} `test_main.py` dosyasında `main.py` için testler yer alır, artık şöyle görünebilir: {* ../../docs_src/async_tests/app_a_py310/test_main.py *} ## Çalıştırma { #run-it }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4.2K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/error/notFound.jsp
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 1.5K bytes - Click Count (0) -
docs/uk/docs/tutorial/first-steps.md
```python from main import app ``` Якщо структура вашого коду виглядала б так: ``` . ├── backend │ ├── main.py │ ├── __init__.py ``` Тоді ви б задали `entrypoint` як: ```toml [tool.fastapi] entrypoint = "backend.main:app" ``` що було б еквівалентно: ```python from backend.main import app ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 18.7K bytes - Click Count (0) -
docs/fr/docs/advanced/settings.md
Par exemple, vous pourriez avoir un fichier `config.py` avec : {* ../../docs_src/settings/app01_py310/config.py *} Puis l'utiliser dans un fichier `main.py` : {* ../../docs_src/settings/app01_py310/main.py hl[3,11:13] *} /// tip | AstuceCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 12.3K bytes - Click Count (0) -
docs/ko/docs/environment-variables.md
//// tab | Linux, macOS, Windows Bash <div class="termy"> ```console // 여기서는 아직 환경 변수를 설정하지 않습니다 $ python main.py // 환경 변수를 설정하지 않았으므로 기본값이 사용됩니다 Hello World from Python // 하지만 먼저 환경 변수를 생성하면 $ export MY_NAME="Wade Wilson" // 그리고 프로그램을 다시 실행하면 $ python main.py // 이제 환경 변수를 읽을 수 있습니다 Hello Wade Wilson from Python ``` </div> ////
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 9K bytes - Click Count (0) -
docs/zh/docs/environment-variables.md
然后你可以调用这个 Python 程序: //// tab | Linux, macOS, Windows Bash <div class="termy"> ```console // 这里我们还没有设置环境变量 $ python main.py // 因为我们没有设置环境变量,所以我们得到的是默认值 Hello World from Python // 但是如果我们事先创建过一个环境变量 $ export MY_NAME="Wade Wilson" // 然后再次调用程序 $ python main.py // 现在就可以读取到环境变量了 Hello Wade Wilson from Python ``` </div> //// //// tab | Windows PowerShell
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 7.8K bytes - Click Count (0)