Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for getScenario (0.87 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/BaseCrossBuildResultsStore.java

                ) {
                    int idx = 0;
                    executionsForName.setString(++idx, experiment.getScenario().getClassName());
                    executionsForName.setString(++idx, experiment.getScenario().getTestName());
                    executionsForName.setString(++idx, experiment.getTestProject());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                    int idx = 0;
                    executionsForName.setFetchSize(mostRecentN);
                    executionsForName.setString(++idx, experiment.getScenario().getClassName());
                    executionsForName.setString(++idx, experiment.getScenario().getTestName());
                    executionsForName.setString(++idx, experiment.getTestProject());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                    .map(baselineVersion -> "-PperformanceBaselines='" + baselineVersion.getVersion() + "'")
                    .orElse("");
            }
            PerformanceScenario scenario = history.getExperiment().getScenario();
            return String.format("To reproduce, run ./gradlew :%s:%sPerformanceAdhocTest --tests '%s' %s",
                projectName,
                history.getExperiment().getTestProject(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top