Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 178 for 8070 (0.02 seconds)

  1. src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java

            assertEquals("http://127.0.0.1:8080/path", IpAddressUtil.buildUrl("http", ipv4, 8080, "path"));
    
            // IPv4 with port, no path
            assertEquals("http://127.0.0.1:8080", IpAddressUtil.buildUrl("http", ipv4, 8080, ""));
            assertEquals("http://127.0.0.1:8080", IpAddressUtil.buildUrl("http", ipv4, 8080, null));
    
            // IPv4 without port
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  2. docs/tr/docs/advanced/wsgi.md

    Geri kalanı ise **FastAPI** tarafından işlenecektir.
    
    Eğer uygulamanızı çalıştırıp [http://localhost:8000/v1/](http://localhost:8000/v1/) adresine giderseniz, Flask'tan gelen response'u göreceksiniz:
    
    ```txt
    Hello, World from Flask!
    ```
    
    Ve eğer [http://localhost:8000/v2](http://localhost:8000/v2) adresine giderseniz, FastAPI'den gelen response'u göreceksiniz:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  3. docs/en/docs/advanced/wsgi.md

    And the rest will be handled by **FastAPI**.
    
    If you run it and go to [http://localhost:8000/v1/](http://localhost:8000/v1/) you will see the response from Flask:
    
    ```txt
    Hello, World from Flask!
    ```
    
    And if you go to [http://localhost:8000/v2](http://localhost:8000/v2) you will see the response from FastAPI:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/advanced/wsgi.md

    ///
    
    ## 試試看 { #check-it }
    
    現在,位於路徑 `/v1/` 底下的所有請求都會由 Flask 應用處理。
    
    其餘則由 **FastAPI** 處理。
    
    如果你啟動它並前往 [http://localhost:8000/v1/](http://localhost:8000/v1/),你會看到來自 Flask 的回應:
    
    ```txt
    Hello, World from Flask!
    ```
    
    如果你前往 [http://localhost:8000/v2](http://localhost:8000/v2),你會看到來自 FastAPI 的回應:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  5. docs/zh/docs/advanced/wsgi.md

    ///
    
    ## 检查 { #check-it }
    
    现在,所有定义在 `/v1/` 路径下的请求将会被 Flask 应用处理。
    
    其余的请求则会被 **FastAPI** 处理。
    
    如果你运行它并访问 [http://localhost:8000/v1/](http://localhost:8000/v1/),你将会看到由 Flask 返回的响应:
    
    ```txt
    Hello, World from Flask!
    ```
    
    如果你访问 [http://localhost:8000/v2](http://localhost:8000/v2),你将会看到由 FastAPI 返回的响应:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java

            url = "http://www.foo.com:8080/";
            result = "http://www.foo.com:8080/";
            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://www.bar.com/";
            result = "http://www.bar.com/";
            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://www.bar.com:8080/";
            result = "http://www.bar.com:8080/";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  7. docs/ru/docs/tutorial/cors.md

    Чтобы это работало, у бэкенда на `:80` должен быть список "разрешённых источников" ("allowed origins").
    
    В таком случае этот список должен содержать `http://localhost:8080`, чтобы фронтенд на `:8080` работал корректно.
    
    ## Подстановочный символ "*" { #wildcards }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 8.5K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/cors.md

    Bunu sağlayabilmek için `:80`-backend’in bir "allowed origins" listesi olmalıdır.
    
    Bu örnekte `:8080`-frontend’in doğru çalışması için listede `http://localhost:8080` bulunmalıdır.
    
    ## Wildcard'lar { #wildcards }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  9. docs/uk/docs/advanced/wsgi.md

    А решта - **FastAPI**.
    
    Якщо ви запустите це й перейдете на [http://localhost:8000/v1/](http://localhost:8000/v1/), ви побачите відповідь від Flask:
    
    ```txt
    Hello, World from Flask!
    ```
    
    А якщо ви перейдете на [http://localhost:8000/v2](http://localhost:8000/v2), ви побачите відповідь від FastAPI:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  10. README.md

    ### Browser UI
    
    - Search UI: http://localhost:8080/
    
    ![Search UI](https://fess.codelibs.org/_images/fess_search_result1.png)
    
    - Admin UI: http://localhost:8080/admin/ (default username/password is admin/admin)
    
    ![Admin UI](https://fess.codelibs.org/_images/fess_admin_dashboard.png)
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 14 03:19:23 GMT 2026
    - 7.8K bytes
    - Click Count (2)
Back to Top