Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gradlePropertyChanged (0.16 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            void fileChanged(String name) {
                changedFiles.add(name)
            }
    
            void taskInputChanged(String name) {
                changedTask = name
            }
    
            void gradlePropertyChanged() {
                changedGradleProperty = true
            }
    
            void systemPropertyChanged(String name) {
                changedSystemProperty = name
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

            model3[1].message == "It works from project :b"
    
            and:
            // TODO - should not invalidate all cached state
            fixture.assertStateRecreated {
                gradlePropertyChanged()
                buildModelQueries = 1 // TODO:configuration-cache ???
                projectConfigured(":buildSrc")
                projectsConfigured(":", ":a", ":b", ":c")
                modelsCreated(":a", ":b")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top