Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fchown (1.51 sec)

  1. src/cmd/go/internal/test/test.go

    	    expression. No tests, benchmarks, fuzz tests, or examples will be run.
    	    This will only list top-level tests. No subtest or subbenchmarks will be
    	    shown.
    
    	-parallel n
    	    Allow parallel execution of test functions that call t.Parallel, and
    	    fuzz targets that call t.Parallel when running the seed corpus.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    					// The go version is less than 1.14. Don't set -mod=vendor by default.
    					// Since a vendor directory exists, we should record why we didn't use it.
    					// This message won't normally be shown, but it may appear with import errors.
    					cfg.BuildModReason = fmt.Sprintf("Go version in "+versionSource+" is %s, so vendor directory was not used.", goVersion)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	}
    	return "no Go files in " + e.Package.Dir
    }
    
    // setLoadPackageDataError presents an error found when loading package data
    // as a *PackageError. It has special cases for some common errors to improve
    // messages shown to users and reduce redundancy.
    //
    // setLoadPackageDataError returns true if it's safe to load information about
    // imported packages, for example, if there was a parse error loading imports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //	    expression. No tests, benchmarks, fuzz tests, or examples will be run.
    //	    This will only list top-level tests. No subtest or subbenchmarks will be
    //	    shown.
    //
    //	-parallel n
    //	    Allow parallel execution of test functions that call t.Parallel, and
    //	    fuzz targets that call t.Parallel when running the seed corpus.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. doc/next/5-toolchain.md

    hot blocks in loops.  This improves performance an additional 1-1.5% at
    a cost of an additional 0.1% text and binary size.  This is currently only implemented
    on 386 and amd64 because it has not shown an improvement on other platforms.
    Hot block alignment can be disabled with `-gcflags=[<packages>=]-d=alignhot=0`
    
    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	// useful on all architectures.
    	var hotAlign, hotRequire int64
    
    	if base.Debug.AlignHot > 0 {
    		switch base.Ctxt.Arch.Name {
    		// enable this on a case-by-case basis, with benchmarking.
    		// currently shown:
    		//   good for amd64
    		//   not helpful for Apple Silicon
    		//
    		case "amd64", "386":
    			// Align to 64 if 31 or fewer bytes remain in a cache line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/base/base.go

    	// The words between "go" and the first flag or argument in the line are taken to be the command name.
    	UsageLine string
    
    	// Short is the short description shown in the 'go help' output.
    	Short string
    
    	// Long is the long message shown in the 'go help <this-command>' output.
    	Long string
    
    	// Flag is a set of flags specific to this command.
    	Flag flag.FlagSet
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top