Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 641 - 650 of 950 for _infop (0.07 seconds)

  1. docs/zh-hant/docs/alternatives.md

    API 所需的另一項大功能,是從傳入請求中<dfn title="讀取並轉換為 Python 資料">解析</dfn>資料。
    
    Webargs 是在多個框架(包含 Flask)之上提供該功能的工具。
    
    它底層使用 Marshmallow 來做資料驗證,且由同一群開發者建立。
    
    它是一個很棒的工具,在有 **FastAPI** 之前我也經常使用。
    
    /// info
    
    Webargs 由與 Marshmallow 相同的開發者創建。
    
    ///
    
    /// check | 啟發 **FastAPI**
    
    自動驗證傳入請求資料。
    
    ///
    
    ### [APISpec](https://apispec.readthedocs.io/en/stable/) { #apispec }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 20K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    deleteIndex(backupIndex);
    
                    logger.info("[Rebuild] Completed rebuild for {}", indexName);
                } catch (final Exception e) {
                    logger.warn("[Rebuild] Failed to rebuild index: {}", indexName, e);
                    if (existsIndex(backupIndex)) {
                        logger.info("[Rebuild] Backup index {} remains for recovery", backupIndex);
                    }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  3. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping.jsp

                                <c:if test="${charMappingPager.allRecordCount == 0}">
                                    <div class="row top10"><div class="col-sm-12 empty-list-placeholder"><i class="fa fa-info-circle text-primary" aria-hidden="true"></i>
                                            <la:message key="labels.list_could_not_find_crud_table"/>
                                        </div>
                                    </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/server-sent-events.md

    Esto es similar a [Stream JSON Lines](stream-json-lines.md), pero usa el formato `text/event-stream`, que los navegadores soportan de forma nativa con la [`EventSource` API](https://developer.mozilla.org/en-US/docs/Web/API/EventSource).
    
    /// info | Información
    
    Añadido en FastAPI 0.135.0.
    
    ///
    
    ## ¿Qué son los Server-Sent Events? { #what-are-server-sent-events }
    
    SSE es un estándar para hacer streaming de datos desde el servidor al cliente sobre HTTP.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 5K bytes
    - Click Count (0)
  5. docs/fr/docs/advanced/response-directly.md

    ///
    
    ## Renvoyer une `Response` { #return-a-response }
    
    Vous pouvez renvoyer une `Response` ou n'importe laquelle de ses sous-classes.
    
    /// info
    
    `JSONResponse` est elle-même une sous-classe de `Response`.
    
    ///
    
    Et lorsque vous renvoyez une `Response`, **FastAPI** la transmet directement.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  6. docs/es/docs/how-to/separate-openapi-schemas.md

    En ese caso, puedes desactivar esta funcionalidad en **FastAPI**, con el parámetro `separate_input_output_schemas=False`.
    
    /// info | Información
    
    El soporte para `separate_input_output_schemas` fue agregado en FastAPI `0.102.0`. 🤓
    
    ///
    
    {* ../../docs_src/separate_openapi_schemas/tutorial002_py310.py hl[10] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:41:41 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  7. docs/es/docs/tutorial/body-multiple-params.md

    ```Python
    q: str | None = None
    ```
    
    Por ejemplo:
    
    {* ../../docs_src/body_multiple_params/tutorial004_an_py310.py hl[28] *}
    
    /// info | Información
    
    `Body` también tiene todos los mismos parámetros de validación y metadatos extras que `Query`, `Path` y otros que verás luego.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:41:41 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  8. docs/en/docs/tutorial/server-sent-events.md

    This is similar to [Stream JSON Lines](stream-json-lines.md), but uses the `text/event-stream` format, which is supported natively by browsers with the [`EventSource` API](https://developer.mozilla.org/en-US/docs/Web/API/EventSource).
    
    /// info
    
    Added in FastAPI 0.135.0.
    
    ///
    
    ## What are Server-Sent Events? { #what-are-server-sent-events }
    
    SSE is a standard for streaming data from the server to the client over HTTP.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  9. docs/ja/docs/tutorial/debugging.md

    # その他のコード
    ```
    
    その場合、`myapp.py` 内の自動的に作成された変数 `__name__` は、値として `"__main__"` を持ちません。
    
    したがって、以下の行:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    は実行されません。
    
    /// info | 情報
    
    より詳しい情報は、[公式Pythonドキュメント](https://docs.python.org/3/library/__main__.html)を参照してください。
    
    ///
    
    ## デバッガーでコードを実行 { #run-your-code-with-your-debugger }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  10. docs/pt/docs/how-to/separate-openapi-schemas.md

    Nesse caso, você pode desativar esse recurso no **FastAPI**, com o parâmetro `separate_input_output_schemas=False`.
    
    /// info | Informação
    
    O suporte para `separate_input_output_schemas` foi adicionado no FastAPI `0.102.0`. 🤓
    
    ///
    
    {* ../../docs_src/separate_openapi_schemas/tutorial002_py310.py hl[10] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Jan 20 20:40:17 GMT 2026
    - 4.8K bytes
    - Click Count (0)
Back to Top