Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 551 - 560 of 1,661 for info_ (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

            to.attribute(ARTIFACT_TYPE, 'gradle-baseline-jars')
        }
    }
    
    def currentUpgradedPropertiesFile = layout.buildDirectory.file("gradle-api-info/current-upgraded-properties.json")
    def baselineUpgradedPropertiesFile = layout.buildDirectory.file("gradle-api-info/baseline-upgraded-properties.json")
    def extractGradleApiInfo = tasks.register("extractGradleApiInfo", gradlebuild.binarycompatibility.ExtractGradleApiInfoTask) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 30 10:14:25 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  2. docs/ja/docs/how-to/extending-openapi.md

    - `openapi_version`: 使用する OpenAPI 仕様のバージョン。デフォルトは最新の `3.1.0`。
    - `summary`: API の短い概要。
    - `description`: API の説明。Markdown を含めることができ、ドキュメントに表示されます。
    - `routes`: ルートのリスト。登録済みの各 path operation です。`app.routes` から取得されます。
    
    /// info | 情報
    
    パラメータ `summary` は OpenAPI 3.1.0 以降で利用可能で、FastAPI 0.99.0 以降が対応しています。
    
    ///
    
    ## デフォルトの上書き { #overriding-the-defaults }
    
    上記の情報を使って、同じユーティリティ関数で OpenAPI スキーマを生成し、必要な部分を上書きできます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  3. docs/ko/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
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/DependenciesInfoTask.java

                final String dependencyName = DependencyLicensesTask.getDependencyName(getMappings(), dep.getName());
                getLogger().info("mapped dependency " + dep.getGroup() + ":" + dep.getName() + " to " + dependencyName + " for license info");
    
                final String licenseType = getLicenseType(dep.getGroup(), dependencyName);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 8.6K bytes
    - Click Count (0)
  5. docs/ko/docs/tutorial/request-forms.md

    # 폼 데이터 { #form-data }
    
    JSON 대신 폼 필드를 받아야 하는 경우 `Form`을 사용할 수 있습니다.
    
    /// info | 정보
    
    폼을 사용하려면, 먼저 [`python-multipart`](https://github.com/Kludex/python-multipart)를 설치하세요.
    
    [가상 환경](../virtual-environments.md)을 생성하고 활성화한 다음, 예를 들어 다음과 같이 설치하세요:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## `Form` 임포트하기 { #import-form }
    
    `fastapi`에서 `Form`을 임포트합니다:
    
    {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 3K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/stream-json-lines.md

    # JSON Lines Akışı { #stream-json-lines }
    
    Bir veri dizisini “akış” olarak göndermek istediğiniz durumlar olabilir; bunu **JSON Lines** ile yapabilirsiniz.
    
    /// info | Bilgi
    
    FastAPI 0.134.0 ile eklendi.
    
    ///
    
    ## Akış (Stream) Nedir? { #what-is-a-stream }
    
    Verileri “streaming” olarak göndermek, uygulamanızın tüm öğe dizisi hazır olmasını beklemeden, öğeleri istemciye göndermeye başlaması demektir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  7. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

                log.info("Non-empty directory deletion succeeded (non-standard behavior, but acceptable in Docker/Samba)");
            } catch (SmbException e) {
                // This is the expected behavior per SMB specification
                deletionFailed = true;
                log.info("Non-empty directory deletion properly failed as expected: {}", e.getMessage());
            }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 56K bytes
    - Click Count (0)
  8. docs/en/docs/tutorial/bigger-applications.md

    If you are building an application or a web API, it's rarely the case that you can put everything in a single file.
    
    **FastAPI** provides a convenience tool to structure your application while keeping all the flexibility.
    
    /// info
    
    If you come from Flask, this would be the equivalent of Flask's Blueprints.
    
    ///
    
    ## An example file structure { #an-example-file-structure }
    
    Let's say you have a file structure like this:
    
    ```
    .
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 19.2K bytes
    - Click Count (0)
  9. docs/ru/docs/alternatives.md

    Он использует Marshmallow для валидации данных. И создан теми же разработчиками.
    
    Это отличный инструмент, и я тоже много им пользовался до появления **FastAPI**.
    
    /// info | Информация
    
    Webargs был создан теми же разработчиками, что и Marshmallow.
    
    ///
    
    /// check | Вдохновило **FastAPI** на
    
    Автоматическую валидацию входящих данных HTTP-запроса.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 37.1K bytes
    - Click Count (0)
  10. docs/tr/docs/index.md

     ╰─────────────────────────────────────────────────────╯
    
    INFO:     Will watch for changes in these directories: ['/home/user/code/awesomeapp']
    INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    INFO:     Started reloader process [2248755] using WatchFiles
    INFO:     Started server process [2248757]
    INFO:     Waiting for application startup.
    INFO:     Application startup complete.
    ```
    
    </div>
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.2K bytes
    - Click Count (0)
Back to Top