Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,088 for expectGet (0.19 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

        }
    
        static PomHttpArtifact expectParentPomRequest(MavenHttpRepository repo) {
            MavenHttpModule module = repo.module('util.util.parent', 'util-parent', '3')
            module.pom.expectGet()
            module.pom.sha1.expectGet()
            module.pom
        }
    
        MavenHttpRepository mavenHttpServer() {
            server.start()
            new MavenHttpRepository(server, '/maven', maven(file("maven_repo")))
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            module.rootMetaData.sha512.expectPut(credentials)
            module.rootMetaData.md5.expectPut(credentials)
            module.pom.expectPut(credentials)
            module.pom.sha1.expectPut(credentials)
            module.pom.sha256.expectPut(credentials)
            module.pom.sha512.expectPut(credentials)
            module.pom.md5.expectPut(credentials)
            module.moduleMetadata.expectPut(credentials)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. cni/test/testdata/expected/minikube_cni.conflist.expected

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 875 bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/base/tests/tensor_test.cc

      ASSERT_TRUE(status.ok()) << status.message();
    
      EXPECT_EQ(tensor.dims(), 1);
      EXPECT_EQ(tensor.dtype(), dtype);
      absl::Span<const typename TypeParam::type> tensor_view(
          reinterpret_cast<typename TypeParam::type*>(tensor.data()), value.size());
      EXPECT_EQ(tensor_view[0], 42);
      EXPECT_EQ(tensor_view[1], 100);
      EXPECT_EQ(tensor_view[2], 0);
      EXPECT_EQ(tensor_view[3], 1);
      EXPECT_EQ(tensor_view[4], 4);
      EXPECT_EQ(tensor_view[5], 29);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/utils/math_utils_test.cc

      EXPECT_EQ(quantized_fraction, 19661);
      EXPECT_EQ(shift, 1);
    
      EXPECT_TRUE(succeeded(QuantizeMultiplier(15.5, quantized_fraction, shift)));
      EXPECT_EQ(quantized_fraction, 31744);
      EXPECT_EQ(shift, 4);
    
      EXPECT_TRUE(succeeded(QuantizeMultiplier(1, quantized_fraction, shift)));
      EXPECT_EQ(quantized_fraction, 16384);
      EXPECT_EQ(shift, 1);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 05:58:41 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. security/pkg/server/ca/authenticate/oidc_test.go

    	tests := []struct {
    		name        string
    		expectRet   bool
    		audToCheck  []string
    		audExpected []string
    	}{
    		{
    			name:        "audience is in the expected set",
    			expectRet:   true,
    			audToCheck:  []string{"aud1"},
    			audExpected: []string{"aud1", "aud2"},
    		},
    		{
    			name:        "audience is NOT in the expected set",
    			expectRet:   false,
    			audToCheck:  []string{"aud3"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

      EXPECT_EQ(computation_device_0.replica_device_ids(0), 0);
      EXPECT_EQ(computation_device_0.replica_device_ids(1), 4);
      EXPECT_EQ(computation_device_0.replica_device_ids(2), 2);
      EXPECT_EQ(computation_device_0.replica_device_ids(3), 6);
      EXPECT_EQ(computation_device_1.replica_device_ids(0), 1);
      EXPECT_EQ(computation_device_1.replica_device_ids(1), 5);
      EXPECT_EQ(computation_device_1.replica_device_ids(2), 3);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters_test.cc

      // Expect 2 bins: [0, 2), [2, 4].
      EXPECT_EQ(num_bins, 2);
    }
    
    TEST(CalibrationParametersTest, CalculateNumBinsNotDivisible) {
      int32_t num_bins = CalculateActualNumBins(
          /*min_value=*/0.0, /*max_value=*/5.0, /*bin_width=*/2.0);
    
      // Expect 3 bins: [0, 2), [2, 4), [4, 6].
      EXPECT_EQ(num_bins, 3);
    }
    
    TEST(CalibrationParametersTest, CalculateBinIndex) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpArtifact.groovy

            expectPut(credentials)
            if (server.supportsHash(HttpServer.SupportedHash.SHA1)) {
                sha1.expectPut(credentials)
            }
            if (extraChecksums) {
                if (server.supportsHash(HttpServer.SupportedHash.SHA256)) {
                    sha256.expectPut(credentials)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

                                absl::OkStatus());
      EXPECT_EQ(
          function_optimization_pass_.Run(
              "test_func", device_set_, config_proto_, function_options_, &graph_,
              flib_.get(), &control_ret_node_names_, &control_rets_updated_),
          absl::OkStatus());
    
      EXPECT_EQ(mlir_function_pass_graph_conversion_count_.Read(kOk), 0);
      EXPECT_EQ(mlir_function_pass_graph_conversion_count_.Read(kInvalidArgument),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top