Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getFormattedDifferencePercentage (0.3 sec)

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

        }
    
        double getConfidencePercentage() {
            return 100.0 * DataSeries.confidenceInDifference(baseVersion.totalTime, currentVersion.totalTime)
        }
    
        String getFormattedDifferencePercentage() {
            String.format("%.2f%%", differencePercentage)
        }
    
        String getFormattedConfidence() {
            String.format("%.1f%%", confidencePercentage)
        }
    
        boolean confidentToSayBetter() {
    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/report/AbstractTablePageGenerator.java

                                td().classAttr("text-muted").text("se: " + currentVersion.getStandardError().format()).end();
                                td().classAttr(getTextColorCss(scenario, execution)).text(execution.getFormattedDifferencePercentage()).end();
                                td().classAttr(getTextColorCss(scenario, execution)).text(execution.getFormattedConfidence()).end();
                            end();
                    });
                    end();
    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