Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 200 for outputDir (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

        noinline configure: T.(Provider<Directory>) -> Unit
    ) = buildDir("generated-sources/kotlin-dsl-$purpose/kotlin").let { outputDir ->
        val task = tasks.register(taskName, T::class.java) {
            it.configure(outputDir)
        }
        kotlinSourceDirectorySet.srcDir(files(outputDir).builtBy(task))
        task to outputDir
    }
    
    
    private
    fun Project.buildDir(path: String) = layout.buildDirectory.dir(path)
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MultiProjectDependencyIntegrationTest.groovy

            def outputValue = System.currentTimeMillis()
    
            buildFile << """
    project(':a') {
        task writeOutputFile {
            def outputDir = file('build')
            doLast {
                outputDir.mkdirs()
                new File(outputDir, 'output.txt') << "${outputValue}"
            }
        }
    }
    project(':c') {
        compileJava.dependsOn ':a:writeOutputFile'
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

            final File outputDir = testDirectoryProvider.getTestDirectory().getParentFile().createDir(EXTRACTED_RESOURCES_DIR, jarFileName);
    
            final String extractionKey = runningTestClass.getName() + ":" + jarFilePath;
            if (!EXTRACTED_JARS.contains(extractionKey)) {
                extractJarContents(jarFilePath, outputDir);
                EXTRACTED_JARS.add(extractionKey);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-extensions.gradle.kts

    plugins {
        java
    }
    
    val generatedSourcesDir = layout.buildDirectory.dir("generated-sources/kotlin")
    
    val generateSources by tasks.registering(GenerateKotlinDslPluginsExtensions::class) {
        outputDir = generatedSourcesDir
        kotlinDslPluginsVersion = project.version
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 13:36:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. pkg/collateral/control.go

    		if err := doc.GenManTree(root, &c.ManPageInfo, c.OutputDir); err != nil {
    			return fmt.Errorf("unable to output manpage tree: %v", err)
    		}
    	}
    
    	if c.EmitMarkdown {
    		if err := doc.GenMarkdownTree(root, c.OutputDir); err != nil {
    			return fmt.Errorf("unable to output markdown tree: %v", err)
    		}
    	}
    
    	if c.EmitHTMLFragmentWithFrontMatter {
    		if err := genHTMLFragment(root, c.OutputDir+"/"+root.Name()+".html", c.Predicates); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         * <p>
         * For example see docs for {@link IdeaModule}
         */
        public File getOutputDir() {
            return outputDir;
        }
    
        public void setOutputDir(File outputDir) {
            this.outputDir = outputDir;
        }
    
        /**
         * The output directory for test classes.
         * If {@code null}, no entry will be created.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

            def projectName = args[0]
            def outputDir = new File(args[1])
    
            JavaTestProjectGenerator project = JavaTestProjectGenerator.values().find {it.projectName == projectName }
            if (project == null) {
                throw new IllegalArgumentException("Project not defined: $projectName")
            }
            def projectDir = new File(outputDir, projectName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

                project(':a') {
                    task classes {
                        ext.outputDir = objects.directoryProperty()
                        outputs.dir(outputDir)
                        outputDir.set(layout.buildDirectory.dir("classes"))
                    }
                    artifacts {
                        compile classes.outputDir
                    }
                }
                project(':b') {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/kotlin/build.gradle.kts

                          "classpath" to jasperClasspath)
                "jasper"("validateXml" to false,
                         "uriroot" to projectLayout.projectDirectory.file("src/main/webapp").asFile,
                         "outputDir" to projectLayout.buildDirectory.file("compiled-jsps").get().asFile)
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 791 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cover_asm.txt

    [short] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    
    # Test cover for a package that has an assembly function.
    
    go test -outputdir=$WORK -coverprofile=cover.out coverasm
    go tool cover -func=$WORK/cover.out
    stdout '\tg\t*100.0%' # Check g is 100% covered.
    ! stdout '\tf\t*[0-9]' # Check for no coverage on the assembly function
    
    -- go.mod --
    module coverasm
    
    go 1.16
    -- p.go --
    package p
    
    func f()
    
    func g() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 604 bytes
    - Viewed (0)
Back to top