Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for alias2 (0.16 sec)

  1. pilot/pkg/model/push_context_test.go

    				{Name: "alias2", ExternalName: "concrete"},
    			},
    		},
    		{
    			name: "looping alias",
    			input: []service{
    				{Name: "alias1", ExternalName: "alias2"},
    				{Name: "alias2", ExternalName: "alias1"},
    			},
    			output: []service{
    				{Name: "alias1", ExternalName: "alias2"},
    				{Name: "alias2", ExternalName: "alias1"},
    			},
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    	}
    
    	// resolvedAliases builds a map of Alias -> Concrete, fully resolving through multiple hops.
    	// Ex: Alias1 -> Alias2 -> Concrete will flatten to Alias1 -> Concrete.
    	resolvedAliases := make(map[NamespacedHostname]host.Name, len(rawAlias))
    	for alias, referencedService := range rawAlias {
    		// referencedService may be another alias or a concrete service.
    		if _, f := unnamespacedRawAlias[referencedService]; !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. fastapi/param_functions.py

                allowed by the alias or set of aliases defined.
                """
            ),
        ] = None,
        serialization_alias: Annotated[
            Union[str, None],
            Doc(
                """
                'Blacklist' validation step. The vanilla parameter field will be the
                single one of the alias' or set of aliases' fields and all the other
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                inCatalog("libs")
                alias(reserved)
                reservedAliases "extensions", "convention"
            })
    
            and:
            verifyAll(receivedProblem) {
                fqid == 'dependency-version-catalog:reserved-alias-name'
                contextualLabel == "Problem: In version catalog libs, alias '$reserved' is not a valid alias."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    		// Auto port should support any protocol
    		{call: simulation.Call{Address: "1.2.3.4", Port: 81, Protocol: simulation.HTTP, HostHeader: "alias.default.svc.cluster.local"}, expected: "concrete"},
    		{call: simulation.Call{Address: "1.1.1.1", Port: 81, Protocol: simulation.HTTP, HostHeader: "alias.default.svc.cluster.local"}, expected: "alias"},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/httproute_test.go

    				"[2406:3003:2064:35b8:864:a648:4b96:e37d]",
    			},
    			enableDualStack: true,
    		},
    		{
    			name: "alias",
    			service: &model.Service{
    				Hostname:     "foo.local.campus.net",
    				MeshExternal: false,
    				Attributes:   model.ServiceAttributes{Aliases: []model.NamespacedHostname{{Hostname: "alias.local.campus.net", Namespace: "ns"}}},
    			},
    			port: 80,
    			node: &model.Proxy{
    				DNSDomain: "local.campus.net",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. src/math/big/int_test.go

    	a2.GCD(X, Y, a2, b2) // result is same as 1st argument
    	if a2.Cmp(d) != 0 {
    		t.Errorf("aliased z = a GCD(%s, %s, %s, %s): got d = %s, want %s", x, y, a, b, a2, d)
    	}
    	if x != nil && X.Cmp(x) != 0 {
    		t.Errorf("aliased z = a GCD(%s, %s, %s, %s): got x = %s, want %s", x, y, a, b, X, x)
    	}
    	if y != nil && Y.Cmp(y) != 0 {
    		t.Errorf("aliased z = a GCD(%s, %s, %s, %s): got y = %s, want %s", x, y, a, b, Y, y)
    	}
    
    	a2 = new(Int).Set(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  8. internal/s3select/select_test.go

    		{
    			name:  "Select reserved word column with table alias",
    			query: `select S3Object."CAST" from s3object`,
    			wantResult: `true
    false`,
    		},
    		{
    			name:  "Select reserved word column with unused table alias",
    			query: `select "CAST"  from s3object s`,
    			wantResult: `true
    false`,
    		},
    		{
    			name:  "Select reserved word column with table alias",
    			query: `select s."CAST"  from s3object s`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

        protected void createAlias(final String index, final String createdIndexName) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            // alias
            final String aliasConfigDirPath = getResourcePath(indexConfigPath, fessConfig.getFesenType(), "/" + index + "/alias");
            try {
                final File aliasConfigDir = ResourceUtil.getResourceAsFile(aliasConfigDirPath);
                if (aliasConfigDir.isDirectory()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. tensorflow/BUILD

    alias(
        name = "is_cuda_enabled",
        actual = if_oss(
            "@local_config_cuda//:is_cuda_enabled",
            "@local_config_cuda//cuda:using_clang",
        ),
    )
    
    # Config setting that is satisfied when CUDA device code should be compiled
    # with clang. It does not imply that CUDA support has been enabled.
    alias(
        name = "is_cuda_compiler_clang",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top