Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 791 - 800 of 918 for trip (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/en/docs/fastapi-people.md

    These are the users that have been [helping others the most with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github). 🙇
    
    They have proven to be **FastAPI Experts** by helping many others. ✨
    
    /// tip
    
    You could become an official FastAPI Expert too!
    
    Just [help others with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github). 🤓
    
    ///
    
    You can see the **FastAPI Experts** for:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9K bytes
    - Click Count (0)
  2. docs/ja/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

    {* ../../docs_src/pydantic_v1_in_v2/tutorial004_an_py310.py hl[4,18] *}
    
    ### 段階的に移行 { #migrate-in-steps }
    
    /// tip | 豆知識
    
    まずは `bump-pydantic` を試してください。テストが通り、問題なければコマンド一発で完了です。✨
    
    ///
    
    `bump-pydantic` が適用できない場合は、同一アプリで v1 と v2 のモデルを併用できるサポートを利用して、徐々に v2 へ移行できます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  3. docs/ja/docs/tutorial/response-status-code.md

        * 例えば、`404`は「Not Found」レスポンスです。
        * クライアントからの一般的なエラーについては、`400`を使用することができます。
    * `500 - 599` はサーバーエラーのためのものです。これらを直接使うことはほとんどありません。アプリケーションコードやサーバーのどこかで何か問題が発生した場合、これらのステータスコードのいずれかが自動的に返されます。
    
    /// tip | 豆知識
    
    それぞれのステータスコードとどのコードが何のためのコードなのかについての詳細は、[<abbr title="Mozilla Developer Network - Mozilla 開発者ネットワーク">MDN</abbr> のHTTPステータスコードに関するドキュメント](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status)を参照してください。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  4. docs/tr/docs/_llm-test.md

    /// info | Bilgi
    Bazı metin
    ///
    
    /// note | Not
    Bazı metin
    ///
    
    /// note | Teknik Detaylar
    Bazı metin
    ///
    
    /// check | Ek bilgi
    Bazı metin
    ///
    
    /// tip | İpucu
    Bazı metin
    ///
    
    /// warning | Uyarı
    Bazı metin
    ///
    
    /// danger | Tehlike
    Bazı metin
    ///
    
    ////
    
    //// tab | Bilgi
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  5. docs/ja/docs/tutorial/first-steps.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 14:07:17 GMT 2026
    - 15.9K bytes
    - Click Count (0)
  6. docs/ja/docs/tutorial/query-params.md

    {* ../../docs_src/query_params/tutorial006_py310.py hl[8] *}
    
    この場合、3つのクエリパラメータがあります。:
    
    * `needy`、必須の `str` 。
    * `skip`、デフォルト値を `0` とする `int` 。
    * `limit`、オプショナルな `int` 。
    
    /// tip | 豆知識
    
    [パスパラメータ](path-params.md#predefined-values)と同様に `Enum` を使用できます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  7. src/main/java/jcifs/smb1/UniAddress.java

                final int[] tmp = new int[4];
                final StringTokenizer st = new StringTokenizer(ro, ",");
                int i = 0;
                while (st.hasMoreTokens()) {
                    final String s = st.nextToken().trim();
                    if (s.equalsIgnoreCase("LMHOSTS")) {
                        tmp[i] = RESOLVER_LMHOSTS;
                        i++;
                    } else if (s.equalsIgnoreCase("WINS")) {
                        if (nbns == null) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 17K bytes
    - Click Count (0)
  8. guava-gwt/pom.xml

            </executions>
          </plugin>
        </plugins>
        <resources>
          <resource>
            <directory>src</directory>
          </resource>
          <!-- src-super is copied to guava-gwt-sources (so that we can strip its @Nullable annotations), so we don't need to list it here. We may want to arrange something similar for test-super someday. -->
          <!-- TODO(cpovirk): Why do we have separate src and src-super directories, anyway? -->
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jan 12 15:19:17 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

         */
        protected boolean isTargetValue(final Object value) {
            if (value == null) {
                return !excludesNull;
            }
            if (value instanceof String && excludesWhitespace && ((String) value).trim().isEmpty()) {
                return !excludesWhitespace;
            }
            return true;
        }
    
        /**
         * Converts the source property name to the destination property name for use in a {@literal Map}.
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  10. docs/ko/docs/tutorial/body-nested-models.md

    ---
    
    또 다른 유용한 경우는 다른 타입(예: `int`)의 키를 갖고 싶을 때입니다.
    
    여기서 그 경우를 볼 것입니다.
    
    이 경우, `int` 키와 `float` 값을 가진 한 어떤 `dict`든 받아들입니다:
    
    {* ../../docs_src/body_nested_models/tutorial009_py310.py hl[7] *}
    
    /// tip | 팁
    
    JSON은 키로 `str`만 지원한다는 것을 염두에 두세요.
    
    하지만 Pydantic은 자동 데이터 변환 기능이 있습니다.
    
    즉, API 클라이언트는 키로 문자열만 보낼 수 있더라도, 해당 문자열이 순수한 정수를 포함하기만 하면 Pydantic이 이를 변환하고 검증합니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 7.7K bytes
    - Click Count (0)
Back to Top