Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for model1 (0.1 sec)

  1. docs/em/docs/tutorial/response-model.md

    ## πŸ‘€ ⚫️ 🩺
    
    πŸ•β” πŸ‘† πŸ‘€ 🏧 🩺, πŸ‘† πŸ’ͺ βœ… πŸ‘ˆ πŸ”’ 🏷 & πŸ”’ 🏷 πŸ”œ πŸ‘―β€β™‚οΈ βœ”οΈ πŸ‘« πŸ‘ 🎻 πŸ”—:
    
    <img src="/img/tutorial/response-model/image01.png">
    
    &amp; πŸ‘―β€β™‚οΈ 🏷 πŸ”œ βš™οΈ πŸŽ“ πŸ› οΈ 🧾:
    
    <img src="/img/tutorial/response-model/image02.png">
    
    ## 🎏 πŸ“¨ πŸ†Ž ✍
    
    πŸ“€ 5οΈβƒ£πŸ“† πŸ’Ό πŸŒβ” πŸ‘† πŸ“¨ πŸ•³ πŸ‘ˆ 🚫 β˜‘ Pydantic πŸ‘ &amp; πŸ‘† ✍ ⚫️ πŸ”’, πŸ•΄ 🀚 πŸ•β€πŸ¦Ί 🚚 🏭 (πŸ‘¨β€πŸŽ¨, ✍, ♒️).
    
    ### πŸ“¨ πŸ“¨ πŸ”—
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

                return false;
            }
            Module module = (Module) o;
            return Objects.equal(dependencies, module.dependencies)
                && Objects.equal(excludeFolders, module.excludeFolders)
                && Objects.equal(outputDir, module.outputDir)
                && Objects.equal(sourceFolders, module.sourceFolders)
                && Objects.equal(generatedSourceFolders, module.generatedSourceFolders)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/response-model.md

    ## See it in the docs
    
    When you see the automatic docs, you can check that the input model and output model will both have their own JSON Schema:
    
    <img src="/img/tutorial/response-model/image01.png">
    
    And both models will be used for the interactive API documentation:
    
    <img src="/img/tutorial/response-model/image02.png">
    
    ## Other Return Type Annotations
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/module/module.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package module defines the module.Version type along with support code.
    //
    // The [module.Version] type is a simple Path, Version pair:
    //
    //	type Version struct {
    //		Path string
    //		Version string
    //	}
    //
    // There are no restrictions imposed directly by use of this structure,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

    import org.gradle.plugins.ide.internal.tooling.model.IsolatedGradleProjectInternal
    import org.gradle.tooling.model.idea.BasicIdeaProject
    import org.gradle.tooling.model.idea.IdeaContentRoot
    import org.gradle.tooling.model.idea.IdeaDependency
    import org.gradle.tooling.model.idea.IdeaJavaLanguageSettings
    import org.gradle.tooling.model.idea.IdeaModule
    import org.gradle.tooling.model.idea.IdeaModuleDependency
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

        }
    
        private void assertNoModelsQueried() {
            def models = modelRequests()
            assert models.empty
        }
    
        private void assertModelsQueried(HasIntermediateDetails details) {
            def models = modelRequests().toSorted { it.buildTreePath }
            def (buildScopedModels, projectScopedModels) = models.split { it.buildScoped }
            assert buildScopedModels.size() == details.buildModelQueries
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/sql-databases.md

    ## Create the Pydantic models
    
    Now let's check the file `sql_app/schemas.py`.
    
    !!! tip
        To avoid confusion between the SQLAlchemy *models* and the Pydantic *models*, we will have the file `models.py` with the SQLAlchemy models, and the file `schemas.py` with the Pydantic models.
    
        These Pydantic models define more or less a "schema" (a valid data shape).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/sql-databases-peewee.md

    ## Create the Pydantic models
    
    Now let's check the file `sql_app/schemas.py`.
    
    !!! tip
        To avoid confusion between the Peewee *models* and the Pydantic *models*, we will have the file `models.py` with the Peewee models, and the file `schemas.py` with the Pydantic models.
    
        These Pydantic models define more or less a "schema" (a valid data shape).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. docs/de/docs/features.md

    from pydantic import BaseModel
    
    # Deklarieren Sie eine Variable als ein `str`
    # und bekommen Sie Editor-UnterstΓΌtung innerhalb der Funktion
    def main(user_id: str):
        return user_id
    
    
    # Ein Pydantic-Modell
    class User(BaseModel):
        id: int
        name: str
        joined: date
    ```
    
    Das kann nun wie folgt verwendet werden:
    
    ```Python
    my_user: User = User(id=3, name="John Doe", joined="2018-07-19")
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 19:43:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. fastapi/encoders.py

            Doc(
                """
                Pydantic's `include` parameter, passed to Pydantic models to set the
                fields to include.
                """
            ),
        ] = None,
        exclude: Annotated[
            Optional[IncEx],
            Doc(
                """
                Pydantic's `exclude` parameter, passed to Pydantic models to set the
                fields to exclude.
                """
            ),
        ] = None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top