Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for PerformanceReportScenarioHistoryExecution (0.5 sec)

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

     */
    class PerformanceReportScenarioHistoryExecution {
        private static final int ENOUGH_REGRESSION_CONFIDENCE_THRESHOLD = 90
        Instant time
        String teamCityBuildId
        String commitId
        String shortCommitId
        MeasuredOperationList baseVersion
        MeasuredOperationList currentVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ScenarioResult.java

        }
    
        private final Status status;
        private final List<PerformanceTestExecutionResult> individualResults;
        private final List<PerformanceReportScenarioHistoryExecution> currentBuildExecutions = new ArrayList<>();
        private final List<PerformanceReportScenarioHistoryExecution> recentExecutions = new ArrayList<>();
        private final boolean crossVersion;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProviderTest.groovy

            MeasuredOperationList baseVersion = measuredOperationList(baseVersionResult)
            MeasuredOperationList currentVersion = measuredOperationList(currentVersionResult)
            PerformanceReportScenarioHistoryExecution historyExecution = new PerformanceReportScenarioHistoryExecution(new Date().getTime(), 'teamCityBuild', '', baseVersion, currentVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProvider.java

    import org.apache.commons.lang.StringUtils;
    import org.gradle.performance.results.CrossBuildPerformanceTestHistory;
    import org.gradle.performance.results.PerformanceReportScenario;
    import org.gradle.performance.results.PerformanceReportScenarioHistoryExecution;
    import org.gradle.performance.results.PerformanceTestExecutionResult;
    import org.gradle.performance.results.PerformanceTestHistory;
    import org.gradle.performance.results.ResultsStore;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionDataProvider.java

        }
    
        protected List<PerformanceReportScenarioHistoryExecution> removeEmptyExecution(List<? extends PerformanceTestExecution> executions) {
            return executions.stream().map(this::extractExecutionData).filter(Objects::nonNull).collect(toList());
        }
    
        private PerformanceReportScenarioHistoryExecution extractExecutionData(PerformanceTestExecution performanceTestExecution) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceReportScenario.groovy

         */
        final List<PerformanceReportScenarioHistoryExecution> currentExecutions
    
        /**
         * The execution read from performance database, excluding current executions
         */
        final List<PerformanceReportScenarioHistoryExecution> historyExecutions
    
        final boolean crossBuild
    
        final boolean fromCache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceFlakinessDataProvider.java

         */
        BigDecimal getFailureThreshold(PerformanceExperiment experiment);
    
        ScenarioRegressionResult getScenarioRegressionResult(PerformanceExperiment experiment, PerformanceReportScenarioHistoryExecution execution);
    
        enum ScenarioRegressionResult {
            STABLE_REGRESSION(true),
            SMALL_FLAKY_REGRESSION(false),
            BIG_FLAKY_REGRESSION(true);
    
            private final boolean failsBuild;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/DefaultPerformanceFlakinessDataProvider.java

            return failureThresholds.get(experiment);
        }
    
        @Override
        public ScenarioRegressionResult getScenarioRegressionResult(PerformanceExperiment experiment, PerformanceReportScenarioHistoryExecution execution) {
            return getScenarioRegressionResult(experiment, execution.getDifferencePercentage());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

    import org.gradle.performance.results.PerformanceFlakinessDataProvider;
    import org.gradle.performance.results.PerformanceReportScenario;
    import org.gradle.performance.results.PerformanceReportScenarioHistoryExecution;
    import org.gradle.performance.results.PerformanceTestExecutionResult;
    import org.gradle.performance.results.PerformanceTestHistory;
    import org.gradle.performance.results.ResultsStore;
    
    import java.io.Writer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top