Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateOutput (0.52 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/OutputTest.groovy

            then:
            output == createOutput()
        }
    
        def canWriteToXml() {
            Node rootNode = new Node(null, 'root')
    
            when:
            createOutput().appendNode(rootNode)
    
            then:
            new Output(rootNode.classpathentry[0]) == createOutput()
        }
    
        def equality() {
            Output output = createOutput()
            output.path += 'x'
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/ClasspathFactory.java

            entries.add(createOutput());
            entries.addAll(createSourceFolders());
            entries.addAll(createContainers());
            entries.addAll(createDependencies());
            entries.addAll(createClassFolders());
            return entries.build();
        }
    
        private ClasspathEntry createOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

                abstract class UntrackedProducer extends DefaultTask {
                    @OutputDirectory
                    abstract DirectoryProperty getOutputDir()
    
                    @TaskAction
                    void createOutput() {
                        outputDir.file("untracked.txt").get().asFile.text = "untracked"
                    }
                }
    
                abstract class TrackedProducer extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            then:
            skipped ':compileJava'
        }
    
        def "outputs loaded from the cache are snapshotted as outputs"() {
            buildFile << """
                apply plugin: 'base'
    
                task createOutput {
                    def outputFile = file('build/output.txt')
                    def inputFile = file('input.txt')
                    inputs.file inputFile
                    inputs.file 'unrelated-input.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top