Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for expectGet (0.2 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				podReasonUpdate = true
    				if updateReason != item.expectedReason {
    					t.Errorf("expected pod status reason: %+v, got %+v for %+v", item.expectedReason, updateReason, item.description)
    				}
    			}
    		}
    
    		if podReasonUpdate != item.expectedPodUpdate {
    			t.Errorf("expected pod update: %+v, got %+v for %+v", item.expectedPodUpdate, podReasonUpdate, item.description)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

               << "found invalid output dimension on row, expected "
               << expected_out_row_dim << " but got " << out_row_dim;
      if (expected_out_col_dim != ShapedType::kDynamic &&
          out_col_dim != ShapedType::kDynamic &&
          out_col_dim != expected_out_col_dim)
        return op.emitOpError()
               << "found invalid output dimension on col, expected "
               << expected_out_col_dim << " but got " << out_col_dim;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework_test.go

    			t.Errorf("preFilter1 called %v, expected: 1", preFilter1.PreFilterCalled)
    		}
    		if preFilter2.PreFilterCalled != 1 {
    			t.Errorf("preFilter2 called %v, expected: 1", preFilter2.PreFilterCalled)
    		}
    		if preFilter2.AddCalled != 1 {
    			t.Errorf("AddPod called %v, expected: 1", preFilter2.AddCalled)
    		}
    		if preFilter2.RemoveCalled != 1 {
    			t.Errorf("AddPod called %v, expected: 1", preFilter2.RemoveCalled)
    		}
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        func.return %0, %1 : tensor<1x2x3xf32>, tensor<3xf32>
      }
    
      // CHECK-LABEL: func @reused_if_then_branch
      // CHECK-SAME: (%arg0: tensor<*xf32>) -> tensor<*xf32>
      // expected-warning @+1 {{expected control flow function @reused_if_then_branch to have exactly 1 use}}
      func.func @reused_if_then_branch(%arg0: tensor<*xf32>) -> tensor<*xf32> {
        // CHECK: return
        // CHECK-SAME: tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    	cases := []struct {
    		input    string
    		expected error
    	}{
    		{
    			input:    "foo",
    			expected: nil,
    		},
    		{
    			input:    "%HOSTNAME%",
    			expected: nil,
    		},
    		{
    			input:    "100%%",
    			expected: nil,
    		},
    		{
    			input:    "prefix %HOSTNAME% suffix",
    			expected: nil,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

               << "found invalid output dimension on row, expected "
               << expected_out_row_dim << " but got " << out_row_dim;
      if (expected_out_col_dim != ShapedType::kDynamic &&
          out_col_dim != ShapedType::kDynamic &&
          out_col_dim != expected_out_col_dim)
        return op.emitOpError()
               << "found invalid output dimension on col, expected "
               << expected_out_col_dim << " but got " << out_col_dim;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        self.assertTrue(self._contains_op(graphdef, 'XlaDotV2'))
    
        new_outputs = converted_model.signatures[signature_key](**model_inputs)
    
        # The difference between TF and XLA path is expected to be small (smaller
        # or equal to 1 in the quantized domain).
        self.assertAllClose(new_outputs, expected_outputs, atol=1e-1)
    
      @parameterized.parameters(
          testing.parameter_combinations([{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	if v != xs[3] {
    		t.Errorf("xs.Index(3) = %v; expected %v", v, xs[3])
    	}
    	xa := [8]byte{10, 20, 30, 40, 50, 60, 70, 80}
    	v = ValueOf(xa).Index(2).Interface().(byte)
    	if v != xa[2] {
    		t.Errorf("xa.Index(2) = %v; expected %v", v, xa[2])
    	}
    	s := "0123456789"
    	v = ValueOf(s).Index(3).Interface().(byte)
    	if v != s[3] {
    		t.Errorf("s.Index(3) = %v; expected %v", v, s[3])
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        cd "${CERT_DIR}"
        ./easyrsa init-pki
        # this puts the cert into pki/ca.crt and the key into pki/private/ca.key
        # PRIMARY_CN (expected to be) defined by caller
        # shellcheck disable=SC2153
        ./easyrsa --batch "--req-cn=${PRIMARY_CN}@$(date +%s)" build-ca nopass
        # SANS (expected to be) defined by caller
        # shellcheck disable=SC2153
        ./easyrsa --subject-alt-name="${SANS}" build-server-full "${MASTER_NAME}" nopass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

        const auto tensor_interface =
            tensorflow::down_cast<const tensorflow::TensorInterface*>(src->tensor);
    
        if (dst->dims() != 0) {
          return InvalidArgument(
              "Malformed TF_RESOURCE tensor: expected a scalar, got a tensor with "
              "shape ",
              dst->shape().DebugString());
        }
        *dst = tensorflow::Tensor(tensorflow::DT_RESOURCE, dst->shape());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top