Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 120 for outputDir (0.16 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BroadcastChangingOutputsStepTest.groovy

        def "notifies listener about specific outputs changing"() {
            def outputDir = file("output-dir")
            def localStateDir = file("local-state-dir")
            def destroyableDir = file("destroyable-dir")
            def changingOutputs = [
                outputDir.absolutePath,
                destroyableDir.absolutePath,
                localStateDir.absolutePath
            ]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:23 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/CompilePrecompiledScriptPluginPlugins.kt

        }
    
        @TaskAction
        fun compile() {
            outputDir.withOutputDirectory { outputDir ->
                val scriptFiles = sourceFiles.map { it.path }
                if (scriptFiles.isNotEmpty())
                    compileKotlinScriptModuleTo(
                        outputDir,
                        compilerOptions,
                        kotlinModuleName,
                        scriptFiles,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/build.gradle.kts

        delete(layout.buildDirectory.file("outputs/1.txt"))
    }
    // end::removed-output[]
    
    // tag::reverse[]
    tasks.register<IncrementalReverseTask>("incrementalReverse") {
        inputDir = file("inputs")
        outputDir = layout.buildDirectory.dir("outputs")
        inputProperty = project.findProperty("taskInputProperty") as String? ?: "original"
    }
    // end::reverse[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/tasks/application/CreateStartScriptsTest.groovy

        }
    
        def scriptNameDefaultsToApplicationName() {
            task.outputDir = new File('output')
    
            when:
            task.applicationName = "myApp"
    
            then:
            task.unixScript == new File(task.outputDir, 'myApp')
            task.windowsScript == new File(task.outputDir, 'myApp.bat')
        }
    
        def optsEnvironmentVariableNameDefaultsToApplicationName() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkQueueIntegrationTest.groovy

                    if (parameters.shouldFail) {
                        throw new Exception("Failure from " + parameters.itemName)
                    }
                    File outputDir = new File("${fixture.outputFileDirPath}")
                    File outputFile = new File(outputDir, parameters.itemName)
                    FileHelper.write(id, outputFile)
                """
            }
            parallelWorkAction.writeToBuildFile()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top