Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 501 - 510 of 752 for consume (0.05 seconds)

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

  1. docs/pt/docs/tutorial/sql-databases.md

    ## Instalar o `SQLModel` { #install-sqlmodel }
    
    Primeiro, certifique-se de criar seu [ambiente virtual](../virtual-environments.md), ativá-lo e, em seguida, instalar o `sqlmodel`:
    
    <div class="termy">
    
    ```console
    $ pip install sqlmodel
    ---> 100%
    ```
    
    </div>
    
    ## Crear o App com um Único Modelo { #create-the-app-with-a-single-model }
    
    Vamos criar a primeira versão mais simples do app com um único modelo **SQLModel**.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  2. helm-releases/minio-5.0.1.tgz

    include (print $.Template.BasePath "/_helper_policy.tpl") . | indent 4 }} {{ end }} custom-command: |- {{ include (print $.Template.BasePath "/_helper_custom_command.txt") . | indent 4 }} minio/templates/console-ingress.yaml {{- if .Values.consoleIngress.enabled -}} {{- $fullName := printf "%s-console" (include "minio.fullname" .) -}} {{- $servicePort := .Values.consoleService.port -}} {{- $ingressPath := .Values.consoleIngress.path -}} apiVersion: {{ template "minio.consoleIngress.apiVersion" . }}...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Nov 13 10:04:51 GMT 2022
    - 19.8K bytes
    - Click Count (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/UpgradeContextTest.java

    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    
    /**
     * Unit tests for the {@link UpgradeContext} class.
     * Tests console output formatting and Unicode icon fallback behavior.
     */
    @DisplayName("UpgradeContext")
    class UpgradeContextTest {
    
        @Test
        @DisplayName("should create context successfully")
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Jul 15 09:35:08 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/request-forms.md

    To use forms, first install [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Make sure you create a [virtual environment](../virtual-environments.md), activate it, and then install it, for example:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## Import `Form` { #import-form }
    
    Import `Form` from `fastapi`:
    
    {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  5. docs/ja/docs/tutorial/request-forms-and-files.md

    /// info | 情報
    
    アップロードされたファイルやフォームデータを受信するには、まず[`python-multipart`](https://github.com/Kludex/python-multipart)をインストールします。
    
    [仮想環境](../virtual-environments.md)を作成し、それを有効化してから、例えば次のようにインストールしてください:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## `File`と`Form`のインポート { #import-file-and-form }
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  6. docs/zh/docs/advanced/sub-applications.md

    本例的子应用挂载在 `/subapi` 路径下:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[11, 19] *}
    
    ### 查看自动 API 文档 { #check-the-automatic-api-docs }
    
    现在,运行 `fastapi` 命令:
    
    <div class="termy">
    
    ```console
    $ fastapi dev
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    然后在 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs) 打开文档。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  7. guava/src/com/google/common/collect/CompactHashMap.java

    import java.util.Objects;
    import java.util.Set;
    import java.util.Spliterator;
    import java.util.Spliterators;
    import java.util.function.BiConsumer;
    import java.util.function.BiFunction;
    import java.util.function.Consumer;
    import org.jspecify.annotations.Nullable;
    
    /**
     * CompactHashMap is an implementation of a Map. All optional operations (put and remove) are
     * supported. Null keys and values are supported.
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 39.6K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/request-form-models.md

    你可以使用 **Pydantic 模型** 在 FastAPI 中宣告 **表單欄位**。
    
    /// info | 說明
    
    要使用表單,首先安裝 [`python-multipart`](https://github.com/Kludex/python-multipart)。
    
    請先建立[虛擬環境](../virtual-environments.md)、啟用後再安裝,例如:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    /// note | 注意
    
    此功能自 FastAPI 版本 `0.113.0` 起支援。🤓
    
    ///
    
    ## 針對表單的 Pydantic 模型 { #pydantic-models-for-forms }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2K bytes
    - Click Count (0)
  9. docs/tr/docs/tutorial/request-forms.md

    Bir [virtual environment](../virtual-environments.md) oluşturduğunuzdan, onu etkinleştirdiğinizden emin olun ve ardından örneğin şöyle kurun:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## `Form`'u Import Edin { #import-form }
    
    `Form`'u `fastapi`'den import edin:
    
    {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  10. helm-releases/minio-4.0.9.tgz

    include (print $.Template.BasePath "/_helper_policy.tpl") . | indent 4 }} {{ end }} custom-command: |- {{ include (print $.Template.BasePath "/_helper_custom_command.txt") . | indent 4 }} minio/templates/console-ingress.yaml {{- if .Values.consoleIngress.enabled -}} {{- $fullName := printf "%s-console" (include "minio.fullname" .) -}} {{- $servicePort := .Values.consoleService.port -}} {{- $ingressPath := .Values.consoleIngress.path -}} apiVersion: {{ template "minio.consoleIngress.apiVersion" . }}...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Aug 03 06:10:44 GMT 2022
    - 18.6K bytes
    - Click Count (0)
Back to Top