- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 840 for MAIN (0.03 sec)
-
fess-crawler/src/test/resources/extractor/program/test.cpp
/* Test Code */ #include <sdtio.h> int main(void) { printf("テスト");
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sun Oct 11 02:16:55 UTC 2015 - 81 bytes - Viewed (0) -
buildscripts/cross-compile.sh
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Dec 19 01:08:22 UTC 2023 - 958 bytes - Viewed (0) -
docs/ja/docs/tutorial/testing.md
実際のアプリケーションでは、おそらくテストを別のファイルに保存します。 また、**FastAPI** アプリケーションは、複数のファイル/モジュールなどで構成されている場合もあります。 ### **FastAPI** アプリファイル **FastAPI** アプリに `main.py` ファイルがあるとします: ```Python {!../../docs_src/app_testing/main.py!} ``` ### テストファイル 次に、テストを含む `test_main.py` ファイルを作成し、`main` モジュール (`main.py`) から `app` をインポートします: ```Python {!../../docs_src/app_testing/test_main.py!} ``` ## テスト: 例の拡張
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.8K bytes - Viewed (0) -
misc/cgo/gmp/fib.go
//go:build ignore // Compute Fibonacci numbers with two goroutines // that pass integers back and forth. No actual // concurrency, just threads and synchronization // and foreign code on multiple pthreads. package main import ( big "." "runtime" ) func fibber(c chan *big.Int, out chan string, n int64) { // Keep the fibbers in dedicated operating system // threads, so that this program tests coordination
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Apr 10 22:32:35 UTC 2023 - 919 bytes - Viewed (0) -
.github/labeler.yml
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 31 10:18:37 UTC 2024 - 892 bytes - Viewed (0) -
.github/actions/notify-translations/Dockerfile
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Sep 28 19:51:39 UTC 2023 - 138 bytes - Viewed (0) -
docs/en/docs/deployment/server-workers.md
```console $ <pre> <font color="#4E9A06">fastapi</font> run --workers 4 <u style="text-decoration-style:single">main.py</u> <font color="#3465A4">INFO </font> Using path <font color="#3465A4">main.py</font> <font color="#3465A4">INFO </font> Resolved absolute path <font color="#75507B">/home/user/code/awesomeapp/</font><font color="#AD7FA8">main.py</font>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Sep 18 16:09:57 UTC 2024 - 8.7K bytes - Viewed (0) -
docs/uk/docs/index.md
``` </div> <details markdown="1"> <summary>Про команди <code>uvicorn main:app --reload</code>...</summary> Команда `uvicorn main:app` посилається на: * `main`: файл `main.py` ("Модуль" Python). * `app`: об’єкт створений усередині `main.py` рядком `app = FastAPI()`. * `--reload`: перезапускає сервер після зміни коду. Використовуйте виключно для розробки. </details> ### Перевірте
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 24.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/error/badRequest.jsp
rel="stylesheet" type="text/css" /> </head> <body class="error"> <jsp:include page="../header.jsp" /> <main class="container"> <div class="text-center"> <h2> <la:message key="labels.request_error_title" /> </h2> <div class="errormessage"><la:message key="labels.bad_request" /></div> </div> </main> <jsp:include page="../footer.jsp" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/resources/fess_env_web.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
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 2.2K bytes - Viewed (0)