Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Matloob (0.3 sec)

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

    //
    // and the Blocks or Values used in the Func can be accessed
    // like this:
    //   fun.blocks["entry"] or fun.values["deadval"]
    
    package ssa
    
    // TODO(matloob): Choose better names for Fun, Bloc, Goto, etc.
    // TODO(matloob): Write a parser for the Func disassembly. Maybe
    // the parser can be used instead of Fun.
    
    import (
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/read.go

    func (rp *IndexPackage) ScanDir(tags map[string]bool) (sortedImports []string, sortedTestImports []string, err error) {
    	// TODO(matloob) dir should eventually be relative to indexed directory
    	// TODO(matloob): skip reading raw package and jump straight to data we need?
    
    	defer func() {
    		if e := recover(); e != nil {
    			err = fmt.Errorf("error reading module index: %v", e)
    		}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/fsys/fsys.go

    }
    
    func (n *node) isDir() bool {
    	return n.actualFilePath == "" && n.children != nil
    }
    
    func (n *node) isDeleted() bool {
    	return n.actualFilePath == "" && n.children == nil
    }
    
    // TODO(matloob): encapsulate these in an io/fs-like interface
    var overlay map[string]*node // path -> file or directory node
    var cwd string               // copy of base.Cwd() to avoid dependency
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    type JSONSuggestedFix struct {
    	Message string         `json:"message"`
    	Edits   []JSONTextEdit `json:"edits"`
    }
    
    // A JSONDiagnostic describes the JSON schema of an analysis.Diagnostic.
    //
    // TODO(matloob): include End position if present.
    type JSONDiagnostic struct {
    	Category       string                   `json:"category,omitempty"`
    	Posn           string                   `json:"posn"` // e.g. "file.go:line:column"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/main.go

    	buildVersion := buildcfg.Version
    	if goexperiment := buildcfg.Experiment.String(); goexperiment != "" {
    		buildVersion += " X:" + goexperiment
    	}
    	addstrdata1(ctxt, "runtime.buildVersion="+buildVersion)
    
    	// TODO(matloob): define these above and then check flag values here
    	if ctxt.Arch.Family == sys.AMD64 && buildcfg.GOOS == "plan9" {
    		flag.BoolVar(&flag8, "8", false, "use 64-bit addresses in symbol table")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/gc.go

    	// to the path the disk path would be rewritten to.
    
    	cgoFiles := make(map[string]bool)
    	for _, f := range a.Package.CgoFiles {
    		cgoFiles[f] = true
    	}
    
    	// TODO(matloob): Higher up in the stack, when the logic for deciding when to make copies
    	// of c/c++/m/f/hfiles is consolidated, use the same logic that Build uses to determine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modindex/build.go

    	if ext == ".syso" {
    		// binary, no reading
    		return info, nil
    	}
    
    	f, err := fsys.Open(info.name)
    	if err != nil {
    		return nil, err
    	}
    
    	// TODO(matloob) should we decide whether to ignore binary only here or earlier
    	// when we create the index file?
    	var ignoreBinaryOnly bool
    	if strings.HasSuffix(name, ".go") {
    		err = readGoInfo(f, info)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/cache.go

    	// cache is being served by a GOPROXY HTTP server. This will be corrected
    	// the next time a new version of the module is fetched and the file is rewritten.
    	// TODO(matloob): golang.org/issue/43313 covers adding a go mod verify
    	// command that removes module versions that fail checksums. It should also
    	// remove list files that are detected to be corrupt.
    	f, err := lockedfile.Edit(listFile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top