Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for withoutHeaders (0.39 sec)

  1. releasenotes/notes/49537.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 49537
    releaseNotes:
      - |
        **Fixed** an issue that when using `withoutHeaders` to configure route matching rules in VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:10:16 UTC 2024
    - 329 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/StripSymbolsIntegrationTest.groovy

            succeeds ":stripSymbolsDebug"
    
            then:
            executedAndNotSkipped":stripSymbolsDebug"
            executable("build/exe/main/debug/app").assertHasDebugSymbolsFor(withoutHeaders(app.original))
            binary("build/stripped").assertDoesNotHaveDebugSymbolsFor(withoutHeaders(app.original))
        }
    
        @ToBeFixedForConfigurationCache
        def "strip is skipped when there are no changes"() {
            when:
            succeeds ":stripSymbolsDebug"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/ExtractSymbolsIntegrationTest.groovy

            then:
            executedAndNotSkipped":extractSymbolsDebug"
            fixture("build/symbols").assertHasDebugSymbolsFor(withoutHeaders(app.alternate))
        }
    
        NativeBinaryFixture fixture(String path) {
            return new NativeBinaryFixture(file(path), toolChain)
        }
    
        List<String> withoutHeaders(SourceElement sourceElement) {
            return sourceElement.sourceFileNames.findAll { !it.endsWith(".h") }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice.go

    	}
    	if out.Authority == nil {
    		out.Authority = root.Authority
    	}
    	// headers
    	out.Headers = maps.MergeCopy(root.Headers, delegate.Headers)
    
    	// withoutheaders
    	out.WithoutHeaders = maps.MergeCopy(root.WithoutHeaders, delegate.WithoutHeaders)
    
    	// queryparams
    	out.QueryParams = maps.MergeCopy(root.QueryParams, delegate.QueryParams)
    
    	if out.Port == 0 {
    		out.Port = root.Port
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. pkg/config/validation/virtualservice_test.go

    		{name: "exact without headers match", route: &networking.HTTPRoute{
    			Redirect: &networking.HTTPRedirect{
    				Uri:       "/",
    				Authority: "foo.biz",
    			},
    			Match: []*networking.HTTPMatchRequest{{
    				WithoutHeaders: map[string]*networking.StringMatch{
    					"header": {
    						MatchType: &networking.StringMatch_Exact{Exact: "test"},
    					},
    				},
    			}},
    		}, valid: true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pilot/pkg/model/virtualservice_test.go

    				},
    			},
    			expected: false,
    		},
    		{
    			name: "withoutHeaders mismatch",
    			root: &networking.HTTPMatchRequest{
    				WithoutHeaders: map[string]*networking.StringMatch{
    					"header": {
    						MatchType: &networking.StringMatch_Prefix{Prefix: "h1"},
    					},
    				},
    			},
    			leaf: &networking.HTTPMatchRequest{
    				WithoutHeaders: map[string]*networking.StringMatch{
    					"header": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route_test.go

    						Headers: map[string]*networking.StringMatch{
    							"@request.auth.claims.Foo": {
    								MatchType: &networking.StringMatch_Exact{
    									Exact: "Bar",
    								},
    							},
    						},
    						WithoutHeaders: map[string]*networking.StringMatch{
    							"@request.auth.claims.Bla": {
    								MatchType: &networking.StringMatch_Exact{
    									Exact: "Bar",
    								},
    							},
    						},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
Back to top