Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for overlapping (0.62 sec)

  1. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.VirtualServiceIneffectiveMatch, "VirtualService non-method-get"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-in-single-match"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-in-two-matches"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-mathes-with-different-methods"},
    		},
    	},
    	{
    		name: "host defined in virtualservice not found in the gateway",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    			QPMap,
    			noHeaderMap,
    		}
    		return
    	}
    	return nil
    }
    
    // coveredValidation validate the overlapping match between two instance of OverlappingMatchValidationForHTTPRoute
    func coveredValidation(vA, vB *OverlappingMatchValidationForHTTPRoute) bool {
    	// check the URI overlapping match, such as vB.Prefix is '/debugs' and vA.Prefix is '/debug'
    	if strings.HasPrefix(vB.Prefix, vA.Prefix) {
    		// check the port field
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrOverlappingFilterNotification: {
    		Code:           "InvalidArgument",
    		Description:    "An object key name filtering rule defined with overlapping prefixes, overlapping suffixes, or overlapping combinations of prefixes and suffixes for the same event types.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrFilterNameInvalid: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    	if !reflect.DeepEqual(claims, resultClaims) {
    		t.Fatalf("Unexpected pvc:\n %+v\n, desired pvc:\n %+v", claims, resultClaims)
    	}
    
    	// non-nil with non-overlapping labels merge pvc and statefulset labels
    	statefulSet.Spec.Selector.MatchLabels = map[string]string{"name": "foo"}
    	statefulSet.Spec.VolumeClaimTemplates[0].ObjectMeta.Labels = map[string]string{"test": "test"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. src/net/netip/netip_test.go

    		{pfx("0.0.0.0/0"), pfx("1.2.3.0/32"), true},
    
    		{pfx("1.2.3.0/32"), pfx("5.5.5.5/0"), true}, // normalization not required; /0 means true
    
    		// IPv6 overlapping
    		{pfx("5::1/128"), pfx("5::0/8"), true},
    		{pfx("5::0/8"), pfx("5::1/128"), true},
    
    		// IPv6 not overlapping
    		{pfx("1::1/128"), pfx("2::2/128"), false},
    		{pfx("0100::0/8"), pfx("::1/128"), false},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils.go

    // overlappingStatefulSets sorts a list of StatefulSets by creation timestamp, using their names as a tie breaker.
    // Generally used to tie break between StatefulSets that have overlapping selectors.
    type overlappingStatefulSets []*apps.StatefulSet
    
    func (o overlappingStatefulSets) Len() int { return len(o) }
    
    func (o overlappingStatefulSets) Swap(i, j int) { o[i], o[j] = o[j], o[i] }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. 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)
  8. pkg/controller/job/job_controller.go

    	key, err := controller.KeyFunc(obj)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Couldn't get key for object %+v: %v", obj, err))
    		return
    	}
    
    	// TODO: Handle overlapping controllers better. Either disallow them at admission time or
    	// deterministically avoid syncing controllers that fight over pods. Currently, we only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      selected_boxes = tf.gather(boxes, selected_indices)
    This op also supports a Soft-NMS (with Gaussian weighting) mode (c.f.
    Bodla et al, https://arxiv.org/abs/1704.04503) where boxes reduce the score
    of other overlapping boxes instead of directly causing them to be pruned.
    To enable this Soft-NMS mode, set the `soft_nms_sigma` parameter to be
    larger than 0.
      }];
    
      let arguments = (ins
        TFL_FpTensor:$boxes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    			// dead before the vardef. See issue #14904.
    			return
    		}
    
    		// mayOverlap keeps track of whether the LHS and RHS might
    		// refer to partially overlapping memory. Partial overlapping can
    		// only happen for arrays, see the comment in moveWhichMayOverlap.
    		//
    		// If both sides of the assignment are not dereferences, then partial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top