Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for setScenarios (0.36 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

                    }
                }
            }
            filter.setCommandLineIncludePatterns(classOnlyFilters)
            setScenarios(scenarios.join(";"))
        }
    
        @Option(option = "scenarios", description = "A semicolon-separated list of performance test scenario ids to run.")
        void setScenarios(String scenarios) {
            this.scenarios = scenarios
        }
    
        @Optional
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                    th().text("Gradle args").end();
                    th().text("Gradle JVM args").end();
                    th().text("Daemon").end();
                end();
                for (ScenarioDefinition scenario : testHistory.getScenarios()) {
                    tr();
                        textCell(scenario.getDisplayName());
                        textCell(scenario.getTestProject());
                        textCell(scenario.getTasks());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionDataProvider.java

        private PerformanceReportScenarioHistoryExecution extractExecutionData(PerformanceTestExecution performanceTestExecution) {
            List<MeasuredOperationList> nonEmptyExecutions = performanceTestExecution
                .getScenarios()
                .stream()
                .filter(testExecution -> !testExecution.getTotalTime().isEmpty())
                .collect(toList());
            if (nonEmptyExecutions.size() > 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top