Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,888 for expectGet (0.15 sec)

  1. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformEcosystemIntegrationTest.groovy

                    runtimeClasspath platform("org:foo:1.0")
                }
            """
            def resolve = new ResolveTestFixture(buildFile)
            resolve.prepare()
    
            when:
            mod.pom.expectGet()
            succeeds ":checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", "org.gradle.bugs:test:1.9") {
                    module("org:foo:1.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

            TestFile script = testFile('external.gradle')
            server.expectUserAgent(UserAgentMatcher.matchesNameAndVersion("Gradle", GradleVersion.current().getVersion()))
            server.expectGet('/external.gradle', script)
            server.start()
    
            script << """
                task doStuff
                assert buildscript.sourceFile == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyHttpRepoResolveIntegrationTest.groovy

            failureHasCause('Read timed out')
    
            when:
            server.resetExpectations()
            module1.ivy.expectGetMissing()
            module2.ivy.expectGet()
            module2.jar.expectDownload()
    
            then:
            succeeds('checkDeps')
            resolve.expectGraph {
                root(":", ":test:") {
                    module("group:projectA:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaRetriesIntegTest.groovy

            module.artifact.expectPut()
            module.ivy.expectPut()
            module.ivy.sha1.expectPut()
            module.ivy.sha256.expectPut()
            module.ivy.sha512.expectPut()
            module.artifact.sha1.expectPut()
            module.artifact.sha256.expectPut()
            module.artifact.sha512.expectPut()
            module.moduleMetadata.expectPut()
            module.moduleMetadata.sha1.expectPut()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top