Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 386 for multipass (0.05 seconds)

  1. docs/en/docs/tutorial/security/first-steps.md

    {* ../../docs_src/security/tutorial001_an_py310.py *}
    
    ## Run it { #run-it }
    
    /// info
    
    The [`python-multipart`](https://github.com/Kludex/python-multipart) package is automatically installed with **FastAPI** when you run the `pip install "fastapi[standard]"` command.
    
    However, if you use the `pip install fastapi` command, the `python-multipart` package is not included by default.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  2. docs/fr/docs/tutorial/security/first-steps.md

    ## Exécuter { #run-it }
    
    /// info
    
    Le package [`python-multipart`](https://github.com/Kludex/python-multipart) est installé automatiquement avec **FastAPI** lorsque vous exécutez la commande `pip install "fastapi[standard]"`.
    
    Cependant, si vous utilisez la commande `pip install fastapi`, le package `python-multipart` n'est pas inclus par défaut.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  3. internal/hash/checksum_test.go

    	checksumCombined = append(checksumCombined, part3Checksum.Raw...)
    
    	// Create the final checksum (checksum of the combined checksums)
    	// Add BOTH the multipart flag AND the includes-multipart flag
    	finalChecksumType := checksumType | ChecksumMultipart | ChecksumIncludesMultipart
    	finalChecksum := NewChecksumFromData(finalChecksumType, checksumCombined)
    
    	// Set WantParts to indicate 3 parts
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 22 14:15:21 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    Más adelante, cuando leas sobre cómo estructurar aplicaciones más grandes ([Aplicaciones Más Grandes - Múltiples Archivos](../../tutorial/bigger-applications.md)), posiblemente con múltiples archivos, aprenderás cómo declarar un único parámetro `dependencies` para un grupo de *path operations*.
    
    ## Dependencias Globales { #global-dependencies }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  5. docs/zh/docs/tutorial/request-files.md

    # 请求文件 { #request-files }
    
    你可以使用 `File` 定义由客户端上传的文件。
    
    /// info | 信息
    
    要接收上传的文件,请先安装 [`python-multipart`](https://github.com/Kludex/python-multipart)。
    
    请确保你创建一个[虚拟环境](../virtual-environments.md)、激活它,然后安装,例如:
    
    ```console
    $ pip install python-multipart
    ```
    
    这是因为上传文件是以「表单数据」发送的。
    
    ///
    
    ## 导入 `File` { #import-file }
    
    从 `fastapi` 导入 `File` 和 `UploadFile`:
    
    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[3] *}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  6. docs/pt/docs/tutorial/dependencies/sub-dependencies.md

    read_query["/items/"]
    
    query_extractor --> query_or_cookie_extractor --> read_query
    ```
    
    ## Utilizando a mesma dependência múltiplas vezes { #using-the-same-dependency-multiple-times }
    
    Se uma de suas dependências é declarada várias vezes para a mesma *operação de rota*, por exemplo, múltiplas dependências com uma mesma subdependência, o **FastAPI** irá chamar essa subdependência uma única vez para cada requisição.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:48:53 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/UploadForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.dict.stopwords;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form for uploading stopwords files to the Fess search engine.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  8. docs/pt/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ## Dependências para um grupo de *operações de rota* { #dependencies-for-a-group-of-path-operations }
    
    Mais a frente, quando você ler sobre como estruturar aplicações maiores ([Aplicações maiores - Múltiplos arquivos](../../tutorial/bigger-applications.md)), possivelmente com múltiplos arquivos, você aprenderá a declarar um único parâmetro `dependencies` para um grupo de *operações de rota*.
    
    ## Dependências globais { #global-dependencies }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/security/first-steps.md

    ## 執行 { #run-it }
    
    /// info
    
    當你使用 `pip install "fastapi[standard]"` 指令安裝時,[`python-multipart`](https://github.com/Kludex/python-multipart) 套件會隨 FastAPI 自動安裝。
    
    不過若只執行 `pip install fastapi`,預設不會包含 `python-multipart`。
    
    若要手動安裝,請先建立並啟用一個[虛擬環境](../../virtual-environments.md),接著執行:
    
    ```console
    $ pip install python-multipart
    ```
    
    因為 OAuth2 會以「form data」傳送 `username` 與 `password`。
    
    ///
    
    用以下指令執行範例:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  10. docs/zh/docs/tutorial/security/first-steps.md

    ## 运行 { #run-it }
    
    /// info | 信息
    
    当你使用命令 `pip install "fastapi[standard]"` 安装 **FastAPI** 时,[`python-multipart`](https://github.com/Kludex/python-multipart) 包会自动安装。
    
    但是,如果你使用 `pip install fastapi`,默认不会包含 `python-multipart` 包。
    
    如需手动安装,请先创建并激活[虚拟环境](../../virtual-environments.md),然后执行:
    
    ```console
    $ pip install python-multipart
    ```
    
    这是因为 **OAuth2** 使用“表单数据”来发送 `username` 和 `password`。
    
    ///
    
    用下面的命令运行示例:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 7.5K bytes
    - Click Count (0)
Back to Top