Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 511 - 520 of 1,005 for trip (0.02 seconds)

  1. docs/zh-hant/docs/tutorial/index.md

          <span style="background-color:#007166"><font color="#D3D7CF"> tip </font></span>  Running in development mode, for production use:
                 <b>fastapi run</b>
    
                 Logs:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  2. docs/zh/docs/tutorial/query-params-str-validations.md

    {* ../../docs_src/query_params_str_validations/tutorial002_an_py310.py hl[9] *}
    
    注意默认值依然是 `None`,所以该参数仍是可选的。
    
    但现在把 `Query(max_length=50)` 放到 `Annotated` 里,我们就在告诉 FastAPI,这个值需要**额外校验**,最大长度为 50 个字符。😎
    
    /// tip | 提示
    
    这里用的是 `Query()`,因为这是一个**查询参数**。稍后我们还会看到 `Path()`、`Body()`、`Header()` 和 `Cookie()`,它们也接受与 `Query()` 相同的参数。
    
    ///
    
    FastAPI 现在会:
    
    - 对数据进行**校验**,确保最大长度为 50 个字符
    - 当数据无效时向客户端展示**清晰的错误**
    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)
  3. docs/ja/docs/advanced/index.md

    # 高度なユーザーガイド { #advanced-user-guide }
    
    ## さらなる機能 { #additional-features }
    
    メインの[チュートリアル - ユーザーガイド](../tutorial/index.md)だけで、**FastAPI**の主要な機能を一通り把握するには十分なはずです。
    
    以降のセクションでは、その他のオプション、設定、追加機能を見ていきます。
    
    /// tip | 豆知識
    
    以降のセクションは、**必ずしも「高度」ではありません**。
    
    また、あなたのユースケースに対する解決策が、その中のどれかにある可能性もあります。
    
    ///
    
    ## 先にチュートリアルを読む { #read-the-tutorial-first }
    
    メインの[チュートリアル - ユーザーガイド](../tutorial/index.md)で得た知識があれば、**FastAPI**の機能の多くは引き続き利用できます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 1K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/tutorial/path-params.md

    匯入 `Enum` 並建立一個同時繼承自 `str` 與 `Enum` 的子類別。
    
    繼承自 `str` 之後,API 文件就能知道這些值的型別必須是 `string`,並能正確地呈現。
    
    然後建立具有固定值的類別屬性,這些就是可用的有效值:
    
    {* ../../docs_src/path_params/tutorial005_py310.py hl[1,6:9] *}
    
    /// tip
    
    如果你在想,「AlexNet」、「ResNet」和「LeNet」只是一些機器學習 <dfn title="嚴格來說是深度學習的模型架構">模型</dfn> 的名字。
    
    ///
    
    ### 宣告一個「路徑參數」 { #declare-a-path-parameter }
    
    接著使用你建立的列舉類別(`ModelName`)作為型別註記,建立一個「路徑參數」:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/GlobalBuildInfoPlugin.java

                            if (line.contains(":")) {
                                List<String> parts = Arrays.stream(line.split(":", 2)).map(String::trim).collect(Collectors.toList());
                                String name = parts.get(0);
                                String value = parts.get(1);
                                // the ID of the CPU socket
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 17 10:02:58 GMT 2021
    - 18.1K bytes
    - Click Count (0)
  6. docs/en/docs/contributing.md

    ```
    
    </div>
    
    It will serve the documentation on `http://127.0.0.1:8008`.
    
    That way, you can edit the documentation/source files and see the changes live.
    
    /// tip
    
    Alternatively, you can perform the same steps that scripts does manually.
    
    Go into the language directory, for the main docs in English it's at `docs/en/`:
    
    ```console
    $ cd docs/en/
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:59:26 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

         */
        protected String crawlingConfigInternal(final CrawlingConfigForm form) {
    
            String configName = form.crawlingConfigName;
            String configPath = form.crawlingConfigPath.trim();
            if (StringUtil.isBlank(configName)) {
                configName = StringUtils.abbreviate(configPath, 30);
            }
    
            // normalize
            final StringBuilder buf = new StringBuilder(1000);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 02:14:37 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsTasks.java

            }
        }
    
        private String collectProblems(String... problems) {
            return Stream.of(problems).map(String::trim).filter(s -> s.isEmpty() == false).collect(Collectors.joining("\n"));
        }
    
        private String checkNoneExists(String message, Stream<? extends Class<?>> stream) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 17.6K bytes
    - Click Count (0)
  9. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt

        matchesName(name.asString(), candidateName)
    
    
    private
    fun matchesName(name: String, candidateName: String) =
        name == candidateName.replace(".*\\$".toRegex(), "") // strip outer class names
    
    private
    val SINCE_REGEX = Regex("""@since ([^\s]+)""")
    
    private
    fun BodyDeclaration<*>.getSince(): String? =
        comment?.orElse(null)?.content?.let { content ->
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jun 06 17:52:09 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/metadata.md

    Você pode defini-los da seguinte maneira:
    
    {* ../../docs_src/metadata/tutorial001_py310.py hl[3:16, 19:32] *}
    
    /// tip | Dica
    
    Você pode escrever Markdown no campo `description` e ele será renderizado na saída.
    
    ///
    
    Com essa configuração, a documentação automática da API se pareceria com:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 6.2K bytes
    - Click Count (0)
Back to Top