- Sort Score
- Result 10 results
- Languages All
Results 871 - 880 of 1,271 for vort (0.04 sec)
-
docs/em/docs/deployment/manually.md
...βοΈ π π π« π½. //// ## π π½ π π πͺ β€΄οΈ π π πΈ π π π βοΈ β π°, βοΈ π΅ `--reload` π, β : //// tab | Uvicorn <div class="termy"> ```console $ uvicorn main:app --host 0.0.0.0 --port 80 <span style="color: green;">INFO</span>: Uvicorn running on http://0.0.0.0:80 (Press CTRL+C to quit) ``` </div> //// //// tab | Hypercorn <div class="termy"> ```console
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 4.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/SubtypeTester.java
} } return null; } final void testAllDeclarations() throws Exception { checkState(method == null); Method[] methods = getClass().getMethods(); Arrays.sort( methods, new Comparator<Method>() { @Override public int compare(Method a, Method b) { return a.getName().compareTo(b.getName()); } });
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 19 19:24:36 UTC 2023 - 6.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataServiceTest.java
// wait for yellow status runner.ensureYellow(); System.setProperty(FesenClient.HTTP_ADDRESS, "localhost:" + runner.node().settings().get("http.port", "9201")); super.setUp(); } @Override public void tearDown() throws Exception { super.tearDown(); // close runner runner.close(); // delete all files
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 6.8K bytes - Viewed (0) -
docs/pt/docs/deployment/manually.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 20 11:10:02 UTC 2024 - 8.2K bytes - Viewed (0) -
docs/fr/docs/deployment/docker.md
```Dockerfile FROM python:3.7 RUN pip install fastapi uvicorn EXPOSE 80 COPY ./app /app CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] ``` ## CrΓ©er le code **FastAPI**. * CrΓ©er un rΓ©pertoire `app` et y entrer. * CrΓ©ez un fichier `main.py` avecΒ : ```Python from typing import Optional from fastapi import FastAPI
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/en/docs/img/deployment/https/https02.drawio
</mxCell> <mxCell id="36" value="<font face="Roboto" data-font-src="https://fonts.googleapis.com/css?family=Roboto" style="font-size: 24px">Port 443 (HTTPS)</font>" style="ellipse;whiteSpace=wrap;html=1;strokeColor=#000000;strokeWidth=3;" parent="1" vertex="1"> <mxGeometry x="330" y="680" width="170" height="120" as="geometry"/> </mxCell>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu May 12 00:06:16 UTC 2022 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
type: integer minimum: 0 exclusiveMinimum: false maximum: 100 exclusiveMaximum: false default: 20 example: 20 - name: sort in: query description: Sorted field name required: false schema: type: string example: score - name: fields.label in: query
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Connection.kt
* * * Server Name Indication (SNI) enables one IP address to negotiate secure connections for * multiple domain names. * * * Application Layer Protocol Negotiation (ALPN) enables the HTTPS port (443) to be used to * negotiate HTTP/2. * * Unfortunately, older HTTPS servers refuse to connect when such options are presented. Rather than
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 4.3K bytes - Viewed (0) -
docs/ko/docs/deployment/server-workers.md
```Python import uvicorn.workers.UvicornWorker ``` * `--bind`: ꡬλμ½μ΄ κ΄μ°°ν IPμ ν¬νΈλ₯Ό μλ―Έν©λλ€. μ½λ‘ (`:`)μ μ¬μ©νμ¬ IPμ ν¬νΈλ₯Ό ꡬλΆν©λλ€. * λ§μ½μ `--bind 0.0.0.0:80` (ꡬλμ½ μ΅μ ) λμ μ λΉμ½μ μ§μ μ€ννκ³ μΆλ€λ©΄ `--host 0.0.0.0`κ³Ό `--port 80`μ μ¬μ©ν΄μΌ ν©λλ€. μΆλ ₯μμ κ° νλ‘μΈμ€μ λν **PID** (process ID)λ₯Ό νμΈν μ μμ΅λλ€. (λ¨μν μ«μμ λλ€) μΆλ ₯ λ΄μ©: * ꡬλμ½ **νλ‘μΈμ€ 맀λμ **λ PID `19499`λ‘ μ€νλ©λλ€. (μ§μ μ€νν κ²½μ° μ«μκ° λ€λ₯Ό μ μμ΅λλ€) * λ€μμΌλ‘ `Listening at: http://0.0.0.0:80`μ μμν©λλ€.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 10.2K bytes - Viewed (0)