Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for rawGoModData (0.1 sec)

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

    	})
    }
    
    var rawGoModSummaryCache par.ErrCache[module.Version, *modFileSummary]
    
    // rawGoModData returns the content of the go.mod file for module m, ignoring
    // all replacements that may apply to m.
    //
    // rawGoModData cannot be used on the main module outside of workspace mode.
    //
    // Unlike rawGoModSummary, rawGoModData does not cache its results in memory.
    // Use rawGoModSummary instead unless you specifically need these bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/query.go

    // we don't need to verify it in go.sum. This makes 'go list -m -u' faster
    // and simpler.
    func versionHasGoMod(_ context.Context, m module.Version) (bool, error) {
    	_, data, err := rawGoModData(m)
    	if err != nil {
    		return false, err
    	}
    	isFake := bytes.Equal(data, modfetch.LegacyGoMod(m.Path))
    	return !isFake, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
Back to top