Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getApplyAndConfigure (0.27 sec)

  1. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/daemon/GroovyCompilerDaemonReuseIntegrationTest.groovy

    class GroovyCompilerDaemonReuseIntegrationTest extends AbstractCompilerDaemonReuseIntegrationTest {
        @Override
        String getCompileTaskType() {
            return "GroovyCompile"
        }
    
        @Override
        String getApplyAndConfigure() {
            return """
                apply plugin: "groovy"
    
                dependencies {
                    implementation localGroovy()
                }
            """
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/language/groovy/GroovyCompilerContinuousIntegrationTest.groovy

        String getInitialSourceContent() {
            return "class Foo {}"
        }
    
        @Override
        String getChangedSourceContent() {
            return "class Foo { def bar }"
        }
    
        @Override
        String getApplyAndConfigure() {
            return """
                apply plugin: "groovy"
    
                dependencies {
                    implementation localGroovy()
                }
    
                tasks.withType(${compileTaskType}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCompilerContinuousIntegrationTest.groovy

        abstract String getCompileTaskType()
        abstract String getSourceFileName()
        abstract String getInitialSourceContent()
        abstract String getChangedSourceContent()
        abstract String getApplyAndConfigure()
    
        String getVerifyDaemonsTask() {
            """
                task verifyDaemons {
                    doLast {
                        assert services.get(WorkerDaemonClientsManager).allClients.size() == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 04 07:31:58 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/daemon/ScalaCompilerDaemonReuseIntegrationTest.groovy

    class ScalaCompilerDaemonReuseIntegrationTest extends AbstractCompilerDaemonReuseIntegrationTest {
        @Override
        String getCompileTaskType() {
            return "ScalaCompile"
        }
    
        @Override
        String getApplyAndConfigure() {
            return """
                apply plugin: "scala"
    
                ${mavenCentralRepository()}
    
                dependencies {
                    implementation 'org.scala-lang:scala-library:2.11.12'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCompilerDaemonReuseIntegrationTest.groovy

        def compilerDaemonIdentityFileName = "build/compilerId"
        def compilerDaemonIdentityFile = file(compilerDaemonIdentityFileName)
    
        abstract String getCompileTaskType()
    
        abstract String getApplyAndConfigure()
    
        abstract TestJvmComponent getComponent()
    
        def setup() {
            executer.withWorkerDaemonsExpirationDisabled()
            executer.requireDaemon().requireIsolatedDaemons()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonReuseIntegrationTest.groovy

    class JavaCompilerDaemonReuseIntegrationTest extends AbstractCompilerDaemonReuseIntegrationTest {
        @Override
        String getCompileTaskType() {
            return "JavaCompile"
        }
    
        @Override
        String getApplyAndConfigure() {
            return """
                apply plugin: "java"
            """
        }
    
        @Override
        TestJvmComponent getComponent() {
            return new TestJavaComponent()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top