Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for outputDir (0.16 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            given:
            Task a = task("a", type: AsyncWithOutputDirectory)
            _ * a.outputDirectory >> file("outputDir")
            Task b = task("b", type: AsyncWithOutputDirectory)
            _ * b.outputDirectory >> file("outputDir").file("outputSubdir").file("output")
    
            expect:
            tasksAreNotExecutedInParallel(a, b)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. src/testing/testing.go

    	// "go test", the binary always runs in the source directory for the package;
    	// this flag lets "go test" tell the binary to write the files in the directory where
    	// the "go test" command is run.
    	outputDir = flag.String("test.outputdir", "", "write profiles to `dir`")
    	// Report as tests are run; default is silent for success.
    	flag.Var(&chatty, "test.v", "verbose: print additional output")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	    when all tests are complete.
    	    Writes test binary as -c would.
    
    	-mutexprofilefraction n
    	    Sample 1 in n stack traces of goroutines holding a
    	    contended mutex.
    
    	-outputdir directory
    	    Place output files from profiling in the specified directory,
    	    by default the directory in which "go test" is running.
    
    	-trace trace.out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    * `outputDir`
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The deprecated `binResultsDir` property of the `AbstractTestTask` task type has been removed.
    Use the `binaryResultsDirectory` property instead.
    
    ==== SourceDirectorySet API Cleanup
    
    The deprecated `outputDir` property of the `SourceDirectorySet` type has been removed.
    Use the `destinationDirectory` property instead.
    
    ==== VersionCatalog API Cleanup
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. tensorflow/BUILD

        compat_api_versions = [
            1,
            2,
        ],
        compat_init_templates = [
            "compat_template_v1.__init__.py",
            "compat_template.__init__.py",
        ],
        output_dir = "_api/v1/",
        output_files = TENSORFLOW_API_INIT_FILES_V1,
        output_package = "tensorflow._api.v1",
        packages_to_ignore = ["tensorflow.python.framework.test_ops"],
        root_file_name = "v1.py",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    		outputHdr := ""
    		if len(output) > 0 {
    			outputHdr = "\nCommand output:\n\n"
    		}
    		fatalf("cannot invoke C compiler %q: %v\n\n"+
    			"Go needs a system C compiler for use with cgo.\n"+
    			"To set a C compiler, set CC=the-compiler.\n"+
    			"To disable cgo, set CGO_ENABLED=0.\n%s%s", cc, err, outputHdr, output)
    	}
    }
    
    func defaulttarg() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top