Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for attrPrefix (0.17 sec)

  1. src/encoding/xml/marshal.go

    	if url == xmlURL {
    		return xmlPrefix
    	}
    
    	// Need to define a new name space.
    	if p.attrPrefix == nil {
    		p.attrPrefix = make(map[string]string)
    		p.attrNS = make(map[string]string)
    	}
    
    	// Pick a name. We try to use the final element of the path
    	// but fall back to _.
    	prefix := strings.TrimRight(url, "/")
    	if i := strings.LastIndex(prefix, "/"); i >= 0 {
    		prefix = prefix[i+1:]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top