Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BackgroundColor (0.14 sec)

  1. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestDataGeneratorTest.groovy

            TestDataGenerator.BackgroundColor.ofConfidence([0, 70]) == null
            TestDataGenerator.BackgroundColor.ofConfidence([0, 60]) == null
            TestDataGenerator.BackgroundColor.ofConfidence([0, 0]) == null
            TestDataGenerator.BackgroundColor.ofConfidence([0, -40]) == null
            TestDataGenerator.BackgroundColor.ofConfidence([0, -50]) == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

            }
    
            public List<String> getCommits() {
                return commits;
            }
        }
    
        static class BackgroundColor {
            private static final int THRESHOLD = 80;
            private Map xaxis;
            private String color;
    
            static BackgroundColor ofConfidence(List<Number> xy) {
                double index = xy.get(0).doubleValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top