Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,691 for expectGet (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_test.cc

      std::optional<CalibrationStatistics> statistics = collector.GetStatistics();
    
      EXPECT_TRUE(statistics.has_value());
      EXPECT_EQ(statistics.value().average_min_max_statistics().min_sum(), -4.0f);
      EXPECT_EQ(statistics.value().average_min_max_statistics().max_sum(), 15.0f);
      EXPECT_EQ(statistics.value().average_min_max_statistics().num_samples(), 2);
    }
    
    TEST(CalibrationStatisticsCollectorTest, ClearDataAndGetResultsMinMax) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

                }
            """
    
            and:
            module.jar.expectPut()
            module.jar.sha1.expectPut()
            module.jar.sha256.expectPut()
            module.jar.sha512.expectPut()
            module.ivy.expectPut()
            module.ivy.sha1.expectPut()
            module.ivy.sha256.expectPut()
            module.ivy.sha512.expectPut()
    
            when:
            run 'publish'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/lstm_utils_test.cc

      // verify transpose
      EXPECT_EQ(
          fused_lstm_func_->getAttrOfType<StringAttr>(kTFImplements).getValue(),
          convert.GetCompositeOpName());
      EXPECT_EQ(fused_lstm_func_.getNumArguments(), 5);
      EXPECT_EQ(fused_lstm_func_.getFunctionType().getNumResults(), 1);
    
      auto transpose_op = fused_lstm_func_.getBody().front().begin();
      transpose_op++;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      EXPECT_EQ(0, TF_ShapeDims(shape_a));
    
      const TF_SignatureDefParam* param_b = TF_SignatureDefParamListGet(args, 1);
      const TF_TensorSpec* tensor_spec_b = TF_SignatureDefParamTensorSpec(param_b);
      const TF_Shape* shape_b = TF_TensorSpecShape(tensor_spec_b);
    
      // Input "b" is a scalar, float32 tensor
      EXPECT_EQ("b", std::string(TF_SignatureDefParamName(param_b)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

      { CU_assertImplementation(((actual) == (expected)), __LINE__, ("CU_ASSERT_EQUAL_FATAL(" #actual "," #expected ")"), __FILE__, "", CU_TRUE); }
    
    /** Asserts that actual != expected.
     *  Reports failure with no other action.
     */
    #define CU_ASSERT_NOT_EQUAL(actual, expected) \
      { CU_assertImplementation(((actual) != (expected)), __LINE__, ("CU_ASSERT_NOT_EQUAL(" #actual "," #expected ")"), __FILE__, "", CU_FALSE); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/resolve/scenarios/VersionRangeResolveTestScenarios.groovy

            versions: [EMPTY, FIXED_12],
            expected: "12"
        ).and(
            versions: [EMPTY, PREFER_12],
            expected: "12"
        ).and(
            versions: [EMPTY, RANGE_10_12],
            expected: "12"
        ).and(
            versions: [EMPTY, EMPTY],
            expected: ""
        ).and(
            versions: [EMPTY, EMPTY, FIXED_12],
            expected: "12"
        )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/grappler/grappler_test.cc

      int num_values = 0;
      TF_Status* status = TF_NewStatus();
      TF_GetNodesToPreserveListSize(c_item, &num_values, &storage_size, status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      EXPECT_EQ(nodes_preserved.size(), num_values);
      EXPECT_EQ(list_total_size, storage_size);
    
      std::unique_ptr<char*[]> values(new char*[nodes_preserved.size()]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

      // expected-remark@below {{Result #0, ID 8 : Unknown}}
      // expected-remark@below {{Result #1, ID 9 : 1, 8, 9, 10, 12, 13}}
      // expected-remark@below {{Result #2, ID 10 : 1, 8, 9, 10, 12, 13}}
      // expected-remark@below {{Region #0, Arg #0, ID 2 : 1, 2, 8}}
      // expected-remark@below {{Region #0, Arg #1, ID 3 : 1, 3, 8}}
      // expected-remark@below {{Region #0, Arg #2, ID 4 : 1, 4, 8}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  9. pkg/kubelet/types/pod_update_test.go

    			}
    			assert.Equal(t, test.expected, source)
    		})
    	}
    }
    
    func TestString(t *testing.T) {
    	tests := []struct {
    		sp       SyncPodType
    		expected string
    	}{
    		{
    			sp:       SyncPodCreate,
    			expected: "create",
    		},
    		{
    			sp:       SyncPodUpdate,
    			expected: "update",
    		},
    		{
    			sp:       SyncPodSync,
    			expected: "sync",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 21 08:20:50 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtlmContext.java

                    throw new CIFSException("Failed to decrypt MIC", e);
                }
            }
    
            int expectSeq = this.verifySequence.getAndIncrement();
            if ( expectSeq != seq ) {
                throw new CIFSException(String.format("Invalid MIC sequence, expect %d have %d", expectSeq, seq));
            }
    
            byte[] verify = new byte[8];
            System.arraycopy(mic, 4, verify, 0, 8);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
Back to top