Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ZeroPseudoVersion (0.31 sec)

  1. src/cmd/vendor/golang.org/x/mod/module/pseudo.go

    	v, patch := older[:i], older[i:]
    
    	// Reassemble.
    	return v + incDecimal(patch) + "-0." + segment + build
    }
    
    // ZeroPseudoVersion returns a pseudo-version with a zero timestamp and
    // revision, which may be used as a placeholder.
    func ZeroPseudoVersion(major string) string {
    	return PseudoVersion(major, "", time.Time{}, "000000000000")
    }
    
    // incDecimal returns the decimal string incremented by 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/import.go

    				// the requirement to any real version they choose.
    				if _, pathMajor, ok := module.SplitPathVersion(mp); ok && len(pathMajor) > 0 {
    					mv = module.ZeroPseudoVersion(pathMajor[1:])
    				} else {
    					mv = module.ZeroPseudoVersion("v0")
    				}
    			}
    			mg, err := rs.Graph(ctx)
    			if err != nil {
    				return module.Version{}, err
    			}
    			if gover.ModCompare(mp, mg.Selected(mp), mv) >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top