Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for getTestResults (0.24 sec)

  1. platforms/jvm/plugins-test-report-aggregation/src/main/java/org/gradle/api/plugins/TestReportAggregationPlugin.java

                            });
                        }).getFiles();
    
                    task.getTestResults().from(testResults);
                    task.getDestinationDirectory().convention(testReportDirectory.dir(report.getTestType().map(tt -> tt + "/aggregated-results")));
                });
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 20:53:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractReportGenerator.java

                .map(PerformanceReportScenario::getPerformanceExperiment)
                .distinct()
                .forEach(experiment -> {
                    PerformanceTestHistory testResults = store.getTestResults(experiment, 500, 90, ResultsStoreHelper.determineChannelPatterns(), executedBuildIds);
                    renderScenarioPage(projectName, outputDirectory, testResults);
                });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                        }
                        return Lists.newArrayList(testNames);
                    }
                }
            });
        }
    
        @Override
        public CrossBuildPerformanceTestHistory getTestResults(final PerformanceExperiment experiment, final int mostRecentN, final int maxDaysOld, final List<String> channelPatterns, List<String> teamcityBuildIds) {
            return withConnection("load results", connection -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                    }
                    return testNames;
                }
            });
        }
    
        @Override
        public CrossVersionPerformanceTestHistory getTestResults(
            PerformanceExperiment experiment,
            int mostRecentN,
            int maxDaysOld,
            List<String> channelPatterns,
            List<String> teamcityBuildIds
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The `getDestinationDir()`, `setDestinationDir(File)`, and `getTestResultDirs()` and `setTestResultDirs(Iterable)` methods have been deprecated.
    Replace usages with the now stable `getDestinationDirectory()` and `getTestResults()` methods and their associated setters.
    These deprecated elements will be removed in a future version of Gradle.
    
    [[referencing_script_configure_method_from_container_configure_closure_deprecated]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top