Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for inputDirectory (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/InputDirectory.java

     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    public @interface InputDirectory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 13:25:05 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/SkipWhenEmptyIntegrationTest.groovy

        }
    
        def "SkipWhenEmpty does not skip for #description"() {
            def inputDirectory = file("inputDir").createDir()
            inputDirectory.file("inputFile").createFile()
            def inputZip = file("inputZip.zip")
            def inputTar = file("inputTar.tar")
            inputDirectory.zipTo(inputZip)
            inputDirectory.tarTo(inputTar)
            buildFile << sourceTask
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 23 15:09:05 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

                final Object backedObject = loadTool("org.antlr.v4.Tool", toArray(arguments));
                if (inputDirectory != null) {
                    setField(backedObject, "inputDirectory", inputDirectory);
                }
                JavaMethod.of(backedObject, Void.class, "processGrammarsOnCommandLine").invoke(backedObject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy

    === Invalid Javadoc Links
    
    Be sure to see: `@link:{javadocPath}/org/gradle/nowhere/tasks/InputDirectory.html[InputDirectory]`
            """
    
            when:
            run('checkDeadInternalLinks').buildAndFail()
    
            then:
            assertFoundDeadJavadocLinks(sampleDoc, "org/gradle/nowhere/tasks/InputDirectory.html")
        }
    
        def "finds broken javadoc links with leading javadoc path component"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 28 22:01:54 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/TemplateProjectGeneratorTask.groovy

    abstract class TemplateProjectGeneratorTask extends ProjectGeneratorTask {
    
        @OutputDirectory
        File destDir
    
        @InputDirectory
        @PathSensitive(PathSensitivity.RELATIVE)
        File templateDirectory
    
        @InputDirectory
        @Optional
        @PathSensitive(PathSensitivity.RELATIVE)
        File sharedTemplateDirectory
    
        TemplateProjectGeneratorTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:57:13 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/FileSystemRootUpToDateIntegrationTest.groovy

                    @InputDirectory File inputDirectory
                    @OutputFile File output
    
                    @TaskAction def execute() {
                        output.text = inputDirectory.list().join()
                    }
                }
    
                task ${taskName}(type: InputDirectoryContentToOutputFileAction) {
                    inputDirectory = new File("${drive}\\\\")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

                    File inputOne
                    File inputTwo
    
                    @Incremental
                    @InputDirectory
                    File getInputOne() {
                        inputOne
                    }
    
                    @Incremental
                    @InputDirectory
                    File getInputTwo() {
                        inputTwo
                    }
    
                    @OutputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

        def "detects when outputs are removed for tasks without sources"() {
            buildFile << """
                apply plugin: 'base'
    
                abstract class Producer extends DefaultTask {
                    @InputDirectory
                    @SkipWhenEmpty
                    abstract DirectoryProperty getSources()
    
                    @OutputDirectory
                    abstract DirectoryProperty getOutputDir()
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/CleanAcceptedApiChanges.groovy

     * limitations under the License.
     */
    
    package gradlebuild.binarycompatibility
    
    import org.gradle.api.DefaultTask
    import org.gradle.api.file.DirectoryProperty
    import org.gradle.api.tasks.InputDirectory
    import org.gradle.api.tasks.PathSensitive
    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.api.tasks.TaskAction
    import org.gradle.work.DisableCachingByDefault
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:27:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/InputDirectoryPropertyAnnotationHandler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.execution.model.annotations;
    
    import org.gradle.api.tasks.InputDirectory;
    import org.gradle.internal.fingerprint.DirectorySensitivity;
    import org.gradle.internal.properties.InputFilePropertyType;
    import org.gradle.internal.properties.annotations.PropertyMetadata;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top