Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for buildModelCreated (0.38 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            then:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                buildModelCreated()
                modelsCreated(":", SomeToolingModel, SomeToolingModel) // only 2 models are created for 2 unique parameters of 4 requests
            }
            outputContains("configuring root")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            model[1].message == "It works from project :a"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                projectConfigured(":b")
                buildModelCreated()
                modelsCreated(":")
                modelsCreated(":a")
            }
            outputContains("creating model for root project 'root'")
            outputContains("creating model for project ':a'")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCompositeBuildsIntegrationTest.groovy

            model[1].message == "It works from project :a"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                projectConfigured(":b")
                buildModelCreated()
                modelsCreated(":", ":a")
            }
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model2 = runBuildAction(new FetchCustomModelForEachProjectInTree())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingModelsWithDependencyResolutionIntegrationTest.groovy

            model[3].message == "project :d classpath = 0"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                projectConfigured(":")
                buildModelCreated()
                modelsCreated(":a", ":b", ":c", ":d")
            }
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model2 = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

            model[1].message == "It works from project :a"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                projectConfigured(":b")
                buildModelCreated()
                modelsCreated(":", ":a")
            }
            outputContains("creating model for root project 'root'")
            outputContains("creating model for project ':a'")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsJavaPluginIntegrationTest.groovy

            runBuildAction(new FetchCustomModelForEachProjectInParallel())
    
            then:
            fixture.assertStateStored {
                projectsConfigured(":buildSrc", ":", ":a", ":b")
                buildModelCreated()
                modelsCreated(":a", ":b")
            }
        }
    
        def "java projects with a valid cross-references can be configured in a parallel"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

            model[2].message == "It works from project :c"
    
            and:
            fixture.assertStateStoredWithProblems {
                projectConfigured(":buildSrc")
                projectsConfigured(":")
                buildModelCreated()
                modelsCreated(":a", ":b", ":c")
                problem("Build file 'build.gradle': line 3: Project ':' cannot access 'Project.plugins' functionality on another project ':a'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

            model[1].message == "It works from project :a"
            model[2].message == "It works from project :b"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                buildModelCreated()
                modelsCreated(":", ":a", ":b")
            }
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model2 = runBuildAction(new FetchCustomModelForEachProjectInParallel())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiModelQueryIntegrationTest.groovy

            model.projects[0].name == "root"
            model.projects[1].name == "a"
            model.projects[2].name == "b"
    
            and:
            fixture.assertStateStored {
                buildModelCreated()
            }
            outputContains("configuring build")
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model2 = fetchModel(GradleBuild)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleLifecycleIntegrationTest.groovy

            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            fixture.assertStateStored {
                projectsConfigured(":buildSrc", ":b")
                buildModelCreated()
                modelsCreated(":", ":a")
            }
    
            outputContains("Callback before root project 'root'")
            outputContains("Callback before project ':a'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top