Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for getScenario (0.28 sec)

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

            this.scenario = scenario;
        }
    
        public String getDisplayName() {
            return getScenario().getTestName() + " | " + getTestProject() + " | " + scenario.getSimpleClassName();
        }
    
        public String getTestProject() {
            return testProject;
        }
    
        public PerformanceScenario getScenario() {
            return scenario;
        }
    
        @Override
        public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestRuntimesGenerator.java

                    estimatedExperimentDurations.entrySet().stream()
                        .collect(Collectors.groupingBy(
                            it -> it.getKey().getPerformanceExperiment().getScenario(),
                            LinkedHashMap::new,
                            Collectors.toList())
                        );
                List<PerformanceScenarioDurations> json = performanceScenarioMap.entrySet().stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/GradleProfilerReporter.java

        }
    
        @Override
        public void report(PerformanceTestResult results) {
            PerformanceExperiment experiment = results.getPerformanceExperiment();
            File baseDir = outputDirSelector.outputDirFor(experiment.getScenario().getTestName());
            baseDir.mkdirs();
            compositeReportGenerator.setGenerators(ImmutableList.of(
                new CsvGenerator(new File(baseDir, "benchmark.csv"), Format.LONG),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionGraphRenderer.java

            return execution.getScenarios().size() > 1;
        }
    
        default boolean hasData(MeasuredOperationList measuredOperations) {
            return !measuredOperations.getTotalTime().isEmpty();
        }
    
        default ExecutionGraph toExecutionGraph(PerformanceTestExecution execution, int index) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

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

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

        long getEndTime();
    
        List<String> getVcsCommits();
    
        /**
         * Returns the results of the scenarios executed as part of this performance test.
         */
        List<MeasuredOperationList> getScenarios();
    
        String getOperatingSystem();
    
        String getHost();
    
        String getJvm();
    
        /**
         * The test project name. Null if not known or not constant for all experiments
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceTestHistory.java

            return getResults().stream().map(KnownVersionsPerformanceTestExecution::new).collect(Collectors.toList());
        }
    
        @Override
        public List<? extends ScenarioDefinition> getScenarios() {
            if (newestFirst.isEmpty()) {
                return Collections.emptyList();
            }
            CrossVersionPerformanceResults mostRecent = newestFirst.get(0);
            return getKnownVersions().stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestHistory.java

         */
        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)
Back to top