Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PerformanceTestGradleDistribution (0.26 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestGradleDistribution.groovy

     * which live at different depth inside the Gradle repository.
     */
    @CompileStatic
    class PerformanceTestGradleDistribution implements GradleDistribution {
        @Delegate
        final GradleDistribution delegate
        final File testDir
    
        private TestFile gradleHome
    
        PerformanceTestGradleDistribution(GradleDistribution delegate, File testDir) {
            this.delegate = delegate
            this.testDir = testDir
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

                .measureGarbageCollection(measureGarbageCollection)
                .invocation {
                    workingDirectory(workingDir)
                    distribution(new PerformanceTestGradleDistribution(dist, workingDir))
                    tasksToRun(this.tasksToRun as String[])
                    cleanTasks(this.cleanTasks as String[])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top