Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for matchesType (0.18 sec)

  1. android/guava/src/com/google/common/net/InternetDomainName.java

          String ancestorName = DOT_JOINER.join(parts.subList(i, partsSize));
    
          if (i > 0
              && matchesType(
                  desiredType, Optional.fromNullable(PublicSuffixPatterns.UNDER.get(ancestorName)))) {
            return i - 1;
          }
    
          if (matchesType(
              desiredType, Optional.fromNullable(PublicSuffixPatterns.EXACT.get(ancestorName)))) {
            return i;
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/InternetDomainName.java

          String ancestorName = DOT_JOINER.join(parts.subList(i, partsSize));
    
          if (i > 0
              && matchesType(
                  desiredType, Optional.fromNullable(PublicSuffixPatterns.UNDER.get(ancestorName)))) {
            return i - 1;
          }
    
          if (matchesType(
              desiredType, Optional.fromNullable(PublicSuffixPatterns.EXACT.get(ancestorName)))) {
            return i;
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/matcher.go

    type matcher struct {
    	filter      celplugin.Filter
    	failPolicy  v1.FailurePolicyType
    	matcherType string
    	matcherKind string
    	objectName  string
    }
    
    func NewMatcher(filter celplugin.Filter, failPolicy *v1.FailurePolicyType, matcherKind, matcherType, objectName string) Matcher {
    	var f v1.FailurePolicyType
    	if failPolicy == nil {
    		f = v1.Fail
    	} else {
    		f = *failPolicy
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/match/match.go

    type Mapper struct {
    	*matcher.Matcher
    	Map map[string]*matcher.Matcher_OnMatch
    }
    
    func newMapper(input *xds.TypedExtensionConfig) Mapper {
    	m := map[string]*matcher.Matcher_OnMatch{}
    	match := &matcher.Matcher{
    		MatcherType: &matcher.Matcher_MatcherTree_{
    			MatcherTree: &matcher.Matcher_MatcherTree{
    				Input: input,
    				TreeType: &matcher.Matcher_MatcherTree_ExactMatchMap{
    					ExactMatchMap: &matcher.Matcher_MatcherTree_MatchMap{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_waypoint.go

    			xdsfilters.HTTPInspector,
    		},
    		TrafficDirection: core.TrafficDirection_INBOUND,
    		FilterChains:     chains,
    		FilterChainMatcher: &matcher.Matcher{
    			MatcherType: &matcher.Matcher_MatcherTree_{
    				MatcherTree: &matcher.Matcher_MatcherTree{
    					Input: match.DestinationIP,
    					TreeType: &matcher.Matcher_MatcherTree_CustomMatch{
    						CustomMatch: &xds.TypedExtensionConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top