Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getCleanTasks (0.38 sec)

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

                    public List<String> getTasks() {
                        return mostRecent.getTasks();
                    }
    
                    @Override
                    public List<String> getCleanTasks() {
                        return mostRecent.getCleanTasks();
                    }
    
                    @Override
                    public List<String> getArgs() {
                        return mostRecent.getArgs();
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

        }
    
        private static String getCleanTasks(PerformanceTestHistory testHistory) {
            PerformanceTestExecution performanceTestExecution = getExecution(testHistory);
            if (performanceTestExecution == null || performanceTestExecution.getCleanTasks() == null) {
                return "";
            }
            return Joiner.on(" ").join(performanceTestExecution.getCleanTasks());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

                    public List<String> getTasks() {
                        return input.getTasksToRun();
                    }
    
                    @Override
                    public List<String> getCleanTasks() {
                        return input.getCleanTasks();
                    }
    
                    @Override
                    public List<String> getArgs() {
                        return input.getArgs();
                    }
    
    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/ScenarioDefinition.java

         */
        String getTestProject();
    
        /**
         * The tasks executed.
         */
        List<String> getTasks();
    
        /**
         * The clean tasks executed.
         */
        List<String> getCleanTasks();
    
        /**
         * The Gradle arguments.
         */
        List<String> getArgs();
    
        /**
         * The Gradle JVM args. Null if not known
         */
        @Nullable
        List<String> getGradleOpts();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecution.java

         */
        @Nullable
        List<String> getTasks();
    
        /**
         * The clean tasks executed. Null if not known or not constant for all experiments
         */
        @Nullable
        List<String> getCleanTasks();
    
        /**
         * The Gradle arguments. Null if not known or not constant for all experiments
         */
        @Nullable
        List<String> getArgs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                statement.setBoolean(6, displayInfo.getDaemon());
                statement.setBigDecimal(7, operation.getTotalTime().toUnits(Duration.MILLI_SECONDS).getValue());
                statement.setObject(8, toArray(displayInfo.getCleanTasks()));
                statement.addBatch();
            }
        }
    
        @Override
        public List<PerformanceExperiment> getPerformanceExperiments() {
            return withConnection("load test history", 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)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

            GradleDistribution gradleDistribution = invocationSpec.getGradleDistribution();
            List<String> cleanTasks = invocationSpec.getCleanTasks();
            File gradlePropertiesFile = new File(invocationSettings.getProjectDir(), "gradle.properties");
            Properties gradleProperties = new Properties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                statement.setString(14, vcs);
                statement.setString(15, results.getChannel());
                statement.setString(16, results.getHost());
                statement.setObject(17, toArray(results.getCleanTasks()));
                statement.setString(18, results.getTeamCityBuildId());
    
                if (results.getBaselineVersions().size() == 1) {
                    MeasuredOperationList current = results.getCurrent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top