Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for from (0.58 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Offset = offset + 32
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_VS32
    
    			p = s.Prog(ppc64.ALXV)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Offset = offset + 48
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_VS33
    
    			// generate 16 byte stores
    			p = s.Prog(ppc64.ASTXV)
    			p.From.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/types2/initorder.go

    // findPath returns the (reversed) list of objects []Object{to, ... from}
    // such that there is a path of object dependencies from 'from' to 'to'.
    // If there is no such path, the result is nil.
    func findPath(objMap map[Object]*declInfo, from, to Object, seen map[Object]bool) []Object {
    	if seen[from] {
    		return nil
    	}
    	seen[from] = true
    
    	for d := range objMap[from].deps {
    		if d == to {
    			return []Object{d}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/clean/clean.go

    	_test/           old test directory, left from Makefiles
    	_testmain.go     old gotest file, left from Makefiles
    	test.out         old test log, left from Makefiles
    	build.out        old test log, left from Makefiles
    	*.[568ao]        object files, left from Makefiles
    
    	DIR(.exe)        from go build
    	DIR.test(.exe)   from go test -c
    	MAINFILE(.exe)   from go build MAINFILE.go
    	*.so             from SWIG
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/edit.go

    	// worthwhile.
    	//
    	// Graph pruning adds an extra wrinkle: a given node in the module graph
    	// may be reached from a root whose dependencies are pruned, and from a root
    	// whose dependencies are not pruned. It may be the case that the path from
    	// the unpruned root leads to a conflict, while the path from the pruned root
    	// prunes out the requirements that would lead to that conflict.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/mvs/mvs.go

    // assume that the version strings are semantic versions; instead, the Max method
    // gives access to the comparison operation.
    //
    // It must be safe to call methods on a Reqs from multiple goroutines simultaneously.
    // Because a Reqs may read the underlying graph from the network on demand,
    // the MVS algorithms parallelize the traversal to overlap network delays.
    type Reqs interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cache/default.go

    )
    
    // cacheREADME is a message stored in a README in the cache directory.
    // Because the cache lives outside the normal Go trees, we leave the
    // README as a courtesy to explain where it came from.
    const cacheREADME = `This directory holds cached build artifacts from the Go build system.
    Run "go clean -cache" if the directory is getting too large.
    Run "go clean -fuzzcache" to delete the fuzz cache.
    See golang.org to learn more about Go.
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/abi.go

    		}
    		// Assume all functions are referenced at least as
    		// ABIInternal, since they may be referenced from
    		// other packages.
    		fn.ABIRefs.Set(obj.ABIInternal, true)
    
    		// If a symbol is defined in this package (either in
    		// Go or assembly) and given a linkname, it may be
    		// referenced from another package, so make it
    		// callable via any ABI. It's important that we know
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/vcs.go

    				return nil, vcsErrorf("unexpected revno from bzr log: %q", line)
    			}
    			revno = i
    		case "timestamp":
    			j := strings.Index(val, " ")
    			if j < 0 {
    				return nil, vcsErrorf("unexpected timestamp from bzr log: %q", line)
    			}
    			t, err := time.Parse("2006-01-02 15:04:05 -0700", val[j+1:])
    			if err != nil {
    				return nil, vcsErrorf("unexpected timestamp from bzr log: %q", line)
    			}
    			tm = t.UTC()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    }
    
    // compilerEnv returns a map from "goos/goarch" to the
    // compiler setting to use for that platform.
    // The entry for key "" covers any goos/goarch not explicitly set in the map.
    // For example, compilerEnv("CC", "gcc") returns the C compiler settings
    // read from $CC, defaulting to gcc.
    //
    // The result is a map because additional environment variables
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top