Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TaskWithInputs (0.4 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

            when:
            file('foo/Changing.java').text = toWindows(TEXT_WITH_LINE_ENDINGS)
            cleanWorkspace()
            execute("taskWithInputs")
    
            then:
            executedAndNotSkipped(":taskWithInputs")
    
            when:
            file('foo/Changing.jpg').bytes = BINARY_CONTENT_WITH_CRLF
            cleanWorkspace()
            execute("taskWithInputs")
    
            then:
            executedAndNotSkipped(":taskWithInputs")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

            execute("taskWithInputs")
    
            then:
            executedAndNotSkipped(":taskWithInputs")
    
            when:
            cleanWorkspace()
            execute("taskWithInputs")
    
            then:
            reused(":taskWithInputs")
    
            when:
            cleanWorkspace()
            file('foo/a/b') << "foo"
            execute("taskWithInputs")
    
            then:
            executedAndNotSkipped(":taskWithInputs")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DirectorySensitivityErrorHandlingIntegrationSpec.groovy

            createAnnotatedInputFileTask(nonDirectoryInput)
            buildFile << """
                task taskWithInputs(type: TaskWithInputs) {
                    input = ${nonDirectoryInput.value}
                    outputFile = file("\${buildDir}/output")
                }
            """
    
            file('foo').createFile()
    
            when:
            fails("taskWithInputs")
    
            then:
            failureDescriptionContains(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            buildFile << """
                task taskWithInputs(type: TaskWithInputs) {
                    input = 'some-name'
                }
    
                class TaskWithInputs extends DefaultTask {
                    @Input
                    String input
                }
            """
    
            when:
            succeeds 'taskWithInputs'
    
            then:
            skipped(':taskWithInputs')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top