Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 227 for Brunner (0.09 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidGradleRecipesKotlinSmokeTest.groovy

                    </application>
                </manifest>'''.stripIndent()
    
            and:
            def runner = mixedRunner(false, agpVersion, kotlinVersionNumber, taskName)
    
            when: 'running the build for the 1st time'
            beforeAndroidBuild(runner)
            def result = runner.build()
    
            then:
            result.task(":app:$taskName").outcome == TaskOutcome.SUCCESS
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ArchiveTreePerformanceTest.groovy

        )
        def "visiting zip trees"() {
            given:
            runner.tasksToRun = ['visitZip']
            runner.addBuildMutator { createArchive(it, "archive.zip") { contents, output -> contents.zipTo(output) } }
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        @RunFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/main/SimpleAnalysisEvaluator.kt

    import org.gradle.internal.declarativedsl.evaluator.runner.AnalysisStepContext
    import org.gradle.internal.declarativedsl.evaluator.runner.AnalysisStepResult
    import org.gradle.internal.declarativedsl.evaluator.runner.AnalysisStepRunner
    import org.gradle.internal.declarativedsl.evaluator.runner.EvaluationResult
    import org.gradle.internal.declarativedsl.evaluator.schema.DeclarativeScriptContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/RealWorldNativePluginPerformanceTest.groovy

        def setup() {
            runner.minimumBaseVersion = "4.0"
        }
    
        def "build with #parallelWorkers parallel workers"() {
            given:
            runner.tasksToRun = ['build']
            runner.warmUpRuns = 5
            runner.runs = 10
    
            runner.args += ["-Dorg.gradle.parallel=${parallelWorkers ? true : false}"]
            if (parallelWorkers) {
                runner.args += ["--max-workers=$parallelWorkers".toString()]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AndroidTestProject.groovy

            def version = AGP_VERSIONS.latestStableOrRC
            configureForAgpVersion(runner, version)
            version
        }
    
        private static void configureForAgpVersion(CrossVersionPerformanceTestRunner runner, String agpVersion) {
            runner.args.add("-DagpVersion=${agpVersion}")
    
            def javaVersion = AGP_VERSIONS.getMinimumJavaVersionFor(agpVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/buildcache/LocalTaskOutputCacheCrossBuildPerformanceTest.groovy

                    }
                }
            """.stripIndent()
    
            given:
            runner.addBuildMutator { invocationSettings ->
                new ClearBuildCacheMutator(invocationSettings.gradleUserHome, AbstractCleanupMutator.CleanupSchedule.SCENARIO)
            }
            runner.testGroup = "task output cache"
            runner.buildSpec {
                displayName("always-miss pull-only cache")
                invocation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Some IDEs provide a convenience option to delegate the "test classpath generation and execution" to the build.
    In IntelliJ, you can find this option under Preferences... > Build, Execution, Deployment > Build Tools > Gradle > Runner > Delegate IDE build/run actions to Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeBuildPerformanceTest.groovy

            given:
            runner.tasksToRun = ["assemble"]
            runner.addBuildMutator { settings ->
                new ApplyChangeToNativeSourceFileMutator(new File(settings.getProjectDir(), determineFileToChange(changeType, runner.testProject)))
            }
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/integTest/groovy/org/gradle/performance/fixture/IdProviderCrossBuildPerformanceTest.groovy

            when:
            runner.testGroup = "group"
    
            then:
            runner.testId == "if no test id is set, the test method name is used"
        }
    
        def "if test id is set, it is not replaced"() {
            when:
            runner.testGroup = "group"
            runner.testId = "Another id"
    
            then:
            runner.testId == "Another id"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/integTest/groovy/org/gradle/performance/fixture/IdProviderCrossVersionPerformanceTest.groovy

            when:
            runner.testProject = "test"
    
            then:
            runner.testId == "if no test id is set, the test method name is used"
        }
    
        def "if test id is set, it is not replaced"() {
            when:
            runner.testProject = "test"
            runner.testId = "Another id"
    
            then:
            runner.testId == "Another id"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top