Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for overlapping (0.23 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/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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    The attr `block_size` indicates the input block size and how the data is moved.
    
      * Chunks of data of size `block_size * block_size` from depth are rearranged
        into non-overlapping blocks of size `block_size x block_size`
      * The width of the output tensor is `input_depth * block_size`, whereas the
        height is `input_height * block_size`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. RELEASE.md

            usage.
        *   Experimental support of
            [all reduce gradient packing](https://www.tensorflow.org/api_docs/python/tf/distribute/experimental/CollectiveHints)
            to allow overlapping gradient aggregation with backward path
            computation.
        *   Deprecated `experimental_run_v2` method for distribution strategies and
            renamed the method `run` as it is no longer experimental.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top