Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for overlapping (0.16 sec)

  1. pilot/pkg/model/sidecar.go

    	for _, vs := range virtualServices {
    		v := vs.Spec.(*networking.VirtualService)
    		for _, h := range v.Hosts {
    			// We may have duplicate (not just overlapping) hosts; assume the list of VS is sorted already
    			// and never overwrite existing entries
    			if host.Name(h).IsWildCarded() {
    				_, exists := wildcardVirtualServiceHostIndex[host.Name(h)]
    				if !exists {
    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. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    			sets.New("a"),
    			false,
    		},
    		{ // no duplicates, no overlap
    			[]string{"a", "b"},
    			[]string{"c", "d"},
    			sets.New("a", "b", "c", "d"),
    			false,
    		},
    		{ // some duplicates, with some overlapping duplicates
    			[]string{"a", "b", "a"},
    			[]string{"c", "b"},
    			sets.New("a", "b", "c"),
    			false,
    		},
    		{ // empty list in CLI, but 'all' present in config file
    			[]string{},
    			[]string{"all"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/service.go

    	//
    	// In the second case, multiple services may be implemented by the same physical port number,
    	// though with a different ServicePort and IstioEndpoint for each.  If any of these overlapping
    	// services are not HTTP or H2-based, behavior is undefined, since the listener may not be able to
    	// determine the intended destination of a connection without a Host header on the request.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

            return DocumentOverlayResult(resultDocument, overlayOriginContainer, overlayResolutionContainer)
        }
    }
    
    
    /**
     * Represents the results of overlaying declarative documents.
     * * [document] is the resulting document content;
     * * [overlayNodeOriginContainer] tells where a node comes from – overlay, underlay, or combined.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top