Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for allDescendants (0.15 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/JarTestFixture.groovy

            } finally {
                zipFile.close()
            }
        }
    
        @Override
        def hasDescendants(String... relativePaths) {
            String[] allDescendants = relativePaths + JarFile.MANIFEST_NAME
            return super.hasDescendants(allDescendants)
        }
    
        JavaVersion getJavaVersion() {
            JarFile jarFile = new JarFile(file)
            try {
                //take the first class file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:13:17 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            def confCacheDir = file("./app/.gradle/configuration-cache")
            confCacheDir.isDirectory()
            def confCacheFiles = confCacheDir.allDescendants().findAll { it != 'configuration-cache.lock' && it != 'gc.properties' }
            confCacheFiles.size() == 5 // header, 2 * fingerprint, root build state file, included build state file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top