Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for outputDir (0.15 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

            expect:
            namingScheme.getOutputDirectory(new File("."), outputType) == new File(".", outputDir)
    
            where:
            parentName    | binaryType   | dimensions                                 | outputType | outputDir
            "test"        | null         | []                                         | null       | "test"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

        /**
         * The directory to write the scripts into.
         */
        @OutputDirectory
        @Nullable
        public File getOutputDir() {
            return outputDir;
        }
    
        public void setOutputDir(@Nullable File outputDir) {
            this.outputDir = outputDir;
        }
    
        /**
         * The directory to write the scripts into in the distribution.
         * @since 4.5
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            1 * visitor.visitOutputFileProperty('outputFile', false, { it.call().path == 'output' }, OutputFilePropertyType.FILE)
            1 * visitor.visitOutputFileProperty('bean.outputDir', false, { it.call().path == 'outputDir' }, OutputFilePropertyType.DIRECTORY)
    
            1 * visitor.visitDestroyableProperty({ it.call().path == 'destroyed' })
    
            1 * visitor.visitLocalStateProperty({ it.call().path == 'localState' })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

                this.projectName = projectName
                this.executer = executer
            }
    
            void setProjectBuildDir(String buildDirPath) {
                executer.withArgument("-D${projectName}OutputDir=${buildDirPath}")
            }
    
            void setOutputFileName(String outputFileName) {
                executer.withArgument("-D${projectName}FileName=${outputFileName}")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/testflag.go

    	}
    
    	// Similarly, the test binary defaults -test.outputdir to its own working
    	// directory, but 'go test' defaults it to the working directory of the 'go'
    	// command. Set it explicitly if it is needed due to some other flag that
    	// requests output.
    	if testProfile() != "" && !outputDirSet {
    		injectedFlags = append(injectedFlags, "-test.outputdir="+testOutputDir.getAbs())
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top