Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Carnes (0.5 sec)

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

    			return nil, nil, fmt.Errorf("error loading go.work:\n%s:%d: %w", base.ShortPath(path), g.Syntax.Start.Line, err)
    		}
    	}
    
    	return wf, modRoots, nil
    }
    
    // ReadWorkFile reads and parses the go.work file at the given path.
    func ReadWorkFile(path string) (*modfile.WorkFile, error) {
    	path = base.ShortPath(path) // use short path in any errors
    	workData, err := fsys.ReadFile(path)
    	if err != nil {
    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/go/internal/modload/buildlist.go

    					cancel()
    					return
    				}
    			}
    		})
    	}
    	<-work.Idle()
    
    	if ctx.Err() != nil {
    		// Either we failed a spot-check, or the caller no longer cares about our
    		// answer anyway.
    		return false
    	}
    
    	return true
    }
    
    // tidyUnprunedRoots returns a minimal set of root requirements that maintains
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		if len(preambleErrors) > 0 {
    			error_(token.NoPos, "\n%s errors for preamble:\n%s", gccBaseCmd[0], preambleErrors)
    		}
    
    		fatalf("unresolved names")
    	}
    
    	return needType
    }
    
    // loadDWARF parses the DWARF debug information generated
    // by gcc to learn the details of the constants, variables, and types
    // being referred to as C.xxx.
    func (p *Package) loadDWARF(f *File, conv *typeConv, names []*Name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    		wf, err := modload.ReadWorkFile(gowork)
    		if err == nil && modload.UpdateWorkGoVersion(wf, modload.MainModules.GoVersion()) {
    			modload.WriteWorkFile(gowork, wf)
    		}
    	}
    }
    
    // parseArgs parses command-line arguments and reports errors.
    //
    // The command-line arguments are of the form path@version or simply path, with
    // implicit @upgrade. path@none is "downgrade away".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    }
    
    // Remove trailing spaces.
    func chomp(s string) string {
    	return strings.TrimRight(s, " \t\r\n")
    }
    
    // findgoversion determines the Go version to use in the version string.
    // It also parses any other metadata found in the version file.
    func findgoversion() string {
    	// The $GOROOT/VERSION file takes priority, for distributions
    	// without the source repo.
    	path := pathf("%s/VERSION", goroot)
    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/syntax/parser.go

    		o := new(Operation)
    		o.pos = pos
    		o.Op = Recv
    		o.X = x
    		return o
    	}
    
    	// TODO(mdempsky): We need parens here so we can report an
    	// error for "(x) := true". It should be possible to detect
    	// and reject that more efficiently though.
    	return p.pexpr(nil, true)
    }
    
    // callStmt parses call-like statements that can be preceded by 'defer' and 'go'.
    func (p *parser) callStmt() *CallStmt {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top