Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetDefaultSourceMatchers (0.44 sec)

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

    	targetMatchers []match.Matcher
    	// comboFilters defines default filters for all cases
    	comboFilters []echotest.CombinationFilter
    }
    
    func (t *TrafficContext) SetDefaultSourceMatchers(f ...match.Matcher) {
    	t.sourceMatchers = f
    }
    
    func (t *TrafficContext) SetDefaultTargetMatchers(f ...match.Matcher) {
    	t.targetMatchers = f
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    }
    
    func virtualServiceCases(t TrafficContext) {
    	// reduce the total # of subtests that don't give valuable coverage or just don't work
    	// TODO include proxyless as different features become supported
    	t.SetDefaultSourceMatchers(match.NotNaked, match.NotHeadless, match.NotProxylessGRPC)
    	t.SetDefaultTargetMatchers(match.NotNaked, match.NotHeadless, match.NotProxylessGRPC)
    	includeProxyless := []match.Matcher{match.NotNaked, match.NotHeadless}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top