Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 84 for overlapping (1.73 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/apis/config/types.go

    	// from all providers will be returned to the kubelet. If multiple providers are called
    	// for a single image, the results are combined. If providers return overlapping
    	// auth keys, the value from the provider earlier in this list is used.
    	Providers []CredentialProvider
    }
    
    // CredentialProvider represents an exec plugin to be invoked by the kubelet. The plugin is only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    	var backHand [8]int
    	// Deal into a data structure, so that the order of visit below is not necessarily the order of the deal.
    	// This removes bias in the case of flows with overlapping hands.
    	hand := qs.dealer.DealIntoHand(hashValue, backHand[:])
    	handSize := len(hand)
    	offset := qs.enqueues % handSize
    	qs.enqueues++
    	bestQueueIdx := -1
    	minQueueSeatSeconds := fqrequest.MaxSeatSeconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  8. src/math/big/natdiv.go

    Instead of creating new storage for the remainders and copying digits from u
    as indicated by the arrows, we use u's storage directly as both the source
    and destination of the subtractions, so that the remainders overwrite
    successive overlapping sections of u as the division proceeds, using a slice
    of u to identify the current section. This avoids all the copying as well as
    shifting of remainders.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. 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)
  10. src/image/draw/draw.go

    		// point, then we compose the rows in bottom-up order instead of
    		// top-down. Unlike the drawCopyOver function, we don't have to check
    		// the x coordinates because the built-in copy function can handle
    		// overlapping slices.
    		d0 = (dy - 1) * dstStride
    		s0 = (dy - 1) * srcStride
    		ddelta = -dstStride
    		sdelta = -srcStride
    	}
    	for ; dy > 0; dy-- {
    		copy(dstPix[d0:d0+bytesPerRow], srcPix[s0:s0+bytesPerRow])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top