Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for we (0.79 sec)

  1. src/cmd/compile/internal/types2/decl.go

    	if typ != nil {
    		obj.typ = check.varType(typ)
    		// We cannot spread the type to all lhs variables if there
    		// are more than one since that would mark them as checked
    		// (see Checker.objDecl) and the assignment of init exprs,
    		// if any, would not be checked.
    		//
    		// TODO(gri) If we have no init expr, we should distribute
    		// a given type otherwise we need to re-evaluate the type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    //
    // For these tools we have no -V=full option to dump the build ID,
    // but we can run the tool with -v -### to reliably get the compiler proper
    // and hash that. That will work in the presence of -toolexec.
    //
    // In order to get reproducible builds for released compilers, we
    // detect a released compiler by the absence of "experimental" in the
    // --version output, and in that case we just use the version string.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/abi.go

    // wrapper functions where necessary.
    func (s *SymABIs) GenABIWrappers() {
    	// For cgo exported symbols, we tell the linker to export the
    	// definition ABI to C. That also means that we don't want to
    	// create ABI wrappers even if there's a linkname.
    	//
    	// TODO(austin): Maybe we want to create the ABI wrappers, but
    	// ensure the linker exports the right ABI definition under
    	// the unmangled name?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    		// mistake because it loses all of the extra context and results in
    		// ultimately less descriptive output. We should probably just take the
    		// text of cmdErr as the output in this case and do everything we
    		// otherwise would. We could chain the errors if we feel like it.
    		return cmdErr
    	}
    
    	// Fetch defaults from the package.
    	var p *load.Package
    	a := sh.action
    	if a != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	if _, err := os.Stat(pathf("%s/VERSION", goroot)); err == nil {
    		// If we have a VERSION file, then we use the Go version
    		// instead of build IDs as a cache key, and there is no guarantee
    		// that code hasn't changed since the last time we ran a build
    		// with this exact VERSION file (especially if someone is working
    		// on a release branch). We must not fall back to the shared build cache
    		// in this case. Leave $GOCACHE alone.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typestring.go

    			// error messages. This doesn't need to be super-elegant; we just
    			// need a clear indication that this is not a predeclared name.
    			if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
    				if isTypes2 {
    					w.string(fmt.Sprintf(" /* with %s declared at %v */", t.obj.name, t.obj.Pos()))
    				} else {
    					// Can't print position information because
    					// we don't have a token.FileSet accessible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		//       *p = *q
    		// We don't care about solving 1. Or at least, we haven't historically
    		// and no one has complained.
    		// For 2, we need to ensure that if there might be partial overlap,
    		// then we can't use OpMove; we must use memmove instead.
    		// (memmove handles partial overlap by copying in the correct
    		// direction. OpMove does not.)
    		//
    		// Note that we have to be careful here not to introduce a call when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    				// pkg.err was already non-nil, so we can reasonably attribute the error
    				// for pkg to either the original error or the one returned by
    				// queryImport. The existing error indicates only that we couldn't find
    				// the package, whereas the query error also explains why we didn't fix
    				// the problem — so we prefer the latter.
    				pkg.err = err
    			}
    
    			// err is nil, but we intentionally leave pkg.err non-nil and pkg.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/unify.go

    					// In all other cases, the method sets must match.
    					// The types unified so we know that corresponding methods
    					// match and we can simply compare the number of methods.
    					// TODO(gri) We may be able to relax this rule and select
    					// the more general interface. But if one of them is a defined
    					// type, it's not clear how to choose and whether we introduce
    					// an order dependency or not. Requiring the same method set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    		}
    		for _, m := range rs.rootModules {
    			if inRootPaths[m.Path] {
    				// This root specifies a redundant path. We already retained the
    				// selected version of this path when we saw it before, so omit the
    				// redundant copy regardless of its version.
    				//
    				// When we read the full module graph, we include the dependencies of
    				// every root even if that root is redundant. That better preserves
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top