Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 711 - 720 of 760 for cmetadata (0.05 seconds)

  1. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

      }
    
      private static boolean hasAutomaticNullChecksFromKotlin(Member member) {
        for (Annotation annotation : member.getDeclaringClass().getAnnotations()) {
          if (annotation.annotationType().getName().equals("kotlin.Metadata")) {
            return true;
          }
        }
        return false;
      }
    
      /**
       * Returns true if the given member is a method that overrides {@link Object#equals(Object)}.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jul 14 14:44:08 GMT 2025
    - 24.9K bytes
    - Click Count (0)
  2. docs/fr/docs/tutorial/sql-databases.md

    ### Créer les tables { #create-the-tables }
    
    Nous ajoutons ensuite une fonction qui utilise `SQLModel.metadata.create_all(engine)` pour **créer les tables** pour tous les *modèles de table*.
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[21:22] hl[21:22] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

         *
         * @return The POM file from which this model originated or {@code null} if this model does not belong to a local
         *         project (e.g. describes the metadata of some artifact from the repository).
         *
         * @deprecated Use {@link #getPomPath()} instead.
         */
        @Deprecated(since = "4.0.0")
        public java.io.File getPomFile() {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 17 09:48:21 GMT 2026
    - 133.5K bytes
    - Click Count (0)
  4. fastapi/dependencies/utils.py

                return deepcopy(field.default), []
        return field.validate(value, values, loc=loc)
    
    
    def _is_json_field(field: ModelField) -> bool:
        return any(type(item) is Json for item in field.field_info.metadata)
    
    
    def _get_multidict_value(
        field: ModelField, values: Mapping[str, Any], alias: str | None = None
    ) -> Any:
        alias = alias or get_validation_alias(field)
        if (
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 38.7K bytes
    - Click Count (3)
  5. docs/ja/docs/python-types.md

    ///
    
    **FastAPI** はすべて Pydantic をベースにしています。
    
    すべてのことは [チュートリアル - ユーザーガイド](tutorial/index.md) で実際に見ることができます。
    
    ## メタデータアノテーション付き型ヒント { #type-hints-with-metadata-annotations }
    
    Python には、`Annotated` を使って型ヒントに **追加の <dfn title="データに関するデータ。この場合は型に関する情報(例えば説明)。">メタデータ</dfn>** を付与できる機能もあります。
    
    `Annotated` は `typing` からインポートできます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  6. guava-testlib/src/com/google/common/testing/NullPointerTester.java

      }
    
      private static boolean hasAutomaticNullChecksFromKotlin(Member member) {
        for (Annotation annotation : member.getDeclaringClass().getAnnotations()) {
          if (annotation.annotationType().getName().equals("kotlin.Metadata")) {
            return true;
          }
        }
        return false;
      }
    
      /**
       * Returns true if the given member is a method that overrides {@link Object#equals(Object)}.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jul 14 14:44:08 GMT 2025
    - 25.4K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/tutorial/sql-databases.md

    別擔心,依照我們的程式結構,稍後我們會確保「每個請求只使用單一 SQLModel 的 session」,這其實就是 `check_same_thread` 想要達成的事。
    
    ### 建立資料表 { #create-the-tables }
    
    接著我們新增一個函式,使用 `SQLModel.metadata.create_all(engine)` 為所有「資料表模型」建立資料表。
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[21:22] hl[21:22] *}
    
    ### 建立 Session 依賴 { #create-a-session-dependency }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  8. docs/changelogs/changelog_2x.md

     * Update NPN dependency to target `jdk7u60-b13` and `Oracle jdk7u55-b13`.
     * Ensure SPDY variants support zero-length DELETE and POST.
     * Prevent leaking a cache item's InputStreams when metadata read fails.
     * Use a string to identify TLS versions in routes.
     * Add frame logger for HTTP/2.
     * Replacing `httpMinorVersion` with `Protocol`. Expose HTTP/1.0 as a potential protocol.
     * Use `Protocol` to describe framing.
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 26.6K bytes
    - Click Count (0)
  9. docs/ja/docs/tutorial/sql-databases.md

    心配はいりません。このコードの構成では、後で「1 リクエストにつき 1 つの SQLModel セッション」を確実に使うようにします。実際、`check_same_thread` はそれを実現しようとしています。
    
    ### テーブルの作成 { #create-the-tables }
    
    `SQLModel.metadata.create_all(engine)` を使って、すべてのテーブルモデルのテーブルを作成する関数を追加します。
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[21:22] hl[21:22] *}
    
    ### Session 依存関係の作成 { #create-a-session-dependency }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 18K bytes
    - Click Count (0)
  10. CHANGELOG/CHANGELOG-1.36.md

    - CustomResourceDefinitions: Fixed server-side apply field ownership tracking so that metadata ownership is correctly tracked for writes to the /status subresource.
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 23:38:00 GMT 2026
    - 142.1K bytes
    - Click Count (0)
Back to Top