Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PerformanceReportScenario (0.46 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.performance.results
    
    /**
     * Represents a row in performance report, i.e. a specific scenario.
     */
    class PerformanceReportScenario {
        final PerformanceExperiment performanceExperiment
        /**
         * The executions read from TeamCity-build-generated-result-JSONs.
         */
        final List<PerformanceTestExecutionResult> teamCityExecutions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProvider.java

        @VisibleForTesting
        static final Comparator<PerformanceReportScenario> SCENARIO_COMPARATOR = comparing(PerformanceReportScenario::isBuildFailed).reversed()
            .thenComparing(comparing(PerformanceReportScenario::isFlaky).reversed())
            .thenComparing(PerformanceReportScenario::isSuccessful)
            .thenComparing(comparing(PerformanceReportScenario::isBuildFailed).reversed())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessDetectionPerformanceExecutionDataProvider.java

        public static final int MOST_RECENT_EXECUTIONS = 9;
        private static final Comparator<PerformanceReportScenario> SCENARIO_COMPARATOR =
            comparing(PerformanceReportScenario::isBuildFailed).reversed()
                .thenComparing(PerformanceReportScenario::isSuccessful)
                .thenComparing(comparing(PerformanceReportScenario::isBuildFailed).reversed())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProviderTest.groovy

        }
    
        private PerformanceReportScenario createFailedData() {
            return new PerformanceReportScenario(
                [new PerformanceTestExecutionResult(scenarioName: 'failed', status: 'FAILURE')],
                [Mock(PerformanceReportScenarioHistoryExecution)],
                false,
                false
            )
        }
    
        private PerformanceReportScenario createHighConfidenceImprovedData() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/IndexPageGenerator.java

                }
    
                @Override
                protected List<PerformanceReportScenario> getCrossVersionScenarios() {
                    return executionDataProvider.getReportScenarios().stream().filter(PerformanceReportScenario::isCrossVersion).collect(toList());
                }
    
                @Override
                protected List<PerformanceReportScenario> getCrossBuildScenarios() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessIndexPageGenerator.java

                    return false;
                }
    
                @Override
                protected List<PerformanceReportScenario> getCrossVersionScenarios() {
                    return new ArrayList<>(executionDataProvider.getReportScenarios());
                }
    
                @Override
                protected List<PerformanceReportScenario> getCrossBuildScenarios() {
                    return Collections.emptyList();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionDataProvider.java

        }
    
        public TreeSet<PerformanceReportScenario> getReportScenarios() {
            if (scenarioExecutions == null) {
                scenarioExecutions = readResultJsonAndQueryFromDatabase();
            }
    
            return scenarioExecutions;
        }
    
        public String getCommitId() {
            return commitId;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top