Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for confidentToSayBetter (0.27 sec)

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

            String.format("%.2f%%", differencePercentage)
        }
    
        String getFormattedConfidence() {
            String.format("%.1f%%", confidencePercentage)
        }
    
        boolean confidentToSayBetter() {
            return differencePercentage <= 0 && confidencePercentage > ENOUGH_REGRESSION_CONFIDENCE_THRESHOLD
        }
    
        boolean confidentToSayWorse() {
    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/PerformanceReportScenario.groovy

        boolean isFlaky() {
            return teamCityExecutions.size() > 1 && teamCityExecutions.count { it.successful } == 1
        }
    
        boolean isImproved() {
            return !crossBuild && currentExecutions.every { it.confidentToSayBetter() }
        }
    
        boolean isBuildFailed() {
            return teamCityExecutions.every { it.isBuildFailed() } && currentExecutions.empty
        }
    
        boolean isRegressed() {
    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/AbstractTablePageGenerator.java

                    if(scenario.isCrossBuild()) {
                        return "text-dark";
                    }
    
                    if (executionData.confidentToSayBetter()) {
                        return "text-success";
                    } else if (executionData.confidentToSayWorse()) {
                        return "text-danger";
                    } else {
    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