Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for Enable (0.41 sec)

  1. src/cmd/go/internal/work/init.go

    			cfg.BuildCoverMode = "atomic"
    		}
    	}
    	if cfg.BuildRace && cfg.BuildCoverMode != "atomic" {
    		base.Fatalf(`-covermode must be "atomic", not %q, when -race is enabled`, cfg.BuildCoverMode)
    	}
    }
    
    // fuzzInstrumentFlags returns compiler flags that enable fuzzing instrumentation
    // on supported platforms.
    //
    // On unsupported platforms, fuzzInstrumentFlags returns nil, meaning no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. src/archive/tar/writer.go

    	}
    	return tw.writeRawHeader(blk, hdr.Size, hdr.Typeflag)
    }
    
    func (tw *Writer) writePAXHeader(hdr *Header, paxHdrs map[string]string) error {
    	realName, realSize := hdr.Name, hdr.Size
    
    	// TODO(dsnet): Re-enable this when adding sparse support.
    	// See https://golang.org/issue/22735
    	/*
    		// Handle sparse files.
    		var spd sparseDatas
    		var spb []byte
    		if len(hdr.SparseHoles) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    		generated by running a "go build -cover" binary.
    		Requires that GOEXPERIMENT=coverageredesign is enabled.
    
    Special-purpose environment variables:
    
    	GCCGOTOOLDIR
    		If set, where to find gccgo tools, such as cgo.
    		The default is based on how gccgo was configured.
    	GOEXPERIMENT
    		Comma-separated list of toolchain experiments to enable or disable.
    		The list of available experiments may change arbitrarily over time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/go/script_test.go

    		"HGRCPATH=",
    		"GOTOOLCHAIN=auto",
    		"newline=\n",
    	}
    
    	if testenv.Builder() != "" || os.Getenv("GIT_TRACE_CURL") == "1" {
    		// To help diagnose https://go.dev/issue/52545,
    		// enable tracing for Git HTTPS requests.
    		env = append(env,
    			"GIT_TRACE_CURL=1",
    			"GIT_TRACE_CURL_NO_DATA=1",
    			"GIT_REDACT_COOKIES=o,SSO,GSSO_Uberproxy")
    	}
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/scoring.go

    		fmt.Fprintf(os.Stderr, "=-= ScoreCalls(%v)\n", ir.FuncName(fn))
    	}
    
    	// If this is an inlinable function, use the precomputed
    	// call site table for it. If the function wasn't an inline
    	// candidate, collect a callsite table for it now.
    	var cstab CallSiteTab
    	if funcInlHeur, ok := fpmap[fn]; ok {
    		cstab = funcInlHeur.cstab
    	} else {
    		if len(scoreCallsCache.tab) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/build.go

    		test binaries, that can be run in parallel.
    		The default is GOMAXPROCS, normally the number of CPUs available.
    	-race
    		enable data race detection.
    		Supported only on linux/amd64, freebsd/amd64, darwin/amd64, darwin/arm64, windows/amd64,
    		linux/ppc64le and linux/arm64 (only for 48-bit VMA).
    	-msan
    		enable interoperation with memory sanitizer.
    		Supported only on linux/amd64, linux/arm64, linux/loong64, freebsd/amd64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    You can override the default by setting the CGO_ENABLED
    environment variable when running the go tool: set it to 1 to enable
    the use of cgo, and to 0 to disable it. The go tool will set the
    build constraint "cgo" if cgo is enabled. The special import "C"
    implies the "cgo" build constraint, as though the file also said
    "//go:build cgo".  Therefore, if cgo is disabled, files that import
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. src/archive/tar/writer_test.go

    				Uid:      1000,
    				Gid:      1000,
    				Uname:    "rawr",
    				Gname:    "dsnet",
    				ModTime:  time.Unix(0, 0),
    				Format:   FormatGNU,
    			}, nil},
    			testClose{nil},
    		},
    		// TODO(dsnet): Re-enable this test when adding sparse support.
    		// See https://golang.org/issue/22735
    		/*
    			}, {
    				file: "testdata/gnu-nil-sparse-data.tar",
    				tests: []testFnc{
    					testHeader{Header{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    	funcOut          = flag.String("func", "", "output coverage profile information for each function")
    	pkgcfg           = flag.String("pkgcfg", "", "enable full-package instrumentation mode using params from specified config file")
    	pkgconfig        covcmd.CoverPkgConfig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/security.go

    	re(`-Wl,-berok`),
    	re(`-Wl,-Bstatic`),
    	re(`-Wl,-Bsymbolic-functions`),
    	re(`-Wl,-O[0-9]+`),
    	re(`-Wl,-d[ny]`),
    	re(`-Wl,--disable-new-dtags`),
    	re(`-Wl,-e[=,][a-zA-Z0-9]+`),
    	re(`-Wl,--enable-new-dtags`),
    	re(`-Wl,--end-group`),
    	re(`-Wl,--(no-)?export-dynamic`),
    	re(`-Wl,-E`),
    	re(`-Wl,-framework,[^,@\-][^,]+`),
    	re(`-Wl,--hash-style=(sysv|gnu|both)`),
    	re(`-Wl,-headerpad_max_install_names`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top