Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsValidPathSegmentPrefix (0.25 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/validation/path/name.go

    		}
    	}
    
    	return errors
    }
    
    // IsValidPathSegmentPrefix validates the name can be used as a prefix for a name which will be encoded as a path segment
    // It does not check for exact matches with disallowed names, since an arbitrary suffix might make the name valid
    func IsValidPathSegmentPrefix(name string) []string {
    	var errors []string
    	for _, illegalContent := range NameMayNotContain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 13:23:13 UTC 2020
    - 2.2K bytes
    - Viewed (0)
Back to top