Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,065 for expectGet (0.4 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

                }
            """
    
            when:
            module.pom.expectGet()
            module.getArtifact(type: 'pom.asc').expectGet()
            module.getArtifact(classifier: 'sources').expectHead()
            module.getArtifact(classifier: 'sources').expectGet()
            module.getArtifact(classifier: 'sources', type: 'jar.asc').expectGet()
            module.getArtifact(classifier: 'javadoc').expectHead()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

                            return
                        }
                    }
                    if (expectedContentLength > -1) {
                        if (request.contentLength != expectedContentLength) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                    """
                    apply {
                        from("${server.uri}/script.gradle")
                    }
                    """
                )
    
                server.expectGet("/script.gradle", scriptFile)
    
                assertThat(
                    build("-q", "hello").output,
                    containsString("Hello!")
                )
    
                server.stop()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/c/kernels_test.cc

        TF_SetStatus(status, TF_OK, "");
        EXPECT_EQ(false, TF_IsHostMemoryInput(ctx, 0, status));
        EXPECT_EQ(TF_OK, TF_GetCode(status));
    
        TF_SetStatus(status, TF_OK, "");
        EXPECT_EQ(true, TF_IsHostMemoryInput(ctx, 1, status));
        EXPECT_EQ(TF_OK, TF_GetCode(status));
    
        TF_SetStatus(status, TF_OK, "");
        EXPECT_EQ(true, TF_IsHostMemoryOutput(ctx, 0, status));
        EXPECT_EQ(TF_OK, TF_GetCode(status));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top