Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 163 for root1 (0.14 sec)

  1. pilot/pkg/model/virtualservice_test.go

    			*m = map[string]string{"test": "fuzz"}
    		})
    
    	root := &networking.HTTPMatchRequest{}
    	f.Fuzz(root)
    	root.SourceNamespace = ""
    	root.SourceLabels = nil
    	root.Gateways = nil
    	root.IgnoreUriCase = false
    	delegate := &networking.HTTPMatchRequest{}
    	merged := mergeHTTPMatchRequest(root, delegate)
    
    	assert.Equal(t, merged, root)
    }
    
    var gatewayNameTests = []struct {
    	gateway   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            then:
            assertTransformed("root.blue", "root.additional.blue", "a.additional.blue", "a.jar")
            outputContains("files = [root.additional.blue.green, root.blue.green, a.jar.green, a.additional.blue.green]")
            outputContains("artifacts = [root.additional.blue.green (root.additional.blue), root.blue.green (root.blue), a.jar.green (project :a), a.additional.blue.green (a.additional.blue)]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        # Expect both quantized model to produce the same results.
        root = load.load(self._output_saved_model_path)
        self.assertCountEqual(root.signatures.keys(), {'serving_default'})
        new_outputs_1 = root.signatures['serving_default'](
            x=ops.convert_to_tensor(input_data)
        )
    
        root = load.load(output_saved_model_path_2)
        self.assertCountEqual(root.signatures.keys(), {'serving_default'})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            then:
            failure.assertHasDescription("A problem occurred evaluating root project 'root'.")
            failure.assertHasCause("Must specify version for target of dependency substitution")
        }
    
        void "reasonable error message when attempting to create an invalid selector"() {
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                version = 1.0
    
                $common
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  5. tests/test_generate_unique_id_function.py

        assert data == {
            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "paths": {
                "/": {
                    "post": {
                        "summary": "Post Root",
                        "operationId": "foo_post_root",
                        "requestBody": {
                            "content": {
                                "application/json": {
                                    "schema": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            """
    
            when:
            lib.pom.expectGet()
            lib.artifact.expectGet()
    
            then:
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org.gradle.test:lib:1.0')
                }
            }
            outputContains("Duplicate alias builder registered for my.great.lib")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                module('json') alignsTo('1.1') byVirtualPlatform()
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org:xml:1.0", "org:xml:1.1") {
                        byConstraint("belongs to platform org:platform:1.1")
                        byConflictResolution("between versions 1.1 and 1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_tls_test.go

    		CaCertificates:    "root-cert.pem",
    		ClientCertificate: "cert-chain.pem",
    		PrivateKey:        "key.pem",
    		SubjectAltNames:   []string{"custom.foo.com"},
    		Sni:               "custom.foo.com",
    	}
    	simpleTLSSettingsWithCerts := &networking.ClientTLSSettings{
    		Mode:            networking.ClientTLSSettings_SIMPLE,
    		CaCertificates:  "root-cert.pem",
    		SubjectAltNames: []string{"custom.foo.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier_test.go

    			},
    			want: MergedPeerAuthentication{
    				Mode: model.MTLSPermissive,
    			},
    		},
    		{
    			name: "ignore non-emptypb selector in root namespace",
    			configs: []*config.Config{
    				{
    					Meta: config.Meta{
    						Name:      "default",
    						Namespace: "root-namespace",
    					},
    					Spec: &v1beta1.PeerAuthentication{
    						Selector: &type_beta.WorkloadSelector{
    							MatchLabels: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

            repositoryInteractions {
                'org:test:1.0' {
                    expectResolve()
                }
            }
            succeeds 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org:test:1.0')
                }
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top