- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 773 for rain (0.03 sec)
-
samples/guide/src/main/java/okhttp3/recipes/Authenticate.java
if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); System.out.println(response.body().string()); } } public static void main(String... args) throws Exception { new Authenticate().run(); }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 1.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/HttpsServer.java
.url(server.url("/")) .build()); Response response = call.execute(); System.out.println(response.handshake().tlsVersion()); } public static void main(String... args) throws Exception { new HttpsServer().run(); }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 02 14:04:37 UTC 2023 - 2.1K bytes - Viewed (0) -
docs/em/docs/tutorial/debugging.md
๐ฅ โ โซ๏ธ ๐ช ๐: <img src="/img/tutorial/debugging/image01.png"> --- ๐ฅ ๐ โ๏ธ ๐, ๐ ๐ช: * ๐ "๐" ๐ฃ. * ๐ ๐ "โน...". * โคด๏ธ ๐ ๐ฃ ๐ฆ ๐. * ๐ ๐ โน (๐ ๐ผ, `main.py`). โซ๏ธ ๐ โคด๏ธ โถ๏ธ ๐ฝ โฎ๏ธ ๐ **FastAPI** ๐, โ๏ธ ๐ 0๏ธโฃ, โ๏ธ. ๐ฅ โ โซ๏ธ ๐ช ๐:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java
* one specific module. Used for compilation and execution among others. * * <h4>Context-sensitive interpretation</h4> * This path type makes sense only when a main module is added on the module-path by another dependency. * In no main module is found, the patch dependency may be added on the class-path or module-path * depending on whether {@link #CLASSES} or {@link #MODULES} is present. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon May 13 09:53:45 UTC 2024 - 15K bytes - Viewed (0) -
docs/de/docs/advanced/websockets.md
```Python hl_lines="48-52" {!../../docs_src/websockets/tutorial001.py!} ``` Sie kรถnnen Binรคr-, Text- und JSON-Daten empfangen und senden. ## Es ausprobieren Wenn Ihre Datei `main.py` heiรt, fรผhren Sie Ihre Anwendung so aus: <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)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.9K bytes - Viewed (0) -
docs/id/docs/tutorial/index.md
## Jalankan kode Semua blok-blok kode dapat disalin dan digunakan langsung (Mereka semua sebenarnya adalah file python yang sudah teruji). Untuk menjalankan setiap contoh, salin kode ke file `main.py`, dan jalankan `uvicorn` dengan: <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)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/PerCallSettings.java
System.out.println("Response 2 succeeded: " + response); } catch (IOException e) { System.out.println("Response 2 failed: " + e); } } public static void main(String... args) throws Exception { new PerCallSettings().run(); }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun May 22 01:29:42 UTC 2016 - 1.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/PreemptiveAuth.java
if (!response.isSuccessful()) throw new IOException("Unexpected code " + response); System.out.println(response.body().string()); } } public static void main(String... args) throws Exception { new PreemptiveAuth().run(); } static final class BasicAuthInterceptor implements Interceptor { private final String credentials; private final String host;
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Nov 05 07:46:46 UTC 2018 - 2.1K bytes - Viewed (0) -
docs/ko/docs/index.md
``` </div> <details markdown="1"> <summary><code>uvicorn main:app --reload</code> ๋ช ๋ น์ ๊ดํ์ฌ...</summary> ๋ช ๋ น `uvicorn main:app`์ ๋ค์์ ๋ํ๋ ๋๋ค: * `main`: `main.py` ํ์ผ (ํ์ด์ฌ "๋ชจ๋"). * `app`: the object created inside of `main.py` with the line `app = FastAPI()`. * `--reload`: ์ฝ๋๊ฐ ๋ณ๊ฒฝ๋ ํ ์๋ฒ ์ฌ์์ํ๊ธฐ. ๊ฐ๋ฐํ๊ฒฝ์์๋ง ์ฌ์ฉํ์ญ์์ค. </details> ### ํ์ธํ๊ธฐ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 16 16:50:01 UTC 2024 - 19.4K bytes - Viewed (0) -
docs/en/docs/deployment/concepts.md
You can use simple tools like `htop` to see the CPU and RAM used in your server or the amount used by each process. Or you can use more complex monitoring tools, which may be distributed across servers, etc. ## Recap
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Sep 18 16:09:57 UTC 2024 - 17.8K bytes - Viewed (0)