Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for outputDir (0.2 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

                    outputDirectory = project.file(project.providers.gradleProperty('outputDir'))
                }
            """
    
            when:
            succeeds ":customTask", "-PoutputDir=build/output1"
            then:
            executedAndNotSkipped ":customTask"
    
            when:
            succeeds ":customTask", "-PoutputDir=build/output2"
            then:
            executedAndNotSkipped ":customTask"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

                    new URI("http", null, "localhost", ${blockingHttpServer.getPort()}, "/\${parameters.itemName}", null, null).toURL().text
                    File outputDir = new File("${fixture.outputFileDirPath}")
                    File outputFile = new File(outputDir, parameters.itemName)
                    FileHelper.write(id, outputFile)
                """
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPlugin.java

                startScripts.getConventionMapping().map("applicationName", pluginExtension::getApplicationName);
    
                startScripts.getConventionMapping().map("outputDir", () -> new File(project.getBuildDir(), "scripts"));
    
                startScripts.getConventionMapping().map("executableDir", pluginExtension::getExecutableDir);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

            TransformAction<?> transformAction = newTransformAction(inputArtifactProvider, dependencies, inputChanges);
            DefaultTransformOutputs transformOutputs = new DefaultTransformOutputs(inputArtifactProvider.get().getAsFile(), outputDir, fileLookup);
            transformAction.transform(transformOutputs);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

                    @OutputDirectory
                    File outputDir = new File(project.buildDir, "overlap")
    
                    @Input
                    String message = "Generated by " + path
    
                    @Input
                    String fileName = name + ".txt"
    
                    @TaskAction
                    void generate() {
                        new File(outputDir, fileName).text = message
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/bugreport/bugreport.go

    	outDir, err := os.Getwd()
    	if err != nil {
    		log.Errorf("using ./ to write archive: %s", err.Error())
    		outDir = "."
    	}
    	if outputDir != "" {
    		outDir = outputDir
    	}
    	outPath := filepath.Join(outDir, "bug-report.tar.gz")
    
    	if !config.DryRun {
    		common.LogAndPrintf("Creating an archive at %s.\n", outPath)
    		archiveDir := archive.DirToArchive(tempDir)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top