Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Look (0.89 sec)

  1. src/cmd/go/internal/modload/init.go

    					}
    				}
    			}
    		}
    	}
    
    	// Look for Godeps.json declaring import path.
    	data, _ := os.ReadFile(filepath.Join(dir, "Godeps/Godeps.json"))
    	var cfg1 struct{ ImportPath string }
    	json.Unmarshal(data, &cfg1)
    	if cfg1.ImportPath != "" {
    		return cfg1.ImportPath, nil
    	}
    
    	// Look for vendor.json declaring import path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    	}
    
    	for _, test := range tests {
    		info := Info{
    			Types: make(map[syntax.Expr]TypeAndValue),
    		}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// look for expression
    		var expr syntax.Expr
    		for e := range info.Types {
    			if ExprString(e) == test.expr {
    				expr = e
    				break
    			}
    		}
    		if expr == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    // Most code today now uses google.golang.org/appengine instead,
    // but not all code has been so updated. When we mostly ignore build tags
    // during "go vendor", we look into "// +build appengine" files and
    // may see these legacy imports. We drop them so that the module
    // search does not look for modules to try to satisfy them.
    func scanDir(modroot string, dir string, tags map[string]bool) (imports_, testImports []string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	    run too, so that -run=X/Y matches and runs and reports the result
    	    of all tests matching X, even those without sub-tests matching Y,
    	    because it must run them to look for those sub-tests.
    	    See also -skip.
    
    	-short
    	    Tell long-running tests to shorten their run time.
    	    It is off by default but set during all.bash so that installing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	if len(names) == 0 {
    		return needType
    	}
    
    	// Coerce gcc into telling us whether each name is a type, a value, or undeclared.
    	// For names, find out whether they are integer constants.
    	// We used to look at specific warning or error messages here, but that tied the
    	// behavior too closely to specific versions of the compilers.
    	// Instead, arrange that we can infer what we need from only the presence or absence
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    				return rs, err
    			}
    		} else {
    			// Since none of the roots have been upgraded, we have no reason to
    			// suspect that they are inconsistent with the requirements of any other
    			// roots. Only look at the full module graph if we've already loaded it;
    			// otherwise, just spot-check the explicit requirements of the roots from
    			// which we loaded packages.
    			if rs.graph.Load() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    		}
    
    		// allocReg may have dropped registers from startRegsMask that
    		// aren't actually needed in startRegs. Synchronize back to
    		// startRegs.
    		//
    		// This must be done before placing spills, which will look at
    		// startRegs to decide if a block is a valid block for a spill.
    		if c := countRegs(s.startRegsMask); c != len(s.startRegs[b.ID]) {
    			regs := make([]startReg, 0, c)
    			for _, sr := range s.startRegs[b.ID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    			// SplitOf pointing to a parent slot, and SplitOffset
    			// holding the offset into the parent object.
    			pieceSlot := LocalSlot{N: n, Type: t, Off: offsets[k]}
    
    			// Look up this piece to see if we've seen a reg op
    			// for it. If not, create one.
    			_, found := sc.lookup(pieceSlot)
    			if !found {
    				// This slot doesn't appear in the map, meaning it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    		// which means it will use the GOOS/GOARCH toolchain
    		// (installed in GOROOT/pkg/tool/GOOS_GOARCH).
    		// If these are not the same toolchain, then the entire standard library
    		// will look out of date (the compilers in those two different tool directories
    		// are built for different architectures and have different build IDs),
    		// which will cause many tests to do unnecessary rebuilds and some
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    	//
    	// TODO: Since prove now derives transitive relations, it
    	// should be sufficient to learn that len(w) <= cap(w) at the
    	// beginning of prove where we look for all len/cap ops.
    	if v.Op == OpSliceLen && r&lt == 0 && ft.caps[v.Args[0].ID] != nil {
    		// len(s) > w implies cap(s) > w
    		// len(s) >= w implies cap(s) >= w
    		// len(s) == w implies cap(s) >= w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top