Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fetchModel (0.1 sec)

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

            file("a/build.gradle") << ""
            file("b/build.gradle") << ""
    
            when:
            def originalModel = fetchModel(GradleProject)
    
            then:
            fixture.assertNoConfigurationCache()
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model = fetchModel(GradleProject)
    
            then:
            fixture.assertStateStored {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiKotlinDslIntegrationTest.groovy

            """)
            withBuildScript()
            withBuildScriptIn("a")
    
            when:
            def originalModel = fetchModel(KotlinDslScriptsModel)
    
            then:
            fixture.assertNoConfigurationCache()
    
    
            when:
            withIsolatedProjects()
            def model = fetchModel(KotlinDslScriptsModel)
    
            then:
            fixture.assertStateStored {
                modelsCreated(":", KotlinDslScriptsModel)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheToolingApiInvocationIntegrationTest.groovy

            buildWithSomeToolingModelAndScriptLogStatement()
    
            when:
            def model = fetchModel()
    
            then:
            model.message == "It works from project :"
            outputContains("script log statement")
    
            when:
            def model2 = fetchModel()
    
            then:
            model2.message == "It works from project :"
            outputContains("script log statement")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top