Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 642 for Port (0.02 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 Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. 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 Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

        void testContextInformation() {
            // Given
            Map<String, Object> initialContext = new HashMap<>();
            initialContext.put("host", "server.example.com");
            initialContext.put("port", 445);
    
            exception = new SmbOperationException(SmbOperationException.ErrorCode.ACCESS_DENIED, "Permission denied", null,
                    SmbOperationException.RetryPolicy.DEFAULT, initialContext);
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebAuthenticationBhv.java

                result.setParameters(DfTypeUtil.toString(source.get("parameters")));
                result.setPassword(DfTypeUtil.toString(source.get("password")));
                result.setPort(DfTypeUtil.toInteger(source.get("port")));
                result.setProtocolScheme(DfTypeUtil.toString(source.get("protocolScheme")));
                result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/hash/FarmHashFingerprint64Test.java

      private static long fingerprint(byte[] bytes, int length) {
        return HASH_FN.hashBytes(bytes, 0, length).asLong();
      }
    
      /**
       * Tests that the Java port of FarmHashFingerprint64 provides the same results on buffers up to
       * 800 bytes long as the C++ reference implementation.
       */
      public void testMultipleLengths() {
        int iterations = 800;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  6. mockwebserver/src/test/java/mockwebserver3/MockResponseSniTest.kt

            ).dns(dns)
            .build()
    
        server.enqueue(MockResponse())
    
        val call =
          client.newCall(
            Request(
              url = "https://url-host.com:${server.port}/".toHttpUrl(),
              headers = headersOf("Host", "header-host"),
            ),
          )
        val response = call.execute()
        assertThat(response.isSuccessful).isTrue()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  7. docs/en/docs/contributing.md

    ```console
    $ fastapi dev tutorial001.py
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    as Uvicorn by default will use the port `8000`, the documentation on port `8008` won't clash.
    
    ### Translations
    
    /// warning | Attention
    
    **Update on Translations**
    
    We're updating the way we handle documentation translations.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Jul 26 11:35:42 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  8. src/main/assemblies/files/service.bat

    CALL "%FESS_HOME%\bin\fess.in.bat"
    
    rem thread stack size
    set JVM_SS=256
    
    set FESS_PARAMS=-Dfess;-Dfess.home="%FESS_HOME%";-Dfess.es.dir="%SEARCH_ENGINE_HOME%";-Dfess.home="%FESS_HOME%";-Dfess.context.path="/";-Dfess.port=8080;-Dfess.webapp.path="%FESS_HOME%\app";-Dfess.temp.path="%FESS_HOME%\temp";-Dfess.log.name="%APP_NAME%";-Dfess.log.path="%FESS_HOME%\logs";-Dfess.log.level=warn;-Dlasta.env=web;-Dtomcat.config.path=tomcat_config.properties
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/hash/Fingerprint2011Test.java

      private static long fingerprint(byte[] bytes, int length) {
        return HASH_FN.hashBytes(bytes, 0, length).asLong();
      }
    
      /**
       * Tests that the Java port of Fingerprint2011 provides the same results on buffers up to 800
       * bytes long as the original implementation in C++. See http://cl/106539598
       */
      public void testMultipleLengths() {
        int iterations = 800;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  10. 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 Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Jan 09 20:41:07 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top