Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 671 - 680 of 755 for consume (0.15 seconds)

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

  1. internal/http/headers.go

    	MinIOSnowballIgnoreDirs = "X-Amz-Meta-Minio-Snowball-Ignore-Dirs"
    	// MinIOSnowballIgnoreErrors will ignore recoverable errors, typically single files failing to upload.
    	// An error will be printed to console instead.
    	MinIOSnowballIgnoreErrors = "X-Amz-Meta-Minio-Snowball-Ignore-Errors"
    	// MinIOSnowballPrefix will apply this prefix (plus / at end) to all extracted objects
    	MinIOSnowballPrefix = "X-Amz-Meta-Minio-Snowball-Prefix"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed May 07 15:37:12 GMT 2025
    - 10.8K bytes
    - Click Count (0)
  2. docs/de/docs/tutorial/bigger-applications.md

    ```python
    from app.main import app
    ```
    
    Auf diese Weise weiß der `fastapi`-Befehl, wo er Ihre App findet.
    
    /// Note | Hinweis
    
    Sie könnten auch den Pfad an den Befehl übergeben, etwa:
    
    ```console
    $ fastapi dev app/main.py
    ```
    
    Aber dann müssten Sie sich jedes Mal, wenn Sie den `fastapi`-Befehl aufrufen, an den korrekten Pfad erinnern.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 21.9K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/bigger-applications.md

    ```python
    from app.main import app
    ```
    
    De cette façon, la commande `fastapi` saura où trouver votre app.
    
    /// Note | Remarque
    
    Vous pourriez aussi passer le chemin à la commande, comme :
    
    ```console
    $ fastapi dev app/main.py
    ```
    
    Mais vous devriez vous rappeler de passer le bon chemin à chaque fois que vous appelez la commande `fastapi`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/bigger-applications.md

    ```python
    from app.main import app
    ```
    
    De esa manera el comando `fastapi` sabrá dónde encontrar tu app.
    
    /// Note | Nota
    
    También podrías pasar la ruta al comando, como:
    
    ```console
    $ fastapi dev app/main.py
    ```
    
    Pero tendrías que recordar pasar la ruta correcta cada vez que llames al comando `fastapi`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 20.2K bytes
    - Click Count (0)
  5. docs/pt/docs/tutorial/bigger-applications.md

    ```python
    from app.main import app
    ```
    
    Dessa forma o comando `fastapi` saberá onde encontrar sua aplicação.
    
    /// Note | Nota
    
    Você também poderia passar o path para o comando, como:
    
    ```console
    $ fastapi dev app/main.py
    ```
    
    Mas você teria que lembrar de passar o path correto toda vez que chamar o comando `fastapi`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  6. docs/zh/docs/tutorial/response-model.md

    /// info | 信息
    
    要使用 `EmailStr`,首先安装 [`email-validator`](https://github.com/JoshData/python-email-validator)。
    
    请先创建并激活一个[虚拟环境](../virtual-environments.md),然后安装,例如:
    
    ```console
    $ pip install email-validator
    ```
    
    或者:
    
    ```console
    $ pip install "pydantic[email]"
    ```
    
    ///
    
    我们使用这个模型来声明输入,同时也用相同的模型来声明输出:
    
    {* ../../docs_src/response_model/tutorial002_py310.py hl[16] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 14.5K bytes
    - Click Count (0)
  7. README.md

    -----------------------------------
    You can download the release source from our [download page][maven-download].
    
    Contributing
    ------------
    
    If you are interested in the development of Maven, please consult the
    documentation first and afterward you are welcome to join the developers
    mailing list to ask questions or discuss new ideas/features/bugs etc.
    
    Take a look into the [contribution guidelines](CONTRIBUTING.md).
    
    License
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Mar 25 08:06:02 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  8. docs/ru/docs/tutorial/request-files.md

    Убедитесь, что вы создали [виртуальное окружение](../virtual-environments.md), активировали его, а затем установили пакет, например:
    
    ```console
    $ pip install python-multipart
    ```
    
    Это связано с тем, что загружаемые файлы передаются как "данные формы".
    
    ///
    
    ## Импорт `File` { #import-file }
    
    Импортируйте `File` и `UploadFile` из модуля `fastapi`:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/collect/TopKSelector.java

      }
    
      /**
       * Adds each member of {@code elements} as a candidate for the top {@code k} elements. This
       * operation takes amortized linear time in the length of {@code elements}. The iterator is
       * consumed after this operation completes.
       *
       * <p>If all input data to this {@code TopKSelector} is in a single {@code Iterator}, prefer
       * {@link Ordering#leastOf(Iterator, int)}, which provides a simpler API for that use case.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Aug 31 13:15:26 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  10. docs/zh/docs/deployment/docker.md

    * 构建你的 FastAPI 镜像:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    /// tip | 提示
    
    注意末尾的 `.`,它等价于 `./`,用于告诉 Docker 使用哪个目录来构建容器镜像。
    
    此处就是当前目录(`.`)。
    
    ///
    
    ### 启动 Docker 容器 { #start-the-docker-container }
    
    * 基于你的镜像运行一个容器:
    
    <div class="termy">
    
    ```console
    $ docker run -d --name mycontainer -p 80:80 myimage
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 24.8K bytes
    - Click Count (0)
Back to Top