Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getFileChanges (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

                    @Incremental @InputFiles FileCollection brokenInputFiles
    
                    @OutputFile File output
    
                    @TaskAction execute(InputChanges changes) {
                        output.text = changes.getFileChanges(brokenInputFiles)*.changeType
                    }
                }
                task inputBrokenLinkNameCollector(type: CustomTask) {
                    brokenInputFiles = files '${brokenInputFile}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    |`@SkipWhenEmpty`
    |Property is a file or directory and the task should be skipped when the value of the property is empty
    
    |`@Incremental`
    |Property is a file or directory and changes to it can be queried with `@InputChanges.getFileChanges()`
    
    |`@Optional`
    |Property is any type, its value does not have to be specified and validation checks are disabled
    
    |`@PathSensitive`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
Back to top