Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for Poland (0.26 sec)

  1. src/archive/tar/stat_unix.go

    		case "linux":
    			// Copied from golang.org/x/sys/unix/dev_linux.go.
    			major := uint32((dev & 0x00000000000fff00) >> 8)
    			major |= uint32((dev & 0xfffff00000000000) >> 32)
    			minor := uint32((dev & 0x00000000000000ff) >> 0)
    			minor |= uint32((dev & 0x00000ffffff00000) >> 12)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "darwin", "ios":
    			// Copied from golang.org/x/sys/unix/dev_darwin.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/mvs/mvs.go

    		// target.Version will be "" for modload, the main client of MVS.
    		// "" denotes the main module, which has no version. However, MVS treats
    		// version strings as opaque, so "" is not a special value here.
    		// See golang.org/issue/31491, golang.org/issue/29773.
    		panic(fmt.Sprintf("mistake: chose versions %+v instead of targets %+v", vs, targets))
    	}
    	return list, nil
    }
    
    // Req returns the minimal requirement list for the target module,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/vendor.go

    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/imports"
    	"cmd/go/internal/load"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/str"
    
    	"golang.org/x/mod/module"
    )
    
    var cmdVendor = &base.Command{
    	UsageLine: "go mod vendor [-e] [-v] [-o outdir]",
    	Short:     "make vendored copy of dependencies",
    	Long: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api.go

    func (e *ArgumentError) Unwrap() error { return e.Err }
    
    // An Importer resolves import paths to Packages.
    //
    // CAUTION: This interface does not support the import of locally
    // vendored packages. See https://golang.org/s/go15vendor.
    // If possible, external implementations should implement ImporterFrom.
    type Importer interface {
    	// Import returns the imported package for the given import path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell.go

    	if strings.HasPrefix(src, dir) {
    		return sh.CopyFile(dst, src, perm, force)
    	}
    
    	// On Windows, always copy the file, so that we respect the NTFS
    	// permissions of the parent folder. https://golang.org/issue/22343.
    	// What matters here is not cfg.Goos (the system we are building
    	// for) but runtime.GOOS (the system we are building on).
    	if runtime.GOOS == "windows" {
    		return sh.CopyFile(dst, src, perm, force)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    	if cgoEnabled {
    		switch goarch {
    		case "loong64", "mips", "mipsle", "mips64", "mips64le":
    			// Internally linking cgo is incomplete on some architectures.
    			// https://golang.org/issue/14449
    			return true
    		case "arm64":
    			if goos == "windows" {
    				// windows/arm64 internal linking is not implemented.
    				return true
    			}
    		case "ppc64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    	// copy the binaries out of the cache to run them, and then
    	// that will mean the go process is itself writing a binary
    	// and then executing it, so we will need to defend against
    	// ETXTBSY problems as discussed in exec.go and golang.org/issue/22220.
    	if a.Mode == "build" {
    		r, err := os.Open(target)
    		if err == nil {
    			if a.output == nil {
    				panic("internal error: a.output not set")
    			}
    			outputID, _, err := c.Put(a.actionID, r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/assign.go

    func readsMemory(n ir.Node) bool {
    	switch n.Op() {
    	case ir.ONAME:
    		n := n.(*ir.Name)
    		if n.Class == ir.PFUNC {
    			return false
    		}
    		return n.Addrtaken() || !n.OnStack()
    
    	case ir.OADD,
    		ir.OAND,
    		ir.OANDAND,
    		ir.OANDNOT,
    		ir.OBITNOT,
    		ir.OCONV,
    		ir.OCONVIFACE,
    		ir.OCONVNOP,
    		ir.ODIV,
    		ir.ODOT,
    		ir.ODOTTYPE,
    		ir.OLITERAL,
    		ir.OLSH,
    		ir.OMOD,
    		ir.OMUL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	{ir.OMOD, types.TUINT64}: ssa.OpMod64u,
    
    	{ir.OAND, types.TINT8}:   ssa.OpAnd8,
    	{ir.OAND, types.TUINT8}:  ssa.OpAnd8,
    	{ir.OAND, types.TINT16}:  ssa.OpAnd16,
    	{ir.OAND, types.TUINT16}: ssa.OpAnd16,
    	{ir.OAND, types.TINT32}:  ssa.OpAnd32,
    	{ir.OAND, types.TUINT32}: ssa.OpAnd32,
    	{ir.OAND, types.TINT64}:  ssa.OpAnd64,
    	{ir.OAND, types.TUINT64}: ssa.OpAnd64,
    
    	{ir.OOR, types.TINT8}:   ssa.OpOr8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/staticinit/sched.go

    		ir.OCONVNOP,
    		ir.ODOT,
    		ir.OEQ,
    		ir.ONE,
    		ir.OLT,
    		ir.OLE,
    		ir.OGT,
    		ir.OGE,
    		ir.OKEY,
    		ir.OSTRUCTKEY,
    		ir.OLEN,
    		ir.OMUL,
    		ir.OLSH,
    		ir.ORSH,
    		ir.OAND,
    		ir.OANDNOT,
    		ir.ONEW,
    		ir.ONOT,
    		ir.OBITNOT,
    		ir.OPLUS,
    		ir.ONEG,
    		ir.OOROR,
    		ir.OPAREN,
    		ir.ORUNESTR,
    		ir.OREAL,
    		ir.OIMAG,
    		ir.OCOMPLEX:
    		return false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top