Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for importPathOK (1.85 sec)

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

    	if r < utf8.RuneSelf {
    		return r == '-' || r == '.' || r == '_' || r == '~' ||
    			'0' <= r && r <= '9' ||
    			'A' <= r && r <= 'Z' ||
    			'a' <= r && r <= 'z'
    	}
    	return false
    }
    
    // importPathOK reports whether r can appear in a package import path element.
    //
    // Import paths are intermediate between module paths and file paths: we allow
    // disallow characters that would be confusing or ambiguous as arguments to
    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