Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1491 - 1500 of 2,275 for inf1 (0.11 seconds)

  1. docs/zh/docs/_llm-test.md

    //// tab | 测试
    
    /// info | 信息
    Some text
    ///
    
    /// note | 注意
    Some text
    ///
    
    /// note | 技术细节
    Some text
    ///
    
    /// check | 检查
    Some text
    ///
    
    /// tip | 提示
    Some text
    ///
    
    /// warning | 警告
    Some text
    ///
    
    /// danger | 危险
    Some text
    ///
    
    ////
    
    //// tab | 信息
    
    选项卡以及 `Info`/`Note`/`Warning`/等提示块,应在竖线(`|`)后添加其标题的翻译。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  2. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/fake_elasticsearch-with-added-jar.tar.gz

    fake_elasticsearch-with-added-jar.tar elasticsearch-1.2.3/lib/some.jar META-INF/MANIFEST.MF Manifest-Version: 1.0 Created-By: 15.0.2 (AdoptOpenJDK) SomeClass.class synchronized class SomeClass { void SomeClass(); } elasticsearch-1.2.3/config/jvm.options ## JVM configuration ########## ## IMPORTANT: JVM heap size ########## ## ## You should always set the min and max JVM heap ## size to the same value. For example, to set ## the heap to 4 GB, set: ## ## -Xms4g ## -Xmx4g ## ## See https://www.e...
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/core/io/TraverserUtilTest.java

            assertThat(set.contains(ResultPrinter.class.getName()), is(true));
            assertThat(set.contains(TestRunner.class.getName()), is(true));
            assertThat(set.contains("junit.textui.package-info"), is(false));
            assertThat(set.contains(junit.extensions.TestDecorator.class.getName()), is(not(true)));
        }
    
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat May 10 01:32:17 GMT 2025
    - 6.4K bytes
    - Click Count (0)
  4. src/test/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancerTest.java

    import org.junit.jupiter.api.extension.ExtendWith;
    import org.mockito.Mock;
    import org.mockito.junit.jupiter.MockitoExtension;
    
    import jcifs.SmbTransport;
    import jcifs.internal.CommonServerMessageBlock;
    import jcifs.internal.smb2.info.Smb2QueryInfoRequest;
    import jcifs.internal.smb2.io.Smb2ReadRequest;
    
    /**
     * Unit tests for ChannelLoadBalancer
     */
    @ExtendWith(MockitoExtension.class)
    class ChannelLoadBalancerTest {
    
        @Mock
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 05:11:12 GMT 2025
    - 7.7K bytes
    - Click Count (0)
  5. docs/fr/docs/advanced/dataclasses.md

    * sérialisation des données
    * documentation des données, etc.
    
    Cela fonctionne de la même manière qu'avec les modèles Pydantic. Et, en réalité, c'est mis en œuvre de la même façon en interne, en utilisant Pydantic.
    
    /// info
    
    Gardez à l'esprit que les dataclasses ne peuvent pas tout ce que peuvent faire les modèles Pydantic.
    
    Vous pourriez donc avoir encore besoin d'utiliser des modèles Pydantic.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  6. docs/pt/docs/tutorial/server-sent-events.md

    Isso é semelhante a [Stream de JSON Lines](stream-json-lines.md), mas usa o formato `text/event-stream`, que é suportado nativamente pelos navegadores com a [`EventSource` API](https://developer.mozilla.org/en-US/docs/Web/API/EventSource).
    
    /// info | Informação
    
    Adicionado no FastAPI 0.135.0.
    
    ///
    
    ## O que são Server-Sent Events? { #what-are-server-sent-events }
    
    SSE é um padrão para transmitir dados do servidor para o cliente via HTTP.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/tutorial/response-status-code.md

    /// note | 注意
    
    請注意,`status_code` 是「裝飾器(decorator)」方法(`get`、`post` 等等)的參數,而不是你的「路徑操作函式」的參數,就像所有的參數與 body 一樣。
    
    ///
    
    參數 `status_code` 接受一個數字作為 HTTP 狀態碼。
    
    /// info | 資訊
    
    `status_code` 也可以接收一個 `IntEnum`,例如 Python 的 [`http.HTTPStatus`](https://docs.python.org/3/library/http.html#http.HTTPStatus)。
    
    ///
    
    它會:
    
    * 在回應中傳回該狀態碼。
    * 在 OpenAPI 結構中如此記錄(因此也會反映在使用者介面中):
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  8. docs/zh/docs/advanced/strict-content-type.md

    如果你需要兼容不发送 `Content-Type` 头的客户端,可以通过设置 `strict_content_type=False` 来关闭严格检查:
    
    {* ../../docs_src/strict_content_type/tutorial001_py310.py hl[4] *}
    
    启用该设置后,缺少 `Content-Type` 头的请求其请求体也会按 JSON 解析,这与旧版本 FastAPI 的行为一致。
    
    /// info | 信息
    
    此行为和配置在 FastAPI 0.132.0 中新增。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:29:48 GMT 2026
    - 3K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/path-operation-configuration.md

    ## 回應描述 { #response-description }
    
    你可以用參數 `response_description` 指定回應的描述:
    
    {* ../../docs_src/path_operation_configuration/tutorial005_py310.py hl[18] *}
    
    /// info | 資訊
    
    請注意,`response_description` 專指回應,而 `description` 則是針對整個「路徑操作」的一般描述。
    
    ///
    
    /// check | 檢查
    
    OpenAPI 規範要求每個「路徑操作」都必須有一個回應描述。
    
    因此,如果你未提供,**FastAPI** 會自動產生 "Successful response"。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  10. docs/ru/docs/tutorial/cors.md

    ### Простые запросы { #simple-requests }
    
    Любые запросы с заголовком `Origin`. В этом случае middleware передаст запрос дальше как обычно, но добавит соответствующие CORS-заголовки к ответу.
    
    ## Больше информации { #more-info }
    
    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)
Back to Top