Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 388 for Brunner (0.13 sec)

  1. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/ClientBuildEventGeneratorTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.runner
    
    import org.gradle.internal.build.event.BuildEventSubscriptions
    import org.gradle.internal.operations.BuildOperationDescriptor
    import org.gradle.internal.operations.BuildOperationListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/LineAndColumnFromRangeTest.kt

     */
    
    package org.gradle.kotlin.dsl.execution
    
    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    import org.junit.runner.RunWith
    import org.junit.runners.Parameterized
    
    
    @RunWith(Parameterized::class)
    class LineAndColumnFromRangeTest(val given: Given) {
    
        data class Given(val range: IntRange, val expected: Pair<Int, Int>)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

    # See https://github.com/bazelbuild/bazel/issues/1017 for background.
    
    load("@rules_java//java:defs.bzl", "java_test")
    
    _OUTPUT = """ import org.junit.runners.Suite;
            import org.junit.runner.RunWith;
            @RunWith(Suite.class)
            @Suite.SuiteClasses({ %s })
            public class %s {}
            """
    
    _PREFIXES = ("org", "com", "edu")
    
    def _SafeIndex(l, val):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingJavaPerformanceTest.groovy

        def setup() {
            runner.warmUpRuns = 11
            runner.runs = 21
            runner.minimumBaseVersion = "3.5"
        }
    
        def "clean assemble with remote http cache"() {
            setupTestProject(runner)
            protocol = "http"
            pushToRemote = true
            runner.useDaemon = false
            runner.warmUpRuns = 2
            runner.runs = 8
            runner.addBuildMutator { cleanLocalCache() }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4FilteringIntegrationTest.groovy

        void theParameterizedFiles() {
            file("src/test/java/ParameterizedFoo.java") << """
                ${testFrameworkImports}
                import org.junit.runners.Parameterized;
                import org.junit.runners.Parameterized.Parameters;
                import org.junit.runner.RunWith;
                import java.util.Arrays;
                import java.util.Collection;
    
                @RunWith(Parameterized.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/maven/JavaTestGradleVsMavenPerformanceTest.groovy

            given:
            runner.testGroup = "Gradle vs Maven test build using Java plugin"
            configureMavenOptions(JavaTestProject.projectFor(runner.testProject))
            runner.gradleTasks = ["clean", gradleTask]
            runner.equivalentMavenTasks = ["clean", mavenTask]
            if (mavenTask == "package") {
                runner.mvnArgs << "-Dmaven.test.skip=true"
            }
            runner.warmUpRuns = 2
            runner.runs = 5
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestDryRunner.java

    import org.gradle.api.NonNullApi;
    import org.junit.runner.Description;
    import org.junit.runner.Runner;
    import org.junit.runner.notification.RunNotifier;
    
    import java.util.LinkedList;
    
    @NonNullApi
    public class JUnitTestDryRunner extends Runner {
        private final Runner runner;
    
        public JUnitTestDryRunner(Runner runner) {
            this.runner = runner;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

        def setup() {
            testProject = AndroidTestProject.findProjectFor(runner.testProject) as IncrementalAndroidTestProject
            AndroidTestProject.useAgpLatestStableOrRcVersion(runner)
            AndroidTestProject.useKotlinLatestStableOrRcVersion(runner)
            runner.args.add('-Dorg.gradle.parallel=true')
            runner.args.addAll(["--no-build-cache", "--no-scan"])
    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/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

    import org.gradle.test.fixtures.dsl.GradleDsl;
    import org.gradle.test.fixtures.file.TestDirectoryProvider;
    import org.gradle.test.fixtures.file.TestFile;
    import org.junit.rules.TestRule;
    import org.junit.runner.Description;
    import org.junit.runners.model.Statement;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top