Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestDataGenerator (0.13 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

    import java.util.Map;
    import java.util.Objects;
    import java.util.function.BiFunction;
    import java.util.function.Function;
    import java.util.stream.Collectors;
    import java.util.stream.IntStream;
    
    public class TestDataGenerator extends ReportRenderer<PerformanceTestHistory, Writer> {
    
        @Override
        public void render(PerformanceTestHistory testHistory, Writer output) throws IOException {
            PrintWriter out = new PrintWriter(output);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. 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)
Back to top