Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fpmap (0.74 sec)

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

    }
    
    // resolveEmbed resolves //go:embed patterns to precise file lists.
    // It sets files to the list of unique files matched (for go list),
    // and it sets pmap to the more precise mapping from
    // patterns to files.
    func resolveEmbed(pkgdir string, patterns []string) (files []string, pmap map[string][]string, err error) {
    	var pattern string
    	defer func() {
    		if err != nil {
    			err = &EmbedError{
    				Pattern: pattern,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    			headerMap[hkey] = hvalueMatch
    		}
    
    		// set QueryParams
    		QPMap := make(map[string]string)
    		for qpkey, qpvalue := range match.QueryParams {
    			qpvalueExact := qpvalue.GetExact()
    			qpvaluePrefix := qpvalue.GetPrefix()
    			qpvalueMatch := assignExactOrPrefix(qpvalueExact, qpvaluePrefix)
    			QPMap[qpkey] = qpvalueMatch
    		}
    
    		// set WithoutHeaders
    		noHeaderMap := make(map[string]string)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top