Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for outputDir (0.14 sec)

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

                        inputs.dir sources skipWhenEmpty()
                        outputs.dir "${outputDir}"
                        def outputDir = file("${outputDir}")
                        def sourceTree = files(sources).asFileTree
                        doLast {
                            outputDir.mkdirs()
                            sourceTree.visit { details ->
                                if (!details.directory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

                    void processChanges(InputChanges changes) {
                        outputDir.file("output.txt").get().asFile.text = input.get()
                    }
                }
    
                task incremental(type: IncrementalTask) {
                    sources = file("sources")
                    input = providers.systemProperty("outputDir")
                    outputDir = file("build/\${input.get()}")
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractBuildExperimentRunner.java

            File outputDir;
            if (crossVersion) {
                String version = ((GradleBuildExperimentSpec) spec).getInvocation().getGradleDistribution().getVersion().getVersion();
                outputDir = new File(outputDirSelector.outputDirFor(testId), version);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerPackOperationExecutorTest.groovy

            def outputFile = temporaryFolder.file("output.txt")
            def outputDir = temporaryFolder.file("outputDir")
            def outputDirFile = outputDir.file("file.txt")
            def input = temporaryFolder.createFile("input")
            def entity = entity(
                prop("outputDir", DIRECTORY, outputDir),
                prop("outputFile", FILE, outputFile)
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/TaskFilePropertiesIntegrationTest.groovy

                    def outputDir = file("build/dir1").toPath()
                    inputs.file(inputFile)
                    inputs.dir(inputDir)
                    outputs.file(outputFile)
                    outputs.dir(outputDir)
                    doLast {
                        Files.createDirectories(outputFile.parent)
                        Files.createDirectories(outputDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. pkg/collateral/cobra_noagent.go

    				c.EmitMarkdown = true
    				c.EmitHTMLFragmentWithFrontMatter = true
    				c.ManPageInfo = *hdr
    			}
    
    			return EmitCollateral(root, &c)
    		},
    	}
    
    	cmd.Flags().StringVarP(&c.OutputDir, "outputDir", "o", c.OutputDir, "Directory where to generate the collateral files")
    	cmd.Flags().BoolVarP(&all, "all", "", all, "Produce all supported collateral files")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/transforms/InstrumentationMetadataTransform.kt

            val oldSuperTypes = Properties()
            val outputDir = outputs.dir("instrumentation")
            val superTypesFile = File(outputDir, DIRECT_SUPER_TYPES_FILE)
            if (superTypesFile.exists()) {
                // Load properties with reader to use UTF_8 Charset
                superTypesFile.reader().use { reader -> oldSuperTypes.load(reader) }
            }
            val instrumentedClassesFile = File(outputDir, INSTRUMENTED_CLASSES_FILE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

        val unpackKotlinJsStdlib by registering {
            group = "build"
            description = "Unpack the Kotlin JavaScript standard library"
            val outputDir = file("$buildDir/$name")
            inputs.property("compileClasspath", configurations.compileClasspath.get())
            outputs.dir(outputDir)
            doLast {
                val kotlinStdLibJar = configurations.compileClasspath.get().single {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/integTest/groovy/org/gradle/internal/vfs/DefaultExcludesIntegrationTest.groovy

            "**/.git",
            "**/.git/**",
            "**/.gitignore",
            "**/.gitmodules",
            "**/.gitattributes"
        ]
    
        def outputDir = file("build/output")
        def excludedFile = file("input/${EXCLUDED_FILE_NAME}")
        def copyOfExcludedFile = outputDir.file(EXCLUDED_FILE_NAME)
    
        def setup() {
            file("input/inputFile.txt").text = "input"
            excludedFile.text = "excluded"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. operator/cmd/mesh/manifest-generate.go

    func RenderToDir(manifests name.ManifestMap, outputDir string, dryRun bool, l clog.Logger) error {
    	l.LogAndPrintf("Component dependencies tree: \n%s", helmreconciler.InstallTreeString())
    	l.LogAndPrintf("Rendering manifests to output dir %s", outputDir)
    	return renderRecursive(manifests, helmreconciler.InstallTree, outputDir, dryRun, l)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top