Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for outputDir (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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