Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for tasksToRun (0.15 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInvocationSpec.groovy

                this.workingDirectory = workingDirectory
                this
            }
    
            InvocationBuilder tasksToRun(String... taskToRun) {
                this.tasksToRun.addAll(Arrays.asList(taskToRun))
                this
            }
    
            InvocationBuilder tasksToRun(Iterable<String> taskToRun) {
                this.tasksToRun.addAll(taskToRun)
                this
            }
    
            InvocationBuilder jvmOpts(String... args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleInvocationSpec.groovy

                this
            }
    
            InvocationBuilder tasksToRun(String... taskToRun) {
                this.tasksToRun.addAll(Arrays.asList(taskToRun))
                this
            }
    
            InvocationBuilder tasksToRun(Iterable<String> taskToRun) {
                this.tasksToRun.addAll(taskToRun)
                this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BuildDisplayInfo.groovy

    @ToString
    class BuildDisplayInfo {
    
        final String projectName
        final String displayName
        final List<String> tasksToRun
        final List<String> cleanTasks
        final List<String> args
        final List<String> gradleOpts
        final Boolean daemon
    
        BuildDisplayInfo(String projectName, String displayName, List<String> tasksToRun, List<String> cleanTasks, List<String> args, List<String> gradleOpts, Boolean daemon) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaFirstUsePerformanceTest.groovy

    )
    class JavaFirstUsePerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "first use"() {
            given:
            runner.tasksToRun = ['tasks']
            runner.runs = (runner.testProject == (LARGE_JAVA_MULTI_PROJECT_KOTLIN_DSL.projectName) ? 5 : 10)
            runner.useDaemon = false
            runner.addBuildMutator { invocationSettings ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/IncrementalAndroidTestProject.groovy

            builder.invocation {
                tasksToRun(taskToRunForChange)
            }
            builder.addBuildMutator { invocationSettings ->
                new ApplyAbiChangeToSourceFileMutator(getFileToChange(invocationSettings))
            }
        }
    
        @Override
        void configureForNonAbiChange(CrossVersionPerformanceTestRunner runner) {
            configure(runner)
            runner.tasksToRun = [taskToRunForChange]
    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/JavaTestProject.groovy

            configure(runner)
            runner.tasksToRun = ['assemble']
            runner.addBuildMutator(this.&abiChangeBuildMutator)
        }
    
        @Override
        void configureForAbiChange(GradleBuildExperimentSpec.GradleBuilder builder) {
            configure(builder)
            builder.invocation {
                tasksToRun = ['assemble']
            }
            builder.addBuildMutator(this.&abiChangeBuildMutator)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativePreCompiledHeaderPerformanceTest.groovy

            runner.buildSpec {
                displayName("Using PCH")
                invocation {
                    args("-PusePCH")
                    tasksToRun("clean", "assemble")
                }
            }
            runner.baseline {
                displayName("No PCH")
                invocation {
                    tasksToRun("clean", "assemble")
                }
            }
    
            when:
            def results = runner.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/TaskAvoidancePerformanceTest.groovy

            runner.buildSpec {
                displayName("lazy")
                invocation {
                    tasksToRun("help")
                }
            }
            runner.baseline {
                displayName("eager")
                invocation {
                    tasksToRun("help")
                    args("-Dorg.gradle.internal.tasks.eager=true")
                }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIncrementalExecutionPerformanceTest.groovy

            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX, WINDOWS, MAC_OS], testProjects = "largeJavaMultiProject")
        ])
        def "assemble for non-abi change#configurationCaching"() {
            given:
            runner.tasksToRun = ['assemble']
            runner.addBuildMutator {
                def fileToChange = new File(it.projectDir, testProject.config.fileToChangeByScenario['assemble'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/LargeDependencyGraphPerformanceTest.groovy

        def setup() {
            runner.minimumBaseVersion = '5.6.4'
        }
    
        def "resolve large dependency graph from file repo"() {
            given:
            runner.tasksToRun = ['resolveDependencies']
            runner.args = ["-PnoExcludes"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top