Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for tasksToRun (0.15 sec)

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

                                while (resultSet.next()) {
                                    String displayName = resultSet.getString(1);
                                    List<String> tasksToRun = toList(resultSet.getObject(2));
                                    List<String> cleanTasks = toList(resultSet.getObject(7));
                                    List<String> args = toList(resultSet.getObject(3));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenBuildExperimentSpec.groovy

        }
    
        static MavenBuilder builder() {
            new MavenBuilder()
        }
    
        @Override
        BuildDisplayInfo getDisplayInfo() {
            new BuildDisplayInfo(projectName, displayName, invocation.tasksToRun, Collections.<String>emptyList(), invocation.args, invocation.mavenOpts, false)
        }
    
        static class MavenBuilder implements BuildExperimentSpec.Builder {
            String displayName
            String projectName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationCachePerformanceTest.groovy

        ])
        def "assemble #action configuration cache state with #daemon daemon"() {
            given:
            runner.tasksToRun = ["assemble"]
            // use the deprecated property so it works with previous versions
            runner.args = ["-D${ConfigurationCacheOption.DEPRECATED_PROPERTY_NAME}=true"]
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                    $statement
                }
            """
    
            when:
            if (shouldSucceed) {
                isolatedProjectsRun(*tasksToRun)
            } else {
                isolatedProjectsFails(*tasksToRun)
            }
    
            then:
            if (shouldSucceed) {
                fixture.assertStateStored {
                    projectsConfigured(":", ":b")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/buildcache/LocalTaskOutputCacheCrossBuildPerformanceTest.groovy

            results
        }
    
        @Override
        protected void defaultSpec(GradleBuildExperimentSpec.GradleBuilder builder) {
            super.defaultSpec(builder)
            builder.invocation {
                tasksToRun("assemble")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentSpec.groovy

        }
    
        static GradleBuilder builder() {
            new GradleBuilder()
        }
    
        @Override
        BuildDisplayInfo getDisplayInfo() {
            new BuildDisplayInfo(projectName, displayName, invocation.tasksToRun, invocation.cleanTasks, invocation.args, invocation.jvmArguments, invocation.useDaemon)
        }
    
        static class GradleBuilder implements BuildExperimentSpec.Builder {
            String displayName
            String projectName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

            configurationCaching = configurationCachingMessage(configurationCachingEnabled)
        }
    
        @RunFor([])
        def "up-to-date assembleDebug#configurationCaching"() {
            given:
            runner.tasksToRun = [testProject.taskToRunForChange]
            enableConfigurationCaching(configurationCachingEnabled)
    
            when:
            def result = runner.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top