Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for inputDirectory (0.25 sec)

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

                task customTask(type: CustomTask) {
                    input = null
                }
            """
    
            expect:
            succeeds "customTask"
    
            where:
            annotation << [InputFile, InputDirectory, InputFiles]
        }
    
        def "TaskInputs.#method shows error message when used with complex input"() {
            buildFile << """
                task dependencyTask {
                }
    
                task test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/build.gradle

    class GradleInstallationForTestEnvironmentProvider implements CommandLineArgumentProvider {
        @Internal
        final ConfigurableFileCollection gradleHomeDir
    
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputDirectory
        final DirectoryProperty samplesdir
    
        @Nested
        final GradleDistribution gradleDistribution
    
        private final FileCollection testTaskClasspath
        private final Directory repoRoot
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top