Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for unmatched (0.27 sec)

  1. pilot/pkg/networking/core/accesslog_test.go

    						Name:       wellknown.FileAccessLog,
    						ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(defaultJSONLabelsOut)},
    					},
    				},
    			},
    		},
    		{
    			name: "log-selector-unmatched-telemetry",
    			push: env.PushContext(),
    			proxy: &model.Proxy{
    				ConfigNamespace: "default",
    				Labels:          map[string]string{"app": "test-with-server-accesslog-filter"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. security/pkg/pki/util/crypto_test.go

    			}
    		} else if err != nil {
    			t.Errorf(`%s: Unexpected error: "%s"`, id, err)
    		} else if keyType := reflect.TypeOf(key); keyType != c.keyType {
    			t.Errorf(`%s: Unmatched key type: expected "%v" but got "%v"`, id, c.keyType, keyType)
    		}
    	}
    }
    
    func TestGetRSAKeySize(t *testing.T) {
    	testCases := map[string]struct {
    		pem    string
    		size   int
    		errMsg string
    	}{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            'compatible platforms, but additional attributes unmatched' | [platform: JavaVersion.JAVA8]                 | [platform: JavaVersion.JAVA6, flavor: 'free'] | [platform: JavaVersion.JAVA6, flavor: 'paid'] | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                  - Unmatched attributes:
                      - Provides opacity 'transparent' but the consumer didn't ask for it
                      - Provides shape 'round' but the consumer didn't ask for it
              - Variant 'blueSquareOpaqueElements' capability :${temporaryFolder.getTestDirectory().getName()}:unspecified declares attribute 'color' with value 'blue':
                  - Unmatched attributes:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. pkg/config/analysis/msg/messages.yaml

        code: IST0150
        level: Warning
        description: "Proxy may prevent tcp named ports and unmatched traffic for ports serving TCP protocol from being forwarded correctly for ExternalName services."
        template: "Port name for ExternalName service is invalid. Proxy may prevent tcp named ports and unmatched traffic for ports serving TCP protocol from being forwarded correctly"
    
      - name: "EnvoyFilterUsesRelativeOperation"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_inbound.go

    	// only configures TLS overrides.
    	tlsSettings *networking.ServerTLSSettings
    
    	// passthrough should be set to true for the 'passthrough' chains, which are the chains always
    	// present to handle all unmatched traffic. These have a few naming and quirks that require
    	// different configuration.
    	passthrough bool
    
    	// bindToPort determines if this chain should form a real listener that actually binds to a real port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.gen.go

    	// Description: Proxy may prevent tcp named ports and unmatched traffic for ports serving TCP protocol from being forwarded correctly for ExternalName services.
    	ExternalNameServiceTypeInvalidPortName = diag.NewMessageType(diag.Warning, "IST0150", "Port name for ExternalName service is invalid. Proxy may prevent tcp named ports and unmatched traffic for ports serving TCP protocol from being forwarded correctly")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    // it will force all Pods to move to activeQ/backoffQ,
    // but we take it as an unmatched event unless the ce is also a wildcard one.
    func (ce ClusterEvent) Match(event ClusterEvent) bool {
    	return ce.IsWildCard() || (ce.Resource == WildCard || ce.Resource == event.Resource) && ce.ActionType&event.ActionType != 0
    }
    
    func UnrollWildCardResource() []ClusterEventWithHint {
    	return []ClusterEventWithHint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. src/net/http/cookiejar/jar_test.go

    	".net":                    ".net",
    	".net.":                   ".net",
    	"a..":                     "a.",
    	"b.a..":                   "b.a.",
    	"weird.stuff...":          "weird.stuff..",
    	"[bad.unmatched.bracket:": "error",
    }
    
    func TestCanonicalHost(t *testing.T) {
    	for h, want := range canonicalHostTests {
    		got, err := canonicalHost(h)
    		if want == "error" {
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    	}
    	if match.Sni != "" {
    		if fc.FilterChainMatch == nil || len(fc.FilterChainMatch.ServerNames) == 0 {
    			return false
    		}
    		sniMatched := false
    		for _, sni := range fc.FilterChainMatch.ServerNames {
    			if sni == match.Sni {
    				sniMatched = true
    				break
    			}
    		}
    		if !sniMatched {
    			return false
    		}
    	}
    
    	if match.TransportProtocol != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top