Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getScenarioCount (0.16 sec)

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

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

         */
        List<? extends PerformanceTestExecution> getExecutions();
    
        /**
         * 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();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

        public List<PerformanceTestExecution> getExecutions() {
            return newestFirst.stream().map(KnownBuildSpecificationsPerformanceTestExecution::new).collect(Collectors.toList());
        }
    
        @Override
        public int getScenarioCount() {
            return builds.size();
        }
    
        @Override
        public List<String> getScenarioLabels() {
            return Lists.transform(builds, BuildDisplayInfo::getDisplayName);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceTestHistory.java

                        return mostRecent.getDaemon();
                    }
                })
                .collect(Collectors.toList());
        }
    
        @Override
        public int getScenarioCount() {
            return getKnownVersions().size();
        }
    
        @Override
        public List<String> getScenarioLabels() {
            return getKnownVersions();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top