Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CheckFilePath (0.14 sec)

  1. src/cmd/go/internal/load/pkg.go

    // can't or won't be included in modules and therefore shouldn't be treated
    // as existing for embedding.
    func isBadEmbedName(name string) bool {
    	if err := module.CheckFilePath(name); err != nil {
    		return true
    	}
    	switch name {
    	// Empty string should be impossible but make it bad.
    	case "":
    		return true
    	// Version control directories won't be present in module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top