Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for confidentToSayWorse (0.22 sec)

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

        }
    
        boolean confidentToSayBetter() {
            return differencePercentage <= 0 && confidencePercentage > ENOUGH_REGRESSION_CONFIDENCE_THRESHOLD
        }
    
        boolean confidentToSayWorse() {
            return differencePercentage > 0 && confidencePercentage > ENOUGH_REGRESSION_CONFIDENCE_THRESHOLD
        }
    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 isSuccessful() {
            return teamCityExecutions.every { it.isSuccessful() }
        }
    
        boolean isAboutToRegress() {
            return !crossBuild && currentExecutions.any { it.confidentToSayWorse() }
        }
    
        double getDifferenceSortKey() {
            if (currentExecutions.empty) {
                return Double.NEGATIVE_INFINITY
            }
            def firstExecution = currentExecutions[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top