Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1241 - 1250 of 1,289 for bool (0.18 seconds)

  1. docs/zh-hant/docs/tutorial/bigger-applications.md

    ///
    
    ## 在 `pyproject.toml` 設定 `entrypoint` { #configure-the-entrypoint-in-pyproject-toml }
    
    因為你的 FastAPI `app` 物件位在 `app/main.py`,你可以在 `pyproject.toml` 檔案中這樣設定 `entrypoint`:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    這等同於這樣匯入:
    
    ```python
    from app.main import app
    ```
    
    如此一來 `fastapi` 指令就會知道去哪裡找到你的 app。
    
    /// Note | 注意
    
    你也可以把路徑直接傳給指令,例如:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    bom
    
    // bond : ShortDot SA
    // https://www.iana.org/domains/root/db/bond.html
    bond
    
    // boo : Charleston Road Registry Inc.
    // https://www.iana.org/domains/root/db/boo.html
    boo
    
    // book : Amazon Registry Services, Inc.
    // https://www.iana.org/domains/root/db/book.html
    book
    
    // booking : Booking.com B.V.
    // https://www.iana.org/domains/root/db/booking.html
    booking
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 309.7K bytes
    - Click Count (1)
  3. docs/fr/docs/tutorial/bigger-applications.md

    Comme votre objet FastAPI `app` vit dans `app/main.py`, vous pouvez configurer l'`entrypoint` dans votre fichier `pyproject.toml` comme ceci :
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    ce qui équivaut à importer ainsi :
    
    ```python
    from app.main import app
    ```
    
    De cette façon, la commande `fastapi` saura où trouver votre app.
    
    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

    Como tu objeto `app` de FastAPI vive en `app/main.py`, puedes configurar el `entrypoint` en tu archivo `pyproject.toml` así:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    que es equivalente a importar como:
    
    ```python
    from app.main import app
    ```
    
    De esa manera el comando `fastapi` sabrá dónde encontrar tu app.
    
    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

    Como seu objeto `app` do FastAPI fica em `app/main.py`, você pode configurar o `entrypoint` no seu arquivo `pyproject.toml` assim:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    isso é equivalente a importar como:
    
    ```python
    from app.main import app
    ```
    
    Dessa forma o comando `fastapi` saberá onde encontrar sua aplicação.
    
    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/ko/docs/tutorial/query-params-str-validations.md

    /// tip | 팁
    
    Pydantic에는 [BeforeValidator](https://docs.pydantic.dev/latest/concepts/validators/#field-before-validator)와 같은 다른 것들도 있습니다. 🤓
    
    ///
    
    예를 들어, 이 커스텀 validator는 <abbr title="International Standard Book Number - 국제 표준 도서 번호">ISBN</abbr> 도서 번호의 경우 아이템 ID가 `isbn-`으로 시작하고, <abbr title="Internet Movie Database - 인터넷 영화 데이터베이스: 영화에 대한 정보를 제공하는 웹사이트">IMDB</abbr> 영화 URL ID의 경우 `imdb-`로 시작하는지 확인합니다:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  7. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    bofa
    bokn.no
    boldlygoingnowhere.org
    boleslawiec.pl
    bolivia.bo
    bologna.it
    bolt.hu
    bolzano-altoadige.it
    bolzano.it
    bom
    bomlo.no
    bona.jp
    bond
    bones.replit.dev
    boo
    boo.jp
    book
    booking
    bookonline.app
    boomla.net
    bosch
    bostik
    boston
    bot
    bounceme.net
    boutique
    boutir.com
    box
    box.ca
    boxfuse.io
    boy.jp
    boyfriend.jp
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Dec 31 14:50:53 GMT 2024
    - 129.6K bytes
    - Click Count (2)
  8. docs/zh/docs/tutorial/query-params-str-validations.md

    /// tip | 提示
    
    Pydantic 还有 [`BeforeValidator`](https://docs.pydantic.dev/latest/concepts/validators/#field-before-validator) 等。🤓
    
    ///
    
    例如,这个自定义校验器会检查条目 ID 是否以 `isbn-`(用于 <abbr title="International Standard Book Number - 国际标准书号">ISBN</abbr> 书号)或 `imdb-`(用于 <abbr title="Internet Movie Database - 互联网电影数据库: 一个包含电影信息的网站">IMDB</abbr> 电影 URL 的 ID)开头:
    
    {* ../../docs_src/query_params_str_validations/tutorial015_an_py310.py hl[5,16:19,24] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 15.4K bytes
    - Click Count (0)
  9. src/main/java/jcifs/smb/SmbFile.java

                    // for scenarios where the same file or directory is accessed multiple times
                    log.trace("Tree handle released to connection pool for reuse");
                    // The connection pool will handle cleanup based on its own timeout settings
                }
            }
    
            // Clear attribute cache only if we're doing strict cleanup
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 103.2K bytes
    - Click Count (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            }
        }
    
        /**
         * This method is invoked twice during "normal" LookupInvoker level startup: once when (if present) extensions
         * are loaded up during Plexus DI creation, and once afterward as "normal" boot procedure.
         * <p>
         * If there are Maven3 passwords presents in settings, this results in doubled warnings emitted. So Plexus DI
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Oct 28 13:01:07 GMT 2025
    - 43.2K bytes
    - Click Count (0)
Back to Top