- Sort Score
- Result 10 results
- Languages All
Results 501 - 510 of 862 for Main (0.03 sec)
-
docs/bn/docs/index.md
</div> <details markdown="1"> <summary>নির্দেশনা সম্পর্কে <code>uvicorn main:app --reload</code>...</summary> `uvicorn main:app` নির্দেশনাটি দ্বারা বোঝায়: - `main`: ফাইল `main.py` (পাইথন "মডিউল")। - `app`: `app = FastAPI()` লাইন দিয়ে `main.py` এর ভিতরে তৈরি করা অবজেক্ট। - `--reload`: কোড পরিবর্তনের পরে সার্ভার পুনরায় চালু করুন। এটি শুধুমাত্র ডেভেলপমেন্ট এর সময় ব্যবহার করুন। </details> ### এটা চেক করুন
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 30.2K bytes - Viewed (0) -
docs/hu/docs/index.md
``` </div> <details markdown="1"> <summary>A parancsról <code>uvicorn main:app --reload</code>...</summary> A `uvicorn main:app` parancs a következőre utal: * `main`: fájl `main.py` (a Python "modul"). * `app`: a `main.py`-ban a `app = FastAPI()` sorral létrehozott objektum. * `--reload`: kód változtatás esetén újra indítja a szervert. Csak fejlesztés közben használandó. </details> ### Ellenőrizd
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 20.2K bytes - Viewed (0) -
docs/pt/docs/index.md
``` </div> <details markdown="1"> <summary>Sobre o comando <code>uvicorn main:app --reload</code>...</summary> O comando `uvicorn main:app` se refere a: * `main`: o arquivo `main.py` (o "módulo" Python). * `app`: o objeto criado dentro de `main.py` com a linha `app = FastAPI()`. * `--reload`: faz o servidor recarregar após mudanças de código. Somente faça isso para desenvolvimento. </details> ### Verifique
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 18.6K bytes - Viewed (0) -
docs/es/docs/index.md
</div> <details markdown="1"> <summary>Sobre el comando <code>uvicorn main:app --reload</code>...</summary> El comando `uvicorn main:app` se refiere a: * `main`: el archivo `main.py` (el"modulo" de Python). * `app`: el objeto creado dentro de `main.py` con la línea `app = FastAPI()`. * `--reload`: hace que el servidor se reinicie después de cambios en el código. Esta opción solo debe ser usada en desarrollo. </details>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 19K bytes - Viewed (0) -
mockwebserver/src/test/java/mockwebserver3/internal/http2/Http2Server.kt
file.name.endsWith(".png") -> "image/png" else -> "text/plain" } } companion object { val logger: Logger = Logger.getLogger(Http2Server::class.java.name) @JvmStatic fun main(args: Array<String>) { if (args.size != 1 || args[0].startsWith("-")) { println("Usage: Http2Server <base directory>") return } val server = Http2Server(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 6.1K bytes - Viewed (0) -
cni/README.md
### Overview - [istio-cni Helm chart](../manifests/charts/istio-cni/templates) - `install-cni` daemonset - main function is to install and help the node CNI, but it is also a proper server and interacts with K8S, watching Pods for recovery. - `istio-cni-config` configmap with CNI plugin config to add to CNI plugin chained config
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 10.5K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/CacheResponse.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2K bytes - Viewed (0) -
samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/ClientAndServer.java
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Dec 24 03:46:30 UTC 2018 - 2.1K bytes - Viewed (0) -
docs/de/docs/advanced/sub-applications.md
```Python hl_lines="11 19" {!../../docs_src/sub_applications/tutorial001.py!} ``` ### Es in der automatischen API-Dokumentation betrachten Führen Sie nun `uvicorn` mit der Hauptanwendung aus. Wenn Ihre Datei `main.py` lautet, wäre das: <div class="termy"> ```console $ uvicorn main:app --reload <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.3K bytes - Viewed (0) -
docs/en/docs/advanced/additional-status-codes.md
It will use the default status code or the one you set in your *path operation*. ## Additional status codes If you want to return additional status codes apart from the main one, you can do that by returning a `Response` directly, like a `JSONResponse`, and set the additional status code directly.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:12:23 UTC 2024 - 1.9K bytes - Viewed (0)