- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 1,341 for mein (0.03 sec)
-
manifests/addons/dashboards/lib/g.libsonnet
import 'github.com/grafana/grafonnet/gen/grafonnet-latest/main.libsonnet'...
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jun 04 18:05:06 UTC 2024 - 74 bytes - Viewed (0) -
docs/zh/docs/deployment/server-workers.md
``` </div> 让我们看看每个选项的含义: * `main:app`:这与 Uvicorn 使用的语法相同,`main` 表示名为"`main`"的 Python 模块,因此是文件 `main.py`。 `app` 是 **FastAPI** 应用程序的变量名称。 * 你可以想象 `main:app` 相当于一个 Python `import` 语句,例如: ```Python from main import app ``` * 因此,`main:app` 中的冒号相当于 `from main import app` 中的 Python `import` 部分。 * `--workers`:要使用的worker进程数量,每个进程将运行一个 Uvicorn worker进程,在本例中为 4 个worker进程。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8.7K bytes - Viewed (0) -
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) -
docs/de/docs/deployment/manually.md
Es gibt 3 Hauptalternativen: * <a href="https://www.uvicorn.org/" class="external-link" target="_blank">Uvicorn</a>: ein hochperformanter ASGI-Server. * <a href="https://hypercorn.readthedocs.io/" class="external-link" target="_blank">Hypercorn</a>: ein ASGI-Server, der unter anderem mit HTTP/2 und Trio kompatibel ist.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 5.3K bytes - Viewed (0) -
docs/en/docs/deployment/versions.md
If you use a `requirements.txt` file you could specify the version with: ```txt fastapi[standard]==0.112.0 ``` that would mean that you would use exactly the version `0.112.0`. Or you could also pin it with: ```txt fastapi[standard]>=0.112.0,<0.113.0 ``` that would mean that you would use the versions `0.112.0` or above, but less than `0.113.0`, for example, a version `0.112.2` would still be accepted.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 25 02:44:06 UTC 2024 - 3.4K 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)