Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.jvm.application.tasks.CreateStartScripts.xml

                <tr><td>mainModule</td></tr>
                <tr><td>mainClass</td></tr>
                <tr><td>classpath</td></tr>
                <tr><td>defaultJvmOpts</td></tr>
                <tr><td>outputDir</td></tr>
                <tr><td>executableDir</td></tr>
                <tr><td>optsEnvironmentVar</td></tr>
                <tr><td>unixStartScriptGenerator</td></tr>
                <tr><td>windowsStartScriptGenerator</td></tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 828 bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyClasspathIntegrationTest.groovy

            """
    
            file('src/dummy-input.txt') << "dummy text"
    
            buildFile << """
                task cacheableTask {
                    def inputFile = file("src/dummy-input.txt")
                    def outputDir = file(layout.buildDirectory.dir("dummy-output"))
                    def outputFile = file(layout.buildDirectory.file("dummy-output/result.txt"))
    
                    outputs.cacheIf { true }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:43:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

            def e2 = builder.createContainerElement(null, "foo.bar", "e2", "someElement")
            builder.propertyAssignment("Set some thing", "prop", e1)
            builder.propertyAssignment(null, "prop2", builder.propertyExpression(e2, "outputDir"))
    
            when:
            builder.create(target).generate()
    
            then:
            assertOutputFile("""/*
     * This file was generated by the Gradle 'init' task.
     */
    
    // Add some thing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/flagdefs.go

    	"fuzztime":             true,
    	"list":                 true,
    	"memprofile":           true,
    	"memprofilerate":       true,
    	"mutexprofile":         true,
    	"mutexprofilefraction": true,
    	"outputdir":            true,
    	"parallel":             true,
    	"run":                  true,
    	"short":                true,
    	"shuffle":              true,
    	"skip":                 true,
    	"timeout":              true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top