Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for warmupRun (0.39 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaCleanAssemblePerformanceTest.groovy

    ])
    class JavaCleanAssemblePerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "clean assemble"() {
            given:
            runner.warmUpRuns = 2
            runner.runs = 6
            runner.tasksToRun = ["clean", "assemble"]
            runner.minimumBaseVersion = runner.testProject.contains("Composite") ? "4.0" : null
    
            when:
            def result = runner.run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeCleanBuildPerformanceTest.groovy

            runner.tasksToRun = ["assemble"]
            runner.cleanTasks = ["clean"]
            runner.runs = iterations
            runner.warmUpRuns = iterations
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        @RunFor([
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDETaskExecutionPerformanceTest.groovy

            then:
            result.assertCurrentVersionHasNotRegressedWithHighRelativeMedianDifference()
        }
    
        private setupRunner() {
            def iterations = determineIterations()
            runner.warmUpRuns = iterations
            runner.runs = iterations
        }
    
        private determineIterations() {
            return runner.testProject == LARGE_MONOLITHIC_JAVA_PROJECT.projectName ? 200 : 40
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidStudioPerformanceTest.groovy

            testProject.configure(runner)
            AndroidTestProject.useAgpLatestStableOrRcVersion(runner)
            AndroidTestProject.useKotlinLatestStableOrRcVersion(runner)
            runner.warmUpRuns = 20
            runner.runs = 20
            runner.setupAndroidStudioSync()
            configureLocalProperties()
    
            when:
            def result = runner.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/inception/BuildSrcApiChangePerformanceTest.groovy

    )
    class BuildSrcApiChangePerformanceTest extends AbstractCrossVersionPerformanceTest {
        def setup() {
            runner.minimumBaseVersion = "6.8"
            runner.warmUpRuns = 3
        }
    
        def setupGradleOpts() {
            useG1GarbageCollectorOnJava8(runner)
        }
    
        def "buildSrc abi change"() {
            given:
            setupGradleOpts()
            runner.tasksToRun = ['help']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationCachePerformanceTest.groovy

            and:
            runner.useDaemon = daemon == hot
            runner.addBuildMutator { configurationCacheInvocationListenerFor(it, action, stateDirectory) }
            runner.warmUpRuns = daemon == hot ? 20 : 1
            runner.runs = daemon == hot ? 60 : 25
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ParallelDownloadsPerformanceTest.groovy

        @Override
        File getRepoDir() {
            tmpRepoDir
        }
    
        def setup() {
            // Example project requires TaskContainer.register
            runner.minimumBaseVersion = "5.6"
            runner.warmUpRuns = 5
            runner.runs = 15
            runner.addBuildMutator { invocationSettings ->
                new BuildMutator() {
                    @Override
                    void afterBuild(BuildContext context, Throwable error) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

            then:
            result.assertCurrentVersionHasNotRegressedWithHighRelativeMedianDifference()
        }
    
        private setupRunner() {
            def iterations = determineIterations()
            runner.warmUpRuns = iterations
            runner.runs = iterations
        }
    
        private determineIterations() {
            return runner.testProject == LARGE_MONOLITHIC_JAVA_PROJECT.projectName ? 200 : 40
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

            // use the deprecated property so it works with previous versions
            runner.args.add("-D${StartParameterBuildOptions.ConfigurationCacheProblemsOption.DEPRECATED_PROPERTY_NAME}=warn")
            runner.warmUpRuns = 20
            applyDevelocityPlugin()
        }
    
        def "abi change#configurationCaching"() {
            given:
            if (configurationCachingEnabled && IncrementalAndroidTestProject.SANTA_TRACKER == testProject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIncrementalExecutionPerformanceTest.groovy

        )
        def "test for non-abi change"() {
            given:
            def testProject = JavaTestProject.projectFor(runner.testProject)
            runner.warmUpRuns = 2
            runner.runs = 6
            runner.tasksToRun = ['test']
            // Pre-4.0 versions run into memory problems with this test
            runner.minimumBaseVersion = "4.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top