Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 109 for It (2.48 sec)

  1. pilot/pkg/model/sidecar.go

    		// If both are exact hosts, then fallback is not needed.
    		// In this scenario it should be determined by exact lookup.
    		if !hIsWildCard && !importedHost.IsWildCarded() {
    			continue
    		}
    
    		var match bool
    		if useGatewaySemantics {
    			// The new way. Matching logic exactly mirrors Service matching
    			// If a route defines `*.com` and we import `a.com`, it will not match
    			match = vsHost.SubsetOf(importedHost)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. pkg/test/framework/suite.go

    	// Otherwise it stops test execution.
    	//
    	// Deprecated: Tests should not make assumptions about number of clusters.
    	RequireMinClusters(minClusters int) Suite
    	// RequireMaxClusters ensures that the current environment contains at least the given number of clusters.
    	// Otherwise it stops test execution.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. pilot/pkg/trustbundle/trustbundle_test.go

    		t.Errorf("Basic trustbundle update test failed. Callback value is %v", cbCounter)
    	}
    
    	// Add Second Cert update
    	// ensure intermediate CA certs accepted, it replaces the first completely, and lib dedupes duplicate cert
    	err = tb.UpdateTrustAnchor(&TrustAnchorUpdate{
    		TrustAnchorConfig: TrustAnchorConfig{Certs: []string{intermediateCACert, intermediateCACert}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/productpage.py

    # Using OpenTelemetry allows you to add application-specific tracing later on,
    # but you can just manually forward the headers if you prefer.
    #
    # The OpenTelemetry example here is very basic. It only forwards headers. It is
    # intended as a reference to help people get started, eg how to create spans,
    # extract/inject context, etc.
    
    
    propagator = B3MultiFormat()
    set_global_textmap(B3MultiFormat())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  5. pkg/config/analysis/analyzers/analyzers_test.go

    // * Expected messages are in the format {msg.ValidationMessageType, "<ResourceKind>/<Namespace>/<ResourceName>"}.
    //   - Note that if Namespace is omitted in the input YAML, it will be skipped here.
    var testGrid = []testCase{
    	{
    		name: "misannoted",
    		inputFiles: []string{
    			"testdata/misannotated.yaml",
    		},
    		analyzer: &annotations.K8sAnalyzer{},
    		expected: []message{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/client.go

    	if _, f := cl.kinds[resourceGVK]; f {
    		cl.logger.Debugf("added resource that already exists: %v", resourceGVK)
    		return
    	}
    
    	// We need multiple filters:
    	// 1. Is it in this revision?
    	// 2. Does it match the discovery selector?
    	// 3. Does it have a special per-type object filter?
    	var extraFilter func(obj any) bool
    	if of, f := cl.filtersByGVK[resourceGVK]; f && of.ObjectFilter != nil {
    		extraFilter = of.ObjectFilter.Filter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. pkg/spiffe/spiffe.go

    	}
    	return parsed.TrustDomain, nil
    }
    
    // RetrieveSpiffeBundleRootCerts retrieves the trusted CA certificates from a list of SPIFFE bundle endpoints.
    // It can use the system cert pool and the supplied certificates to validate the endpoints.
    func RetrieveSpiffeBundleRootCerts(config map[string]string, caCertPool *x509.CertPool, retryTimeout time.Duration) (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. pkg/test/kube/dump.go

    					validationContainer.IsContainer(container) || strings.HasPrefix(pod.Name, "istio-cni-node") {
    					// This is only called if the test failed, so we cannot mark it as "failed" again. Instead, output
    					// a log which will get highlighted in the test logs
    					// TODO proper analysis of restarts to ensure we do not miss crashes when tests still pass.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  9. pkg/webhooks/validation/controller/controller.go

    	scope := scope.WithLabels("webhook", name)
    	// Stop early if webhook is not present, rather than attempting (and failing) to reconcile permanently
    	// If the webhook is later added a new reconciliation request will trigger it to update
    	if whc == nil {
    		scope.Infof("Skip patching webhook, not found")
    		return nil
    	}
    
    	scope.Debugf("Reconcile(enter)")
    	defer func() { scope.Debugf("Reconcile(exit)") }()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. pilot/pkg/simulation/traffic.go

    	StrictMatch bool
    	// If set, this will mark a test as skipped. Note the result is still checked first - we skip only
    	// if we pass the test. This is to ensure that if the behavior changes, we still capture it; the skip
    	// just ensures we notice a test is wrong
    	Skip string
    	t    test.Failer
    }
    
    func (r Result) Matches(t *testing.T, want Result) {
    	t.Helper()
    	r.StrictMatch = want.StrictMatch // to make diff pass
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top