Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for expectGet (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return op.emitOpError()
               << "Expected output feature dimension size (value "
               << kernel_output_features
               << ") to be a multiple of batch group count " << batch_group_count;
      }
      if (input_features % feature_group_count_val != 0 ||
          input_features / feature_group_count_val != kernel_input_features) {
        return op.emitOpError()
               << "Expected the size of kernel_input_features (value "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String CONSTRAINTS_DecimalMin_MESSAGE = "{constraints.DecimalMin.message}";
    
        /** The key of the message: {item} is numeric value out of bounds (&lt;{integer} digits&gt;.&lt;{fraction} digits&gt; expected). */
        public static final String CONSTRAINTS_Digits_MESSAGE = "{constraints.Digits.message}";
    
        /** The key of the message: {item} must be in the future. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     prefer more specific types, avoiding {@code Throwable.class} in particular.
       * @param fallback the function to be called if this step fails with the expected exception type.
       *     The function's argument is this step's exception. "This step's exception" means the cause
       *     of the {@link ExecutionException} thrown by {@link Future#get()} on the {@link Future}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     prefer more specific types, avoiding {@code Throwable.class} in particular.
       * @param fallback the function to be called if this step fails with the expected exception type.
       *     The function's argument is this step's exception. "This step's exception" means the cause
       *     of the {@link ExecutionException} thrown by {@link Future#get()} on the {@link Future}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top