Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for useSumDB (0.12 sec)

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

    		goSum.status[modSum{mod, h}] = st
    	}
    	goSum.mu.Unlock()
    
    	if done {
    		return nil
    	}
    
    	// Not listed, so we want to add them.
    	// Consult checksum database if appropriate.
    	if useSumDB(mod) {
    		// Calls base.Fatalf if mismatch detected.
    		if err := checkSumDB(mod, h); err != nil {
    			return err
    		}
    	}
    
    	// Add mod+h to go.sum, if it hasn't appeared already.
    	if inited {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top