Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 160 for modelled (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactsGraphVisitor.java

                }
            }
    
            if (node.isRoot() || hasTransitiveIncomingEdge) {
                // Since file dependencies are not modeled as actual edges, we need to verify
                // there are edges to this node that would follow this file dependency.
                for (LocalFileDependencyMetadata fileDependency : node.getOutgoingFileEdges()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/FunctionalSourceSetIntegrationTest.groovy

            buildFile << """
            apply plugin: 'language-base'
    
            @Managed
            interface BuildType {
                ModelMap<FunctionalSourceSet> getComponentSources()
                ModelSet<FunctionalSourceSet> getTestSources()
            }
    
            class Rules extends RuleSource {
                @Model
                void buildType(BuildType buildType) { }
    
                @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/internal/DefaultCppTestExecutable.java

        @Override
        public Property<RunTestExecutable> getRunTask() {
            return runTask;
        }
    
        @Override
        public FileCollection getCompileIncludePath() {
            // TODO: This should be modeled differently, perhaps as a dependency on the implementation configuration
            return super.getCompileIncludePath().plus(getProjectLayout().files(new Callable<FileCollection>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    === Convention plugins versus cross-configuration
    
    The two most common uses of cross-configuration can be better modeled using convention plugins:
    
    1. Applying plugins or other configurations to subprojects of a certain type. +
    Often, the cross-configuration logic is `if subproject is of type X, then configure Y`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/first-steps.md

    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Sie können ein `dict`, eine `list`, einzelne Werte wie `str`, `int`, usw. zurückgeben.
    
    Sie können auch Pydantic-Modelle zurückgeben (dazu später mehr).
    
    Es gibt viele andere Objekte und Modelle, die automatisch zu JSON konvertiert werden (einschließlich ORMs usw.). Versuchen Sie, Ihre Lieblingsobjekte zu verwenden. Es ist sehr wahrscheinlich, dass sie bereits unterstützt werden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 12:16:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                class Rules extends RuleSource {
                  @Model
                  void mapThings(ModelMap<ModelMap<Thing>> things) {
                  }
                  @Model
                  void setThings(ModelMap<ModelSet<Thing>> things) {
                  }
                  @Model
                  void setStrings(ModelMap<Set<String>> strings) {
                  }
                }
    
                apply type: Rules
    
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        .toList());
    
                project.setInjectedProfileIds("external", getProfileIds(result.getActiveExternalProfiles()));
                for (String modelId : result.getModelIds()) {
                    project.setInjectedProfileIds(modelId, getProfileIds(result.getActivePomProfiles(modelId)));
                }
    
                //
                // All the parts that were taken out of MavenProject for Maven 4.0.0
                //
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/schema-extra-example.md

    ### Pydantic- und FastAPI-`examples`
    
    Wenn Sie `examples` innerhalb eines Pydantic-Modells hinzufügen, indem Sie `schema_extra` oder `Field(examples=["something"])` verwenden, wird dieses Beispiel dem **JSON-Schema** für dieses Pydantic-Modell hinzugefügt.
    
    Und dieses **JSON-Schema** des Pydantic-Modells ist in der **OpenAPI** Ihrer API enthalten und wird dann in der Benutzeroberfläche der Dokumentation verwendet.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:53 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. docs/fr/docs/features.md

    * Documentation automatique des modèles de données avec <a href="http://json-schema.org/" class="external-link" target="_blank"><strong>JSON Schema</strong></a> (comme OpenAPI est aussi basée sur JSON Schema).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    En utilisant cette même astuce, vous pouvez utiliser un modèle Pydantic pour définir le schéma JSON qui est ensuite inclus dans la section de schéma OpenAPI personnalisée pour le *chemin* concerné.
    
    Et vous pouvez le faire même si le type de données dans la requête n'est pas au format JSON.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top