Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Look (0.11 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/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)
  8. 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)
  9. src/cmd/compile/internal/syntax/parser.go

    	i := len(s)
    	if s[i-1] == '\r' {
    		i--
    	}
    	return s[2:i] // lop off //, and \r at end, if any
    }
    
    func trailingDigits(text string) (uint, uint, bool) {
    	i := strings.LastIndexByte(text, ':') // look from right (Windows filenames may contain ':')
    	if i < 0 {
    		return 0, 0, false // no ':'
    	}
    	// i >= 0
    	n, err := strconv.ParseUint(text[i+1:], 10, 0)
    	return uint(i + 1), uint(n), err == nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    	for _, name := range typedefNames {
    		def := typedef[name]
    		fmt.Fprintf(fgo2, "type %s ", name)
    		// We don't have source info for these types, so write them out without source info.
    		// Otherwise types would look like:
    		//
    		// type _Ctype_struct_cb struct {
    		// //line :1
    		//        on_test *[0]byte
    		// //line :1
    		// }
    		//
    		// Which is not useful. Moreover we never override source info,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top