Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 751 - 760 of 882 for _path_ (0.04 seconds)

  1. docs/zh-hant/docs/tutorial/response-status-code.md

    # 回應狀態碼 { #response-status-code }
    
    就像你可以指定回應模型一樣,你也可以在任一個「路徑操作(path operation)」的參數 `status_code` 中宣告回應所使用的 HTTP 狀態碼:
    
    * `@app.get()`
    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    * 等等
    
    {* ../../docs_src/response_status_code/tutorial001_py310.py hl[6] *}
    
    /// note | 注意
    
    請注意,`status_code` 是「裝飾器(decorator)」方法(`get`、`post` 等等)的參數,而不是你的「路徑操作函式」的參數,就像所有的參數與 body 一樣。
    
    ///
    
    參數 `status_code` 接受一個數字作為 HTTP 狀態碼。
    
    /// info | 資訊
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionDownloadPlugin.java

         * Works out the gradle project name that provides a distribution artifact.
         *
         * @param distribution the distribution from which to derive a project name
         * @return the name of a project. It is not the full project path, only the name.
         */
        private static String distributionProjectName(ElasticsearchDistribution distribution) {
            ElasticsearchDistribution.Platform platform = distribution.getPlatform();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Aug 20 19:11:05 GMT 2021
    - 8.8K bytes
    - Click Count (0)
  3. okhttp/api/jvm/okhttp.api

    	public final fun -deprecated_directory ()Ljava/io/File;
    	public fun <init> (Ljava/io/File;J)V
    	public fun <init> (Lokio/FileSystem;Lokio/Path;J)V
    	public fun close ()V
    	public final fun delete ()V
    	public final fun directory ()Ljava/io/File;
    	public final fun directoryPath ()Lokio/Path;
    	public final fun evictAll ()V
    	public fun flush ()V
    	public final fun hitCount ()I
    	public final fun initialize ()V
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 72.3K bytes
    - Click Count (0)
  4. docs/ru/docs/advanced/stream-data.md

    FastAPI будет передавать каждый чанк данных в `StreamingResponse` как есть, не пытаясь конвертировать его в JSON или что-то подобное.
    
    ### Не-async *функции-обработчики пути* { #non-async-path-operation-functions }
    
    Можно использовать и обычные функции `def` (без `async`) и точно так же применять `yield`.
    
    {* ../../docs_src/stream_data/tutorial001_py310.py ln[26:29] hl[27] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  5. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean dfsDisabled = false;
        /** DFS cache time-to-live in seconds */
        protected long dfsTTL = 300;
        /** Whether to use strict DFS path resolution */
        protected boolean dfsStrictView = false;
        /** Whether to convert DFS paths to FQDN */
        protected boolean dfsConvertToFqdn;
        /** Default logon share */
        protected String logonShare;
        /** Default domain for authentication */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsThumbnailQueueBhv.java

                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setGenerator(DfTypeUtil.toString(source.get("generator")));
                result.setPath(DfTypeUtil.toString(source.get("path")));
                result.setTarget(DfTypeUtil.toString(source.get("target")));
                result.setThumbnailId(DfTypeUtil.toString(source.get("thumbnail_id")));
                return updateEntity(source, result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  7. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                    .stream()
                    .filter(p -> p.getValue() > 1)
                    .map(Map.Entry::getKey)
                    .collect(Collectors.toSet());
    
            // schedule independent projects (ordered by critical path priority)
            for (MavenProject mavenProject : analyzer.getRootSchedulableBuilds()) {
                ProjectSegment projectSegment = projectBuildList.get(mavenProject);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jul 16 03:42:09 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  8. docs/ko/docs/tutorial/stream-json-lines.md

    /// tip
    
    Pydantic이 **Rust** 측에서 직렬화하므로, 반환 타입을 선언하지 않았을 때보다 훨씬 높은 **성능**을 얻게 됩니다.
    
    ///
    
    ### 비동기 아님 *경로 처리 함수* { #non-async-path-operation-functions }
    
    일반 `def` 함수(`async` 없이)도 사용할 수 있으며, 동일하게 `yield`를 사용할 수 있습니다.
    
    FastAPI가 이벤트 루프를 막지 않도록 올바르게 실행되게 보장합니다.
    
    이 경우 함수가 async가 아니므로, 올바른 반환 타입은 `Iterable[Item]`입니다:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  9. docs/ru/docs/fastapi-cli.md

    ```toml
    [tool.fastapi]
    entrypoint = "backend.main:app"
    ```
    
    что будет эквивалентно:
    
    ```python
    from backend.main import app
    ```
    
    ### `fastapi dev` с указанием пути { #fastapi-dev-with-path }
    
    Вы также можете передать путь к файлу команде `fastapi dev`, и она постарается определить объект приложения FastAPI:
    
    ```console
    $ fastapi dev main.py
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  10. docs/ru/docs/tutorial/metadata.md

    {* ../../docs_src/metadata/tutorial004_py310.py hl[21,26] *}
    
    /// info | Дополнительная информация
    
    Узнайте больше о тегах в [Конфигурации операции пути](path-operation-configuration.md#tags).
    
    ///
    
    ### Проверьте документацию { #check-the-docs }
    
    Теперь, если вы проверите документацию, вы увидите всю дополнительную информацию:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 9.2K bytes
    - Click Count (0)
Back to Top