Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for pathpkg (0.1 sec)

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

    	// or an appropriate base for a pseudo-version.
    	var (
    		highestCanonical string
    		pseudoBase       string
    	)
    	for _, pathTag := range info.Tags {
    		v, tagIsCanonical := tagToVersion(pathTag)
    		if statVers != "" && semver.Compare(v, statVers) == 0 {
    			// The tag is equivalent to the version requested by the user.
    			if tagIsCanonical {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/module/module.go

    func importPathOK(r rune) bool {
    	return modPathOK(r) || r == '+'
    }
    
    // fileNameOK reports whether r can appear in a file name.
    // For now we allow all Unicode letters but otherwise limit to pathOK plus a few more punctuation characters.
    // If we expand the set of allowed characters here, we have to
    // work harder at detecting potential case-folding and normalization collisions.
    // See note about "escaped paths" above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top