Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 787 for alias2 (0.11 sec)

  1. pkg/workloadapi/workload.proto

    // In addition, to support lookup by IP address, they will have *alias* names for each IP the resource represents.
    // There may be multiple aliases for the same resource (examples: service in multiple networks, or a dual-stack workload).
    // Aliases are keyed by network/IP address. Example: "default/1.2.3.4".
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/plugin/authn/util_test.go

    			meshConfig: &meshconfig.MeshConfig{
    				TrustDomain: "cluster.local",
    				TrustDomainAliases: []string{
    					"alias-1.domain", "alias-1.domain", "some-other-alias-1.domain", "alias-2.domain", "alias-2.domain",
    				},
    			},
    			want: []string{"cluster.local", "alias-1.domain", "some-other-alias-1.domain", "alias-2.domain"},
    		},
    		{
    			name: "Mixed duplicated trust domains in mesh config",
    			meshConfig: &meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/internal/unsafeheader/unsafeheader_test.go

    		var alias []byte
    		hdr := (*unsafeheader.Slice)(unsafe.Pointer(&alias))
    		hdr.Data = unsafe.Pointer(&s[0])
    		hdr.Cap = cap(s)
    		hdr.Len = len(s)
    
    		if !bytes.Equal(alias, s) {
    			t.Errorf("alias of %T(%q) constructed via Slice = %T(%q)", s, s, alias, alias)
    		}
    		if cap(alias) != cap(s) {
    			t.Errorf("alias of %T with cap %d has cap %d", s, cap(s), cap(alias))
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistry.java

            LibraryEntry l = new LibraryEntry();
            if (RESERVED_LIBRARY_PREFIX.matcher(alias).find()) {
                alias = "my" + alias;
            }
            l.alias = findFreeAlias(libraries.keySet(), alias);
            l.module = module;
            l.version = versionEntry.version;
            l.versionRef = versionEntry.alias;
            libraries.put(l.alias, l);
            return l;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/FakeKeyStore.java

            return keys.containsKey(alias) || certChains.containsKey(alias);
        }
    
        @Override
        public int engineSize() {
            return keys.size() + certChains.size();
        }
    
        @Override
        public boolean engineIsKeyEntry(String alias) {
            return keys.containsKey(alias);
        }
    
        @Override
        public boolean engineIsCertificateEntry(String alias) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/cc_op_gen_util.cc

                               "\n");
          }
        }
      }
    
      if (!aliases.empty()) {
        strings::StrAppend(&comment, "\nAliases:\n");
        for (const auto& alias : aliases) {
          strings::StrAppend(&comment, "* ", alias, "\n");
        }
      }
      comment = MakeComment(comment, "");
    }
    
    string OpInfo::GetOpAttrStruct() const {
      string struct_fields;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/a.out.go

    	AVUPLF
    	AVMSLG
    	AVMSLEG
    	AVMSLOG
    	AVMSLEOG
    
    	ANOPH // NOP
    
    	// binary
    	ABYTE
    	AWORD
    	ADWORD
    
    	// Breakpoint
    	ABRRK
    
    	// end marker
    	ALAST
    
    	// aliases
    	ABR = obj.AJMP
    	ABL = obj.ACALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/VersionCatalogView.java

            String normalizedAlias = normalize(alias);
            if (config.hasDependency(normalizedAlias)) {
                return Optional.of(dependencyFactory.create(normalizedAlias));
            }
            return Optional.empty();
        }
    
        @Override
        public final Optional<Provider<ExternalModuleDependencyBundle>> findBundle(String alias) {
            String normalizedBundle = normalize(alias);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/internal/types/testdata/spec/typeAliases1.23b.go

    // A generic type alias may be used like any other generic type.
    type A[P any] = RHS[P, int]
    
    func _(a A[string]) {
    	a.p = "foo"
    	a.q = 42
    }
    
    // A generic alias may refer to another generic alias.
    type B[P any] = A[P]
    
    func _(a B[string]) {
    	a.p = "foo"
    	a.q = 42
    	// error messages print the instantiated alias type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/internal/reflectlite/all_test.go

    		t.Errorf("Talias1 print:\nhave: %s\nwant: %s", out, want)
    	}
    
    	t2 := Talias2{Tint: 1, Tint2: 2}
    	out = fmt.Sprintf("%#v", t2)
    	want = "reflectlite_test.Talias2{Tint:1, Tint2:2}"
    	if out != want {
    		t.Errorf("Talias2 print:\nhave: %s\nwant: %s", out, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
Back to top