Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultPerformanceExecutionDataProvider (0.33 sec)

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

    import java.util.TreeSet;
    
    import static java.util.Comparator.comparing;
    import static java.util.stream.Collectors.groupingBy;
    import static java.util.stream.Collectors.toList;
    
    public class DefaultPerformanceExecutionDataProvider extends PerformanceExecutionDataProvider {
        private static final int DEFAULT_RETRY_COUNT = 3;
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProviderTest.groovy

        @Subject
        DefaultPerformanceExecutionDataProvider provider
    
        File resultsJson = tmpDir.file('results.json')
        ResultsStore mockStore = Mock(ResultsStore)
    
        def setup() {
            resultsJson << '[]'
            provider = new DefaultPerformanceExecutionDataProvider(mockStore, [resultsJson], [] as Set)
        }
    
        def 'can sort scenarios correctly'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractReportGenerator.java

        }
    
        protected PerformanceExecutionDataProvider getExecutionDataProvider(ResultsStore store, List<File> resultJsons, Set<String> performanceTestBuildIds) {
            return new DefaultPerformanceExecutionDataProvider(store, resultJsons, performanceTestBuildIds);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top