Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1551 - 1560 of 2,279 for inf2 (0.03 seconds)

  1. docs/sts/ldap.md

    ## Configuring AD/LDAP on MinIO
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 18.9K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                return "cause=[Because this test isn't done]";
              }
            };
        assertThat(testFuture.toString())
            .matches(
                "[^\\[]+\\[status=PENDING, info=\\[cause=\\[Because this test isn't done\\]\\]\\]");
        TimeoutException e = assertThrows(TimeoutException.class, () -> testFuture.get(1, NANOSECONDS));
        assertThat(e).hasMessageThat().contains("1 nanoseconds");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 45.2K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. docs/ko/docs/alternatives.md

    Webargs는 Flask를 포함한 여러 framework 위에서 이를 제공하기 위해 만들어진 도구입니다.
    
    내부적으로 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 14:06:26 GMT 2026
    - 26.3K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to Top