Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 179 for outputDir (0.35 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

    For /f "tokens=1-3 delims=/: " %%a in ("%TIME%") do (if %%a LSS 10 (set timestamp=0%%a%%b%%c) else (set timestamp=%%a%%b%%c))
    set timestamp=%timestamp:~0,6%
    ''' + "set outputDir=\${relativeToRoot}\\\\output\\\\%timestamp%" + '''
    md %outputDir%
    set outputLog=%outputDir%\\\\output.txt
    set errorLog=%outputDir%\\\\error.txt
    echo %outputLog%
    ''' + value + ' 1>%outputLog% 2>%errorLog%'
                }
            """
        }
    
        File getHostGradleWrapperFile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-incremental/groovy/build.gradle

        @PathSensitive(PathSensitivity.RELATIVE)
        @InputArtifact
        abstract Provider<FileSystemLocation> getInput()
    
        @Override
        void transform(TransformOutputs outputs) {
            def outputDir = outputs.dir("${input.get().asFile.name}.loc")
            println("Running transform on ${input.get().asFile.name}, incremental: ${inputChanges.incremental}")
            inputChanges.getFileChanges(input).forEach { change ->          // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/workerApi/workerDaemon/kotlin/build.gradle.kts

            source.forEach { file ->
                workQueue.submit(ReverseFile::class) {
                    fileToReverse = file
                    destinationDir = outputDir
                }
            }
            // end::worker-daemon[]
        }
    }
    
    tasks.register<ReverseFiles>("reverseFiles") {
        outputDir = layout.buildDirectory.dir("reversed")
        source("sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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