Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,757 for greater (0.74 sec)

  1. pilot/pkg/xds/endpoints/ep_filters.go

    		gateways := maps.Keys(gatewayWeights)
    		gateways = model.SortGateways(gateways)
    
    		// Create endpoints for the gateways.
    		for _, gw := range gateways {
    			epWeight := gatewayWeights[gw]
    			if epWeight == 0 {
    				log.Warnf("gateway weight must be greater than 0, scaleFactor is %d", scaleFactor)
    				epWeight = 1
    			}
    			epAddr := util.BuildAddress(gw.Addr, gw.Port)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/validation/validation_test.go

    			config: repeatedSchedulerName,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeDuplicate,
    					Field: "profiles[1].schedulerName",
    				},
    			},
    		},
    		"greater-than-100-profile-percentage-of-nodes-to-score": {
    			config: profilePercentageOfNodesToScore101,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. internal/config/errors.go

    	)
    
    	ErrInvalidNumberOfErasureEndpoints = newErrFn(
    		"Invalid total number of endpoints for erasure mode",
    		"Please provide number of endpoints greater or equal to 2",
    		"For more information, please refer to https://min.io/docs/minio/linux/operations/concepts/erasure-coding.html",
    	)
    
    	ErrStorageClassValue = newErrFn(
    		"Invalid storage class value",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/magic.go

    // so RotRight(x, k) > ⎣x/(2^k)⎦
    //
    // Finally, if x > a and has k trailing zero bits, then RotRight(x, k) == ⎣x/(2^k)⎦
    // and ⎣x/(2^k)⎦ must be greater than ⎣a/(2^k)⎦, that is the top n-k bits of x must
    // be greater than the top n-k bits of a because the rest of x bits are zero.
    //
    // So the two conditions about can be replaced with the single test
    //
    // RotRight(x*m mod 2^n, k) <= ⎣(2^n - 1)/c⎦
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. hack/make-rules/test.sh

          kube::test::usage
          exit 0
          ;;
        p)
          PARALLEL="${OPTARG}"
          if ! isnum "${PARALLEL}" || [[ "${PARALLEL}" -le 0 ]]; then
            kube::log::usage "'$0': argument to -p must be numeric and greater than 0"
            kube::test::usage
            exit 1
          fi
          ;;
        i)
          kube::log::usage "'$0': use GOFLAGS='-count <num-iterations>'"
          kube::test::usage
          exit 1
          ;;
        :)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. pkg/volume/emptydir/empty_dir_test.go

    		t.Errorf("Unexpected value for empty directory; expected %v, got %v", e, a)
    	}
    	if metrics.Capacity.Value() <= 0 {
    		t.Errorf("Expected Capacity to be greater than 0")
    	}
    	if metrics.Available.Value() <= 0 {
    		t.Errorf("Expected Available to be greater than 0")
    	}
    }
    
    func TestGetHugePagesMountOptions(t *testing.T) {
    	testCases := map[string]struct {
    		pod            *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: return %[[RESULT]]
        func.return %bounded : tensor<i32>
      }
    
      // CHECK-LABEL: func @greater
      func.func @greater(%arg0: tensor<2xi32>, %arg1: tensor<2xi32>) -> tensor<2xi1> {
        // CHECK-NEXT:  mhlo.compare GT, %arg0, %arg1
        %0 = "tf.Greater"(%arg0, %arg1) : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi1>
        func.return %0: tensor<2xi1>
      }
    
      // CHECK-LABEL: batchmatmulv2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  8. guava/src/com/google/common/cache/Striped64.java

                Cell r = new Cell(x); // Optimistically create
                if (busy == 0 && casBusy()) {
                  boolean created = false;
                  try { // Recheck under lock
                    Cell[] rs;
                    int m, j;
                    if ((rs = cells) != null && (m = rs.length) > 0 && rs[j = (m - 1) & h] == null) {
                      rs[j] = r;
                      created = true;
                    }
                  } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/Striped64.java

                Cell r = new Cell(x); // Optimistically create
                if (busy == 0 && casBusy()) {
                  boolean created = false;
                  try { // Recheck under lock
                    Cell[] rs;
                    int m, j;
                    if ((rs = cells) != null && (m = rs.length) > 0 && rs[j = (m - 1) & h] == null) {
                      rs[j] = r;
                      created = true;
                    }
                  } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (2)
  10. tensorflow/compiler/jit/xla_launch_util.h

    // Tensor with AsyncValueTensor; 3. Tensor with raw device mem pointer.
    // For case 3, we need to create a PjRtBuffer from the raw device mem pointer,
    // and we need to ensure the PjRtBuffer persists till XLA computation is
    // complete. Therefore we put the newly created PjRtBuffer into `owned_args`.
    // Caller is responsible to ensure `owned_args` lives till the end of XLA
    // computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top