Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withoutHeaders (0.25 sec)

  1. pkg/config/validation/virtualservice.go

    			}
    
    			for name, header := range match.WithoutHeaders {
    				errs = appendErrors(errs, ValidateHTTPHeaderNameOrJwtClaimRoute(name))
    				// `*` is NOT a RE2 style regex, it will be translated as present_match.
    				if header != nil && header.GetRegex() != "*" {
    					errs = appendErrors(errs, validateStringMatch(header, "withoutHeaders"))
    				}
    			}
    
    			// uri allows empty prefix match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    			qpvaluePrefix := qpvalue.GetPrefix()
    			qpvalueMatch := assignExactOrPrefix(qpvalueExact, qpvaluePrefix)
    			QPMap[qpkey] = qpvalueMatch
    		}
    
    		// set WithoutHeaders
    		noHeaderMap := make(map[string]string)
    		for nhkey, nhvalue := range match.WithoutHeaders {
    			nhvalueExact := nhvalue.GetExact()
    			nhvaluePrefix := nhvalue.GetPrefix()
    			nhvalueMatch := assignExactOrPrefix(nhvalueExact, nhvaluePrefix)
    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