Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/AbstractTaskOutputCachingPerformanceTest.groovy

                        if (isLastRun(context, invocationSettings) && checkIfCacheUsed) {
                            assert !(buildCacheServer.cacheDir.allDescendants().empty && cacheDir.allDescendants().isEmpty())
                            assert pushToRemote || buildCacheServer.cacheDir.allDescendants().empty
                        }
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/api/plugins/JavaLibraryDistributionIntegrationTest.groovy

        implementation 'org.gradle.test:compile:1.0'
        compileOnly 'org.gradle.test:compileOnly:1.0'
    }
    """
            when:
            run "installDist"
    
            then:
            file('build/install/sample/lib').allDescendants() == ['compile-1.0.jar'] as Set
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. 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