Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1241 - 1250 of 1,681 for tone (0.27 seconds)

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

    ///
    
    ## Необов’язкове завантаження файлу { #optional-file-upload }
    
    Ви можете зробити файл необов’язковим, використовуючи стандартні анотації типів і встановивши значення за замовчуванням `None`:
    
    {* ../../docs_src/request_files/tutorial001_02_an_py310.py hl[9,17] *}
    
    ## `UploadFile` із додатковими метаданими { #uploadfile-with-additional-metadata }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 11K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

         */
        protected abstract FileEntry open() throws CIFSException;
    
        /**
         * Checks if the enumeration is complete.
         *
         * @return true if enumeration is done, false otherwise
         */
        protected abstract boolean isDone();
    
        /**
         * Fetches more entries from the server.
         *
         * @return true if more entries were fetched, false otherwise
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 7.7K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/path-params-numeric-validations.md

    {* ../../docs_src/path_params_numeric_validations/tutorial001_an_py310.py hl[10] *}
    
    /// note | Not
    
    Bir path parametresi her zaman zorunludur, çünkü path'in bir parçası olmak zorundadır. `None` ile tanımlasanız veya bir varsayılan değer verseniz bile bu hiçbir şeyi değiştirmez; yine her zaman zorunlu olur.
    
    ///
    
    ## Parametreleri İhtiyacınıza Göre Sıralayın { #order-the-parameters-as-you-need }
    
    /// tip | İpucu
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

            return taskPath.substringBeforeLast(":").ifEmpty { ":" }
        }
    
        private class ReportLocation(provider: FileLocationProvider) {
            val file: File by lazy(LazyThreadSafetyMode.NONE) {
                provider.get().asFile
            }
    
            // Some providers for the report files (Japicmp) are not memoizable internally and require project services to be resolved.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 11:05:07 GMT 2026
    - 14.3K bytes
    - Click Count (1)
  5. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

     * Executor, and sequentially such that no two will ever be running at the same time.
     *
     * <p>Tasks submitted to {@link #execute(Runnable)} are executed in FIFO order.
     *
     * <p>The execution of tasks is done by one thread as long as there are tasks left in the queue.
     * When a task is {@linkplain Thread#interrupt interrupted}, execution of subsequent tasks
     * continues. See {@link QueueWorker#workOnQueue} for details.
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 10.6K bytes
    - Click Count (0)
  6. docs/fr/docs/environment-variables.md

    print(f"Hello {name} from Python")
    ```
    
    /// tip | Astuce
    
    Le deuxième argument de [`os.getenv()`](https://docs.python.org/3.8/library/os.html#os.getenv) est la valeur par défaut à retourner.
    
    S'il n'est pas fourni, c'est `None` par défaut ; ici, nous fournissons `"World"` comme valeur par défaut à utiliser.
    
    ///
    
    Vous pouvez ensuite exécuter ce programme Python :
    
    //// tab | Linux, macOS, Windows Bash
    
    <div class="termy">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  7. docs/ko/docs/advanced/additional-responses.md

    ///
    
    /// info | 정보
    
    `responses` 파라미터에서 다른 미디어 타입을 명시적으로 지정하지 않는 한, FastAPI는 응답이 주요 응답 클래스와 동일한 미디어 타입(기본값 `application/json`)을 가진다고 가정합니다.
    
    하지만 커스텀 응답 클래스를 지정하면서 미디어 타입을 `None`으로 설정했다면, FastAPI는 연결된 모델이 있는 모든 추가 응답에 대해 `application/json`을 사용합니다.
    
    ///
    
    ## 정보 결합하기 { #combining-information }
    
    `response_model`, `status_code`, `responses` 파라미터를 포함해 여러 위치의 응답 정보를 결합할 수도 있습니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  8. docs/zh/docs/advanced/additional-responses.md

    /// note | 注意
    
    请注意,你必须直接使用 `FileResponse` 返回图片。
    
    ///
    
    /// info | 信息
    
    除非你在 `responses` 参数中明确指定不同的媒体类型,否则 FastAPI 会假设响应与主响应类具有相同的媒体类型(默认是 `application/json`)。
    
    但是如果你指定了一个媒体类型为 `None` 的自定义响应类,FastAPI 会对任何具有关联模型的附加响应使用 `application/json`。
    
    ///
    
    ## 组合信息 { #combining-information }
    
    你也可以把来自多个位置的响应信息组合在一起,包括 `response_model`、`status_code` 和 `responses` 参数。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/request-files.md

    這不是 **FastAPI** 的限制,而是 HTTP 協定本身的規範。
    
    ///
    
    ## 可選的檔案上傳 { #optional-file-upload }
    
    可透過一般型別註解並將預設值設為 `None` 使檔案成為可選:
    
    {* ../../docs_src/request_files/tutorial001_02_an_py310.py hl[9,17] *}
    
    ## `UploadFile` 搭配額外中繼資料 { #uploadfile-with-additional-metadata }
    
    你也可以在 `UploadFile` 上搭配 `File()`,例如用來設定額外的中繼資料:
    
    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)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionBwcSetupPlugin.java

                this.distFile = distFile;
                this.expandedDistDir = expandedDistDir;
            }
        }
    
        public abstract class BwcTaskThrottle implements BuildService<BuildServiceParameters.None> {}
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Aug 18 09:11:28 GMT 2021
    - 14.5K bytes
    - Click Count (0)
Back to Top