Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for asDoubleList (0.35 sec)

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

    public class Line {
        String label;
        List<List<Number>> data;
    
        public Line(MeasuredOperationList measuredOperations) {
            List<Double> points = measuredOperations.getTotalTime().asDoubleList();
            this.label = measuredOperations.getName();
            this.data = IntStream.range(0, points.size())
                .mapToObj(index -> Arrays.<Number>asList(index, points.get(index)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/DataSeries.java

            return 1 - new MannWhitneyUTest().mannWhitneyUTest(first.asDoubleArray(), second.asDoubleArray());
        }
    
        public List<Double> asDoubleList() {
            return stream().map(Amount::getValue).map(BigDecimal::doubleValue).collect(Collectors.toList());
        }
    
        private double[] asDoubleArray() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top