Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 73 of 73 for Usages (0.08 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // The place for a item in `left` is found by:
    // scan from the place of last insertion in `right` to the end of `right`,
    // the place is before the first item that is greater than the item we want to insert.
    // example usage: using server-only items as left and patch items as right. We insert server-only items
    // to patch list. We use the order of live object as record for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    		reason = fmt.Sprintf("bad module path inferred from directory in GOPATH: %v", badPathErr)
    	}
    	msg := `cannot determine module path for source directory %s (%s)
    
    Example usage:
    	'go mod init example.com/m' to initialize a v0 or v1 module
    	'go mod init example.com/m/v2' to initialize a v2 module
    
    Run 'go help mod init' for more information.
    `
    	return "", fmt.Errorf(msg, dir, reason)
    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/cgo/gcc.go

    		f.Edit.Insert(f.offset(f.AST.Name.End()), "; import _cgo_unsafe \"unsafe\"")
    	}
    	p.rewriteRef(f)
    }
    
    // loadDefines coerces gcc into spitting out the #defines in use
    // in the file f and saves relevant renamings in f.Name[name].Define.
    func (p *Package) loadDefines(f *File) {
    	var b bytes.Buffer
    	b.WriteString(builtinProlog)
    	b.WriteString(f.Preamble)
    	stdout := p.gccDefines(b.Bytes())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top