Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 460 for 8100 (0.19 seconds)

  1. 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)
  2. docs/ru/docs/advanced/wsgi.md

    А всё остальное будет обрабатываться **FastAPI**.
    
    Если вы запустите это и перейдёте по [http://localhost:8000/v1/](http://localhost:8000/v1/), вы увидите HTTP‑ответ от Flask:
    
    ```txt
    Hello, World from Flask!
    ```
    
    А если вы перейдёте по [http://localhost:8000/v2](http://localhost:8000/v2), вы увидите HTTP‑ответ от FastAPI:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 2.2K 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/pt/docs/advanced/wsgi.md

    E o resto será manipulado pelo **FastAPI**.
    
    Se você rodar a aplicação e ir até [http://localhost:8000/v1/](http://localhost:8000/v1/), você verá o retorno do Flask:
    
    ```txt
    Hello, World from Flask!
    ```
    
    E se você for até [http://localhost:8000/v2](http://localhost:8000/v2), você verá o retorno do FastAPI:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  6. 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)
  7. docs/de/docs/advanced/wsgi.md

    Wenn Sie das ausführen und auf [http://localhost:8000/v1/](http://localhost:8000/v1/) gehen, sehen Sie die <abbr title="Response – Antwort: Daten, die der Server zum anfragenden Client zurücksendet">Response</abbr> von Flask:
    
    ```txt
    Hello, World from Flask!
    ```
    
    Und wenn Sie auf [http://localhost:8000/v2](http://localhost:8000/v2) gehen, sehen Sie die Response von FastAPI:
    
    ```JSON
    {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java

                processor.setSearcher(new TestSearcher(100));
                processor.register(new SlowSearcher(100)); // 100ms delay
                processor.init();
    
                // Should complete even with slow searcher
                final long startTime = System.currentTimeMillis();
                final List<Map<String, Object>> results = processor.search("*", new TestSearchRequestParams(0, 10, 0), OptionalThing.empty());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  9. docs/ja/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 14:07:17 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  10. docs/fr/docs/advanced/wsgi.md

    Et le reste sera géré par **FastAPI**.
    
    Si vous l'exécutez et allez à [http://localhost:8000/v1/](http://localhost:8000/v1/) vous verrez la réponse de Flask :
    
    ```txt
    Hello, World from Flask!
    ```
    
    Et si vous allez à [http://localhost:8000/v2](http://localhost:8000/v2) vous verrez la réponse de FastAPI :
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 1.6K bytes
    - Click Count (0)
Back to Top