Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSourceFileName (0.23 sec)

  1. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/language/groovy/GroovyCompilerContinuousIntegrationTest.groovy

        @Override
        String getCompileTaskName() {
            return "compileGroovy"
        }
    
        @Override
        String getCompileTaskType() {
            return "GroovyCompile"
        }
    
        @Override
        String getSourceFileName() {
            return "src/main/groovy/Foo.groovy"
        }
    
        @Override
        String getInitialSourceContent() {
            return "class Foo {}"
        }
    
        @Override
        String getChangedSourceContent() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCompilerContinuousIntegrationTest.groovy

            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)
Back to top