Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Matloob (0.13 sec)

  1. src/cmd/go/internal/modindex/scan.go

    			// return an error to make the module hash invalid.
    			// Symlink directories in modules are tricky, so we won't index
    			// modules that contain them.
    			// TODO(matloob): perhaps don't return this error if the symlink leads to
    			// a directory with a go.mod file.
    			return ErrNotIndexed
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. 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)
  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/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)
  6. 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)
  7. src/cmd/go/internal/load/pkg.go

    	// for example there are no Go files (NoGoError), or there's a problem in the imported
    	// package's source files themselves (scanner errors).
    	//
    	// TODO(matloob): Perhaps make each of those the errors in the first group
    	// (including modload.ImportMissingError, ImportMissingSumError, and the
    	// corresponding "cannot find package %q in any of" GOPATH-mode error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    			continue // d is marked for deletion.
    		}
    		modRoot := d.Path
    		if d.ModulePath == "" {
    			missingModulePaths[d.Path] = modRoot
    		}
    	}
    
    	// Clean up and annotate directories.
    	// TODO(matloob): update x/mod to actually add module paths.
    	for moddir, absmodroot := range missingModulePaths {
    		_, f, err := ReadModFile(filepath.Join(absmodroot, "go.mod"), nil)
    		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)
  9. src/cmd/go/internal/work/exec.go

    	handle := func(ctx context.Context, a *Action) {
    		if a.json != nil {
    			a.json.TimeStart = time.Now()
    		}
    		var err error
    		if a.Actor != nil && (!a.Failed || a.IgnoreFail) {
    			// TODO(matloob): Better action descriptions
    			desc := "Executing action (" + a.Mode
    			if a.Package != nil {
    				desc += " " + a.Package.Desc()
    			}
    			desc += ")"
    			ctx, span := trace.StartSpan(ctx, desc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top