Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,070 for Model (0.2 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/api/services/model/LifecycleBindingsInjector.java

        /**
         * Injects plugin executions induced by lifecycle bindings into the specified model. The model has already undergone
         * injection of plugin management so any plugins that are injected by lifecycle bindings and are not already present
         * in the model's plugin section need to be subjected to the model's plugin management.
         *
         * @param model The model into which to inject the default plugin executions for its packaging, must not be
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. fastapi/openapi/utils.py

        all_fields = get_fields_from_routes(list(routes or []) + list(webhooks or []))
        model_name_map = get_compat_model_name_map(all_fields)
        schema_generator = GenerateJsonSchema(ref_template=REF_TEMPLATE)
        field_mapping, definitions = get_definitions(
            fields=all_fields,
            schema_generator=schema_generator,
            model_name_map=model_name_map,
            separate_input_output_schemas=separate_input_output_schemas,
        )
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 21.8K bytes
    - Viewed (0)
  3. tests/test_response_by_alias.py

    def read_dict():
        return {"alias": "Foo"}
    
    
    @app.get("/model", response_model=Model, response_model_by_alias=False)
    def read_model():
        return Model(alias="Foo")
    
    
    @app.get("/list", response_model=List[Model], response_model_by_alias=False)
    def read_list():
        return [{"alias": "Foo"}, {"alias": "Bar"}]
    
    
    @app.get("/by-alias/dict", response_model=Model)
    def by_alias_dict():
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 11.1K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/projects/StageProject.kt

    import jetbrains.buildServer.configs.kotlin.RelativeId
    import model.CIBuildModel
    import model.FlameGraphGeneration
    import model.FunctionalTestBucketProvider
    import model.GRADLE_BUILD_SMOKE_TEST_NAME
    import model.PerformanceTestBucketProvider
    import model.PerformanceTestCoverage
    import model.SpecificBuild
    import model.Stage
    import model.StageName
    import model.TestCoverage
    import model.TestType
    
    class StageProject(
        model: CIBuildModel,
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

    import jetbrains.buildServer.configs.kotlin.failureConditions.BuildFailureOnText
    import model.ALL_CROSS_VERSION_BUCKETS
    import model.CIBuildModel
    import model.DefaultFunctionalTestBucketProvider
    import model.JsonBasedGradleSubprojectProvider
    import model.QUICK_CROSS_VERSION_BUCKETS
    import model.TestCoverage
    import model.TestType
    import model.ignoredSubprojects
    import org.junit.jupiter.api.Assertions.assertEquals
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jan 02 10:00:06 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  6. maven-core/plugin-manager.txt

    * Execution model
    * Metadata model
    * Metadata tooling
     ** Metadata extractor
     ** Metadata reader
     ** Metadata writer
     ** Metadata adapter (if required for the target system)
    * Maven packaging and lifecycle
    * Maven test harness for plugin execution model
    * Eclipse IDE tooling for plugin execution model and metadata model
    
    - we also seem to have information like the plugin lifecycle model that's buried inside the maven execution model
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  7. api/maven-api-model/src/site/apt/index.apt

     -----
    
    Maven 4 API - Immutable Maven Model
    
     This is strictly the immutable model for Maven POM (Project Object Model), so really just plain objects in <<<org.apache.maven.api.model>>> package.
    
     The following are generated from this model:
    
       * {{{./apidocs/index.html}Java sources}} with <<<Builder>>> inner classes for immutable instances creation.
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Dec 31 16:32:07 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  8. utils/tests/models.go

    	Active    bool
    }
    
    type Account struct {
    	gorm.Model
    	UserID sql.NullInt64
    	Number string
    }
    
    type Pet struct {
    	gorm.Model
    	UserID *uint
    	Name   string
    	Toy    Toy `gorm:"polymorphic:Owner;"`
    }
    
    type Toy struct {
    	gorm.Model
    	Name      string
    	OwnerID   string
    	OwnerType string
    }
    
    type Tools struct {
    	gorm.Model
    	Name     string
    	CustomID string
    	Type     string
    }
    
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Fri Dec 15 08:36:08 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

    package configurations
    
    import common.Os.LINUX
    import model.CIBuildModel
    import model.Stage
    
    class BuildDistributions(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id("${model.projectId}_BuildDistributions")
        name = "Build Distributions"
        description = "Creation and verification of the distribution and documentation"
    
        applyDefaults(
            model,
            this,
            "packageBuild",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Sep 22 09:52:00 GMT 2023
    - 970 bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingHelper.java

    package org.apache.maven.project;
    
    import java.util.List;
    
    import org.apache.maven.artifact.InvalidRepositoryException;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.model.Model;
    import org.apache.maven.model.Repository;
    import org.apache.maven.plugin.PluginManagerException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    
    /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.7K bytes
    - Viewed (0)
Back to top