Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for getScenario (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

            return channel.startsWith("flakiness-detection")
        }
    
        @Override
        @TaskAction
        void executeTests() {
            performanceTestService.get()
            if (getScenarios() == null) {
                moveMethodFiltersToScenarios()
            }
            try {
                super.executeTests()
            } catch (GradleException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
Back to top