Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for outputDir (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

                        String getExtension()
                        void setExtension(String value)
    
                        @OutputDirectory
                        File getOutputDir()
                        void setOutputDir(File outputDir)
    
                        @Input
                        String getMissingInput()
                        void setMissingInput(String missing)
    
                        @Input
                        File getFileInput()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

                { it.project.languageLevel.level }, // shallow check to avoid infinite recursion
                { it.compilerOutput.inheritOutputDirs },
                { it.compilerOutput.outputDir },
                { it.compilerOutput.testOutputDir },
                [{ it.dependencies }, { a, e -> checkDependency(a, e) }],
            ])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                        .normalizeLineEndings($ignoreLineEndings)
                        ${normalizer ? ".withNormalizer(${normalizer.name})" : ''}
                    outputs.file('outputDir')
                    doLast {
                        println 'do something'
                    }
                }
            """
            createDir('foo')
    
            when:
            succeeds("customTask")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

        @Test
        @ToBeFixedForConfigurationCache
        void allowsCustomOutputFolders() {
            runIdeaTask """
    apply plugin: 'java'
    apply plugin: 'idea'
    
    idea.module {
        inheritOutputDirs = false
        outputDir = file('foo-out')
        testOutputDir = file('foo-out-test')
    }
    """
    
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('inherit-compiler-output="false"')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

            scopes.PROVIDED.plus += [ configurations.compileClasspath ]
            downloadJavadoc = true
            downloadSources = false
    
            inheritOutputDirs = false
            outputDir = file('muchBetterOutputDir')
            testOutputDir = file('muchBetterTestOutputDir')
    
            jdkName = '1.6'
    
            iml {
                generateTo = file('customImlFolder')
    
                withXml {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                    it.getOutputFile().set(new File(project.buildDir, "consumer/out.txt"))
    
                    MyTask myTask = (MyTask) tasks.getByName("myTask")
                    Provider<Set<File>> inputs = myTask.outputDir.map {
                        File[] files = it.asFile.listFiles()
                        Set<File> result = new HashSet<File>()
                        for (File f : files) {
                            if (f.name.toInteger() % 2 == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    }
                }
    
                extension.customData.vcsUrl = "goose"
                tasks.register("crashTask", CrashTask) {
                    customData = extension.customData
                    outputDir = file("build/crashTask")
                }
            """
    
            when:
            succeeds "crashTask"
            then:
            executedAndNotSkipped ":crashTask"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cache/prog.go

    	}
    	if copy(e.OutputID[:], res.OutputID) != len(res.OutputID) {
    		return Entry{}, &entryNotFoundError{errors.New("incomplete ProgResponse OutputID")}
    	}
    	c.noteOutputFile(e.OutputID, res.DiskPath)
    	return e, nil
    }
    
    func (c *ProgCache) noteOutputFile(o OutputID, diskPath string) {
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	c.outputFile[o] = diskPath
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cache/cache.go

    type ActionID [HashSize]byte
    
    // An OutputID is a cache output key, the hash of an output of a computation.
    type OutputID [HashSize]byte
    
    // Cache is the interface as used by the cmd/go.
    type Cache interface {
    	// Get returns the cache entry for the provided ActionID.
    	// On miss, the error type should be of type *entryNotFoundError.
    	//
    	// After a success call to Get, OutputFile(Entry.OutputID) must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

        }
    
        public void create(final File outputJar, final Iterable<? extends File> files) {
            LOGGER.info("Generating " + outputJar.getAbsolutePath());
            ProgressLogger progressLogger = progressLoggerFactory.newOperation(RuntimeShadedJarCreator.class);
            progressLogger.setDescription("Generating " + outputJar.getName());
            progressLogger.started();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top