Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 2,326 for filled (0.06 seconds)

  1. docs/tr/docs/tutorial/request-files.md

    Bunun nedeni, upload edilen dosyaların "form data" olarak gönderilmesidir.
    
    ///
    
    ## `File` Import Edin { #import-file }
    
    `fastapi` içinden `File` ve `UploadFile` import edin:
    
    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[3] *}
    
    ## `File` Parametrelerini Tanımlayın { #define-file-parameters }
    
    `Body` veya `Form` için yaptığınız gibi dosya parametreleri oluşturun:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  2. docs/ru/docs/tutorial/static-files.md

    # Статические Файлы { #static-files }
    
    Вы можете предоставлять статические файлы автоматически из директории, используя `StaticFiles`.
    
    ## Использование `StaticFiles` { #use-staticfiles }
    
    * Импортируйте `StaticFiles`.
    * "Примонтируйте" экземпляр `StaticFiles()` к определённому пути.
    
    {* ../../docs_src/static_files/tutorial001_py310.py hl[2,6] *}
    
    /// note | Технические детали
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  3. cmd/metacache-set.go

    	// If set to nil, it will not be called.
    
    	// agreed is called if all disks agreed.
    	agreed func(entry metaCacheEntry)
    
    	// partial will be called when there is disagreement between disks.
    	// if disk did not return any result, but also haven't errored
    	// the entry will be empty and errs will
    	partial func(entries metaCacheEntries, errs []error)
    
    	// finished will be called when all streams have finished and
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 30.7K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/request-files.md

    # Request Files { #request-files }
    
    You can define files to be uploaded by the client using `File`.
    
    /// info
    
    To receive uploaded files, 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
    ```
    
    This is because uploaded files are sent as "form data".
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7K bytes
    - Click Count (0)
  5. docs/pt/docs/tutorial/request-files.md

    ///
    
    ## Importe `File` { #import-file }
    
    Importe `File` e `UploadFile` de `fastapi`:
    
    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[3] *}
    
    ## Definir Parâmetros `File` { #define-file-parameters }
    
    Crie parâmetros de arquivo da mesma forma que você faria para `Body` ou `Form`:
    
    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[9] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  6. docs/zh-hant/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:05:38 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/static-files.md

    # Statik Dosyalar { #static-files }
    
    `StaticFiles` kullanarak bir dizindeki statik dosyaları otomatik olarak sunabilirsiniz.
    
    ## `StaticFiles` Kullanımı { #use-staticfiles }
    
    * `StaticFiles`'ı import edin.
    * Belirli bir path'te bir `StaticFiles()` örneğini "mount" edin.
    
    {* ../../docs_src/static_files/tutorial001_py310.py hl[2,6] *}
    
    /// note | Teknik Detaylar
    
    `from starlette.staticfiles import StaticFiles` da kullanabilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  8. docs/ja/docs/tutorial/static-files.md

    # 静的ファイル { #static-files }
    
    `StaticFiles` を使用して、ディレクトリから静的ファイルを自動的に提供できます。
    
    ## `StaticFiles` の使用 { #use-staticfiles }
    
    * `StaticFiles` をインポート。
    * `StaticFiles()` インスタンスを特定のパスに「マウント」。
    
    {* ../../docs_src/static_files/tutorial001_py310.py hl[2,6] *}
    
    /// note | 技術詳細
    
    `from starlette.staticfiles import StaticFiles` も使用できます。
    
    **FastAPI**は、開発者の利便性のために、`starlette.staticfiles` と同じ `fastapi.staticfiles` を提供します。しかし、実際にはStarletteから直接渡されています。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  9. cmd/data-scanner_test.go

    	                       <Filter></Filter>
    	                       <Status>Enabled</Status>
    			       <ID>DeleteAllVersions</ID>
    	                    </Rule>
    	                 </LifecycleConfiguration>`
    	delMarkerILM := `<LifecycleConfiguration>
                                <Rule>
                                  <ID>DelMarkerExpiration</ID>
                                  <Filter></Filter>
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 12K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                    } catch (final Exception e) {
                        logger.warn("Failed to delete UrlFilter: sessionId={}", sid);
                    }
                }
    
                final DuplicateHostHelper duplicateHostHelper = ComponentUtil.getDuplicateHostHelper();
    
                // set urls
                split(urlsStr, "[\r\n]").of(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).distinct().forEach(urlValue -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25K bytes
    - Click Count (0)
Back to Top