Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WriteGoSum (0.48 sec)

  1. src/cmd/go/internal/modfetch/fetch.go

    // WriteGoSum writes the go.sum file if it needs to be updated.
    //
    // keep is used to check whether a newly added sum should be saved in go.sum.
    // It should have entries for both module content sums and go.mod sums
    // (version ends with "/go.mod"). Existing sums will be preserved unless they
    // have been marked for deletion with TrimGoSum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    func commitRequirements(ctx context.Context, opts WriteOpts) (err error) {
    	if inWorkspaceMode() {
    		// go.mod files aren't updated in workspace mode, but we still want to
    		// update the go.work.sum file.
    		return modfetch.WriteGoSum(ctx, keepSums(ctx, loaded, requirements, addBuildListZipSums), mustHaveCompleteRequirements())
    	}
    	_, updatedGoMod, modFile, err := UpdateGoModFromReqs(ctx, opts)
    	if err != nil {
    		if errors.Is(err, errNoChange) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    			// commitRequirements below will also call WriteGoSum, but the "keep" map
    			// we have here could be strictly larger: commitRequirements only commits
    			// loaded.requirements, but here we may have also loaded (and want to
    			// preserve checksums for) additional entities from compatRS, which are
    			// only needed for compatibility with ld.TidyCompatibleVersion.
    			if err := modfetch.WriteGoSum(ctx, keep, mustHaveCompleteRequirements()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top