Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getEstimatedExperimentDurationsInMillis (0.94 sec)

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

            return store.getTestResults(experiment, mostRecentN, maxDaysOld, channelPatterns, teamcityBuildIds);
        }
    
        @Override
        public Map<PerformanceExperimentOnOs, Long> getEstimatedExperimentDurationsInMillis() {
            return store.getEstimatedExperimentDurationsInMillis();
        }
    
        @Override
        public void close() {
            CompositeStoppable.stoppable(crossVersion, crossBuild, gradleVsMaven).stop();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CompositeResultsStore.java

        }
    
        @Override
        public Map<PerformanceExperimentOnOs, Long> getEstimatedExperimentDurationsInMillis() {
            return stores.stream()
                .flatMap(store -> store.getEstimatedExperimentDurationsInMillis().entrySet().stream())
                .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue, Math::max, LinkedHashMap::new));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/NoResultsStore.groovy

            new EmptyPerformanceTestHistory(experiment)
        }
    
        @Override
        Map<PerformanceExperimentOnOs, Long> getEstimatedExperimentDurationsInMillis() {
            return Collections.emptyMap()
        }
    
        @Override
        void close() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ResultsStore.java

        /**
         * Returns the estimated duration for each experiment in milliseconds.
         */
        Map<PerformanceExperimentOnOs, Long> getEstimatedExperimentDurationsInMillis();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestRuntimesGenerator.java

                        os -> new DefaultPerformanceFlakinessDataProvider(new CrossVersionResultsStore(), os)));
                Map<PerformanceExperimentOnOs, Long> estimatedExperimentDurations = resultsStore.getEstimatedExperimentDurationsInMillis();
                Map<PerformanceScenario, List<Map.Entry<PerformanceExperimentOnOs, Long>>> performanceScenarioMap =
                    estimatedExperimentDurations.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)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/AbstractWritableResultsStore.groovy

            return String.join(' or ', Collections.nCopies(channelPatterns.size(), "channel like ?"))
        }
    
        @Override
        public Map<PerformanceExperimentOnOs, Long> getEstimatedExperimentDurationsInMillis() {
            return this.<Map<PerformanceExperimentOnOs, Long>>withConnection("load estimated runtimes") { connection ->
    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