Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 951 - 960 of 2,098 for info_ (0.02 seconds)

  1. docs/tr/docs/tutorial/path-params-numeric-validations.md

    ## `Path`'i İçe Aktarın { #import-path }
    
    Önce `fastapi` içinden `Path`'i ve `Annotated`'ı içe aktarın:
    
    {* ../../docs_src/path_params_numeric_validations/tutorial001_an_py310.py hl[1,3] *}
    
    /// info | Bilgi
    
    FastAPI, 0.95.0 sürümünde `Annotated` desteğini ekledi (ve bunu önermeye başladı).
    
    Daha eski bir sürüm kullanıyorsanız, `Annotated` kullanmaya çalıştığınızda hata alırsınız.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  2. docs/zh/docs/tutorial/stream-json-lines.md

    # 流式传输 JSON Lines { #stream-json-lines }
    
    当你想以“流”的方式发送一系列数据时,可以使用 JSON Lines。
    
    /// info | 信息
    
    新增于 FastAPI 0.134.0。
    
    ///
    
    ## 什么是流 { #what-is-a-stream }
    
    “流式传输”数据意味着你的应用会在整段数据全部准备好之前,就开始把每个数据项发送给客户端。
    
    也就是说,它会先发送第一个数据项,客户端会接收并开始处理它,而此时你的应用可能还在生成下一个数据项。
    
    ```mermaid
    sequenceDiagram
        participant App
        participant Client
    
        App->>App: Produce Item 1
        App->>Client: Send Item 1
        App->>App: Produce Item 2
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:29:48 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareGetInfo.java

         * @throws IOException if there is an error retrieving the security information
         */
        public ACE[] getSecurity() throws IOException {
            final srvsvc.ShareInfo502 info502 = (srvsvc.ShareInfo502) info;
            if (info502.security_descriptor != null) {
                SecurityDescriptor sd;
                sd = new SecurityDescriptor(info502.security_descriptor, 0, info502.sd_size);
                return sd.aces;
            }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/request-form-models.md

    # Modelos de Formulario { #form-models }
    
    Puedes usar **modelos de Pydantic** para declarar **campos de formulario** en FastAPI.
    
    /// info | Información
    
    Para usar formularios, primero instala [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Asegúrate de crear un [entorno virtual](../virtual-environments.md), activarlo, y luego instalarlo, por ejemplo:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  5. tests/test_tutorial/test_additional_responses/test_tutorial004.py

        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == snapshot(
            {
                "openapi": "3.1.0",
                "info": {"title": "FastAPI", "version": "0.1.0"},
                "paths": {
                    "/items/{item_id}": {
                        "get": {
                            "responses": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 27 10:53:47 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditPrecommitPlugin.java

    import org.elasticsearch.gradle.internal.ExportElasticsearchBuildResourcesTask;
    import org.elasticsearch.gradle.dependencies.CompileOnlyResolvePlugin;
    import org.elasticsearch.gradle.internal.info.BuildParams;
    import org.elasticsearch.gradle.internal.InternalPlugin;
    import org.elasticsearch.gradle.internal.conventions.precommit.PrecommitPlugin;
    import org.gradle.api.Project;
    import org.gradle.api.Task;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  7. tests/test_security_http_bearer_description.py

    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == snapshot(
            {
                "openapi": "3.1.0",
                "info": {"title": "FastAPI", "version": "0.1.0"},
                "paths": {
                    "/users/me": {
                        "get": {
                            "responses": {
                                "200": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  8. internal/mcontext/ctxt.go

    )
    
    // ContextTraceType represents the type of golang Context key
    type ContextTraceType string
    
    // ContextTraceKey is the key of TraceCtxt saved in a Golang context
    const ContextTraceKey = ContextTraceType("ctx-trace-info")
    
    // TraceCtxt holds related tracing data of a http request.
    type TraceCtxt struct {
    	RequestRecorder  *xhttp.RequestRecorder
    	ResponseRecorder *xhttp.ResponseRecorder
    
    	FuncName string
    	AmzReqID string
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Dec 06 17:27:26 GMT 2022
    - 1.3K bytes
    - Click Count (0)
  9. docs/tr/docs/python-types.md

    Tip olarak `list` yazın.
    
    `list`, bazı iç tipleri barındıran bir tip olduğundan, bunları köşeli parantez içine yazarsınız:
    
    {* ../../docs_src/python_types/tutorial006_py310.py hl[1] *}
    
    /// info | Bilgi
    
    Köşeli parantez içindeki bu iç tiplere "type parameters" denir.
    
    Bu durumda `str`, `list`'e verilen type parameter'dır.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  10. docs/uk/docs/python-types.md

    Як тип вкажіть `list`.
    
    Оскільки список є типом, який містить деякі внутрішні типи, ви поміщаєте їх у квадратні дужки:
    
    {* ../../docs_src/python_types/tutorial006_py310.py hl[1] *}
    
    /// info | Інформація
    
    Ці внутрішні типи в квадратних дужках називаються «параметрами типу».
    
    У цьому випадку `str` — це параметр типу, переданий у `list`.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 17.4K bytes
    - Click Count (0)
Back to Top