Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for overlapping (0.18 sec)

  1. pkg/istio-agent/xds_proxy.go

    		p.connected = nil
    	}
    }
    
    func (p *XdsProxy) registerStream(c *ProxyConnection) {
    	p.connectedMutex.Lock()
    	defer p.connectedMutex.Unlock()
    	if p.connected != nil {
    		proxyLog.Warnf("registered overlapping stream; closing previous")
    		close(p.connected.stopChan)
    	}
    	p.connected = c
    }
    
    // ProxyConnection represents connection to downstream proxy.
    type ProxyConnection struct {
    	conID              uint32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/asm.go

    		return
    	}
    
    	// The addresses must not overlap. Easiest test: require monotonicity.
    	if lastAddr, ok := p.dataAddr[name]; ok && nameAddr.Offset < lastAddr {
    		p.errorf("overlapping DATA entry for %s", name)
    		return
    	}
    	p.dataAddr[name] = nameAddr.Offset + int64(sz)
    
    	switch valueAddr.Type {
    	case obj.TYPE_CONST:
    		switch sz {
    		case 1, 2, 4, 8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/builtins0.go

    	s3 := append(s2, s0...)            // append a slice              s3 == []int{0, 0, 2, 3, 5, 7, 0, 0}
    	s4 := append(s3[3:6], s3[2:]...)   // append overlapping slice    s4 == []int{3, 5, 7, 2, 3, 5, 7, 0, 0}
    
    	var t []interface{}
    	t = append(t, 42, 3.1415, "foo")   //                             t == []interface{}{42, 3.1415, "foo"}
    
    	var b []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.gen.go

    	// Description: A VirtualService rule match duplicates a match in a previous rule.
    	VirtualServiceIneffectiveMatch = diag.NewMessageType(diag.Info, "IST0131", "VirtualService rule %v match %v is not used (duplicate/overlapping match in rule %v).")
    
    	// VirtualServiceHostNotFoundInGateway defines a diag.MessageType for message "VirtualServiceHostNotFoundInGateway".
    	// Description: Host defined in VirtualService not found in Gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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