Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getScenarioLabels (0.26 sec)

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

                PerformanceTestExecution results = sortedExecutions.get(index);
                MeasuredOperationList baselineVersion = results.getScenarios().get(testHistory.getScenarioLabels().indexOf(label));
                MeasuredOperationList currentVersion = results.getScenarios().get(testHistory.getScenarioLabels().size() - 1);
                return baselineVersion.isEmpty() ? null : Arrays.asList(index, dataExtractor.apply(baselineVersion, currentVersion));
    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/main/groovy/org/gradle/performance/results/EmptyPerformanceTestHistory.java

            return ImmutableList.of();
        }
    
        @Override
        public int getScenarioCount() {
            return 0;
        }
    
        @Override
        public List<String> getScenarioLabels() {
            return ImmutableList.of();
        }
    
        @Override
        public List<? extends ScenarioDefinition> getScenarios() {
            return ImmutableList.of();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestHistory.java

         * Returns the number of scenarios for this performance test.
         */
        int getScenarioCount();
    
        /**
         * Returns the display names for the scenarios of this performance test.
         */
        List<String> getScenarioLabels();
    
        /**
         * Returns the scenarios that are executed for this performance test.
         */
        List<? extends ScenarioDefinition> getScenarios();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

        }
    
        @Override
        public int getScenarioCount() {
            return builds.size();
        }
    
        @Override
        public List<String> getScenarioLabels() {
            return Lists.transform(builds, BuildDisplayInfo::getDisplayName);
        }
    
        @Override
        public List<? extends ScenarioDefinition> getScenarios() {
            return builds.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceTestHistory.java

                .collect(Collectors.toList());
        }
    
        @Override
        public int getScenarioCount() {
            return getKnownVersions().size();
        }
    
        @Override
        public List<String> getScenarioLabels() {
            return getKnownVersions();
        }
    
        private class KnownVersionsPerformanceTestExecution implements PerformanceTestExecution {
            private final CrossVersionPerformanceResults result;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                end();
                tr();
                th().text("Date").end();
                th().text("Branch").end();
                th().text("Git commit").end();
                for (String label : testHistory.getScenarioLabels()) {
                    renderHeaderForSamples(label);
                }
                th().text("Confidence").end();
                th().text("Difference").end();
                th().text("Test version").end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top