Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getCompileTaskType (0.21 sec)

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

    import org.gradle.language.groovy.fixtures.TestGroovyComponent
    
    
    class GroovyCompilerDaemonReuseIntegrationTest extends AbstractCompilerDaemonReuseIntegrationTest {
        @Override
        String getCompileTaskType() {
            return "GroovyCompile"
        }
    
        @Override
        String getApplyAndConfigure() {
            return """
                apply plugin: "groovy"
    
                dependencies {
    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

    class GroovyCompilerContinuousIntegrationTest extends AbstractCompilerContinuousIntegrationTest {
        @Override
        String getCompileTaskName() {
            return "compileGroovy"
        }
    
        @Override
        String getCompileTaskType() {
            return "GroovyCompile"
        }
    
        @Override
        String getSourceFileName() {
            return "src/main/groovy/Foo.groovy"
        }
    
        @Override
        String getInitialSourceContent() {
    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

        def setup() {
            executer.withWorkerDaemonsExpirationDisabled()
            executer.requireIsolatedDaemons()
        }
    
        abstract String getCompileTaskName()
        abstract String getCompileTaskType()
        abstract String getSourceFileName()
        abstract String getInitialSourceContent()
        abstract String getChangedSourceContent()
        abstract String getApplyAndConfigure()
    
        String getVerifyDaemonsTask() {
    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

    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.junit.Assume
    
    class ScalaCompilerDaemonReuseIntegrationTest extends AbstractCompilerDaemonReuseIntegrationTest {
        @Override
        String getCompileTaskType() {
            return "ScalaCompile"
        }
    
        @Override
        String getApplyAndConfigure() {
            return """
                apply plugin: "scala"
    
                ${mavenCentralRepository()}
    
    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()
    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

    import org.gradle.workers.internal.ExecuteWorkItemBuildOperationType
    
    class JavaCompilerDaemonReuseIntegrationTest extends AbstractCompilerDaemonReuseIntegrationTest {
        @Override
        String getCompileTaskType() {
            return "JavaCompile"
        }
    
        @Override
        String getApplyAndConfigure() {
            return """
                apply plugin: "java"
            """
        }
    
        @Override
    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