Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for about (0.24 sec)

  1. src/cmd/go/internal/modcmd/vendor.go

    path instead of "vendor". The go command can only use a vendor directory
    named "vendor" within the module root directory, so this flag is
    primarily useful for other tools.
    
    See https://golang.org/ref/mod#go-mod-vendor for more about 'go mod vendor'.
    	`,
    	Run: runVendor,
    }
    
    var vendorE bool   // if true, report errors but proceed anyway
    var vendorO string // if set, overrides the default output directory
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    		sh.ShowCmd("", "cp %s %s", src, dst)
    		if cfg.BuildN {
    			return nil
    		}
    	}
    
    	sf, err := os.Open(src)
    	if err != nil {
    		return err
    	}
    	defer sf.Close()
    
    	// Be careful about removing/overwriting dst.
    	// Do not remove/overwrite if dst exists and is a directory
    	// or a non-empty non-object file.
    	if fi, err := os.Stat(dst); err == nil {
    		if fi.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/nilcheck.go

    	// map from value ID to known non-nil version of that value ID
    	// (in the current dominator path being walked). This slice is updated by
    	// walkStates to maintain the known non-nil values.
    	// If there is extrinsic information about non-nil-ness, this map
    	// points a value to itself. If a value is known non-nil because we
    	// already did a nil check on it, it points to the nil check operation.
    	nonNilValues := f.Cache.allocValueSlice(f.NumValues())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/doc/doc_test.go

    			`func internalFunc(a int) bool`,    // No internal functions.
    			`Comment about exported constant`,  // No comment for single constant.
    			`Comment about exported variable`,  // No comment for single variable.
    			`Comment about block of constants`, // No comment for constant block.
    			`Comment about block of variables`, // No comment for variable block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/download.go

    useful on systems that do not preserve the module cache.
    
    The -x flag causes download to print the commands download executes.
    
    See https://golang.org/ref/mod#go-mod-download for more about 'go mod download'.
    
    See https://golang.org/ref/mod#version-queries for more about version queries.
    	`,
    }
    
    var (
    	downloadJSON  = cmdDownload.Flag.Bool("json", false, "")
    	downloadReuse = cmdDownload.Flag.String("reuse", "", "")
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/sccp.go

    // by just combining constant folding and constant propagation and dead code
    // elimination separately.
    
    // Three level lattice holds compile time knowledge about SSA value
    const (
    	top      int8 = iota // undefined
    	constant             // constant
    	bottom               // not a constant
    )
    
    type lattice struct {
    	tag int8   // lattice type
    	val *Value // constant value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/clean/clean.go

    new inputs are found that provide the same coverage. These files are
    distinct from those stored in testdata directory; clean does not remove
    those files.
    
    For more about build flags, see 'go help build'.
    
    For more about specifying packages, see 'go help packages'.
    	`,
    }
    
    var (
    	cleanI         bool // clean -i flag
    	cleanR         bool // clean -r flag
    	cleanCache     bool // clean -cache flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git.go

    	// The git protocol sends all known refs and ls-remote filters them on the client side,
    	// so we might as well record both heads and tags in one shot.
    	// Most of the time we only care about tags but sometimes we care about heads too.
    	out, err := Run(ctx, r.dir, "git", "tag", "-l")
    	if err != nil {
    		return
    	}
    
    	for _, line := range strings.Split(string(out), "\n") {
    		if line != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/query.go

    			// in time.
    			//
    			// We do this only if the current version is a pseudo-version: if the
    			// version is tagged, the author of the dependency module has given us
    			// explicit information about their intended precedence of this version
    			// relative to other versions, and we shouldn't contradict that
    			// information. (For example, v1.0.1 might be a backport of a fix already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/pgen.go

    	// We must do this check prior to calling pp.Flush.
    	// If there are any oversized stack frames,
    	// the assembler may emit inscrutable complaints about invalid instructions.
    	if pp.Text.To.Offset >= maxStackSize {
    		largeStackFramesMu.Lock()
    		locals := f.Frontend().(*ssafn).stksize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top