Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for confidentToSayWorse (0.17 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)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

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