Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 188 for Brunner (0.17 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import org.gradle.testkit.runner.TaskOutcome
    
    class GradleBuildSmokeTestConfigurationCacheSmokeTest extends AbstractGradleBuildConfigurationCacheSmokeTest {
        def "can run Gradle smoke tests with configuration cache enabled"() {
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AnnotationProcessingSmokeTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import org.gradle.testkit.runner.GradleRunner
    
    class AnnotationProcessingSmokeTest extends AbstractSmokeTest {
    
        def 'project lombok works when options.fork=#fork'() {
            given:
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

            """
            def resolve = new ResolveTestFixture(new TestFile(buildFile), 'testCompileClasspath')
            resolve.prepare()
    
            when:
            def runner = runner('checkDep')
            if (bomSupportProvider == "spring dependency management plugin") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDETaskExecutionPerformanceTest.groovy

            }
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressedWithHighRelativeMedianDifference()
        }
    
        private setupRunner() {
            def iterations = determineIterations()
            runner.warmUpRuns = iterations
            runner.runs = iterations
        }
    
        private determineIterations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationCachePerformanceTest.groovy

            given:
            runner.tasksToRun = ["assemble"]
            // use the deprecated property so it works with previous versions
            runner.args = ["-D${ConfigurationCacheOption.DEPRECATED_PROPERTY_NAME}=true"]
    
            and:
            runner.useDaemon = daemon == hot
            runner.addBuildMutator { configurationCacheInvocationListenerFor(it, action, stateDirectory) }
            runner.warmUpRuns = daemon == hot ? 20 : 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RequiredFeature.java

    import java.lang.annotation.Repeatable;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Indicates that the test runner should only create execution if the feature is enabled, where enabled means
     * that the feature value is the one defined by {@link #value()}.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SpotBugsPluginSmokeTest.groovy

                package example;
    
                public class Application {
                    public static void main(String[] args) {}
                }
            """.stripIndent()
    
            when:
            def result = runner('spotbugsMain').build()
    
            then:
            file('build/reports/spotbugs').isDirectory()
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeBuildDependentsPerformanceTest.groovy

            // The generated dependency graph is rather complex and deep, unrealistic?
            // 'nativeDependentsDeep' | 'libA0:buildDependentsLibA0'
            given:
            runner.tasksToRun = [task]
    
            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
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/provider/DeclarativeDslScriptPluginFactory.kt

    import org.gradle.internal.declarativedsl.evaluator.DeclarativeDslNotEvaluatedException
    import org.gradle.internal.declarativedsl.evaluator.DeclarativeKotlinScriptEvaluator
    import org.gradle.internal.declarativedsl.evaluator.runner.EvaluationResult
    import javax.inject.Inject
    
    
    @Suppress("unused") // The name of this class is hardcoded in Gradle
    internal
    class DeclarativeDslScriptPluginFactory @Inject constructor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ErrorPronePluginSmokeTest.groovy

                import java.util.Set;
    
                public class Test {
    
                    public static void main(String[] args) {
                    }
    
                }
            """
    
            expect:
            runner('compileJava').forwardOutput().build()
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'net.ltgt.errorprone': Versions.of(TestedVersions.errorProne)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top