Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Matloob (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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