Search Options

Results per page
Sort
Preferred Languages
Advance

Results 871 - 880 of 1,271 for vort (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. docs/pt/docs/deployment/manually.md

    <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>
    
    /// note | "Nota"
    
    O comando `uvicorn main:app` refere-se a:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Sep 20 11:10:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. 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)
  6. docs/en/docs/img/deployment/https/https02.drawio

                    </mxCell>
                    <mxCell id="36" value="&lt;font face=&quot;Roboto&quot; data-font-src=&quot;https://fonts.googleapis.com/css?family=Roboto&quot; style=&quot;font-size: 24px&quot;&gt;Port 443 (HTTPS)&lt;/font&gt;" 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)
  7. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                for (final File file : jarFiles) {
                    list.add(getArtifactFromFileName(artifactType, file.getName()));
                }
                list.sort(Comparator.comparing(Artifact::getName));
                return list.toArray(new Artifact[list.size()]);
            }
    
            final File[] jarFiles = ResourceUtil.getPluginJarFiles(artifactType.getId());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 01:47:10 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top