Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WithoutHeaders (0.21 sec)

  1. tests/integration/pilot/common/routing.go

            {{- range $data := .Headers }}
              "{{$data.Name}}":
                {{$data.Match}}: {{$data.Value}}
            {{- end }}
          {{- end }}
          {{- if .WithoutHeaders }}
          withoutHeaders:
            {{- range $data := .WithoutHeaders }}
              "{{$data.Name}}":
                {{$data.Match}}: {{$data.Value}}
            {{- end }}
          {{- end }}
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K 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