Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cleanupNow (0.09 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

            trashFile.text = "junk"
    
            when:
            succeeds("assertVersion", "-PrepoVersion=1.0")
            then:
            trashFile.assertExists()
    
            when:
            cleanupNow()
            succeeds("assertVersion", "-PrepoVersion=1.0")
            then:
            // checkout was used recently, so it should still be kept around
            trashFile.assertExists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/NestedManagedTypeIntegrationTest.groovy

                    void defaultOs(@Path('platform.operatingSystem') OperatingSystem os) {
                        os.name = "default"
                    }
    
                    @Finalize
                    void cleanUpOs(@Path('platform.operatingSystem') OperatingSystem os) {
                        os.name += " x86"
                    }
    
                    @Mutate
                    void addPersonTask(ModelMap<Task> tasks, Platform platform) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top