Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SubexpNames (0.07 sec)

  1. cni/pkg/nodeagent/podcgroupns.go

    func reSubMatchMap(r *regexp.Regexp, str string) map[string]string {
    	match := r.FindStringSubmatch(str)
    	if match == nil {
    		return nil
    	}
    	subMatchMap := make(map[string]string)
    	for i, name := range r.SubexpNames() {
    		if i != 0 {
    			subMatchMap[name] = match[i]
    		}
    	}
    	return subMatchMap
    }
    
    func isValidCGroupPathMatches(matches map[string]string) bool {
    	if matches == nil {
    		return false
    	}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg regexp, method (*Regexp) ReplaceAllString(string, string) string
    pkg regexp, method (*Regexp) ReplaceAllStringFunc(string, func(string) string) string
    pkg regexp, method (*Regexp) String() string
    pkg regexp, method (*Regexp) SubexpNames() []string
    pkg regexp, type Regexp struct
    pkg regexp/syntax, const ClassNL Flags
    pkg regexp/syntax, const DotNL Flags
    pkg regexp/syntax, const EmptyBeginLine EmptyOp
    pkg regexp/syntax, const EmptyBeginText EmptyOp
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top