Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PerformanceTestRuntimesGenerator (0.53 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestRuntimesGenerator.java

    import java.util.List;
    import java.util.Map;
    import java.util.stream.Collectors;
    
    import static java.util.stream.Collectors.toMap;
    
    public class PerformanceTestRuntimesGenerator {
    
        public static void main(String[] args) throws IOException {
            new PerformanceTestRuntimesGenerator().generate(new File(args[0]));
        }
    
        public void generate(File runtimesFile) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

            }
    
            tasks.register<JavaExec>("writePerformanceTimes") {
                classpath(performanceSourceSet.runtimeClasspath)
                mainClass = "org.gradle.performance.results.PerformanceTestRuntimesGenerator"
                systemProperties(project.propertiesForPerformanceDb)
                args(repoRoot().file(".teamcity/performance-test-durations.json").asFile.absolutePath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top