Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for aliasRef (0.43 sec)

  1. cluster/gce/util.sh

      local zone="${2}"
      local ip="${3}"
    
      local aliases
      aliases=$(gcloud compute instances describe "${name}" --project "${PROJECT}" --zone "${zone}" --flatten='networkInterfaces[0].aliasIpRanges[]' --format='value[separator=':'](networkInterfaces[0].aliasIpRanges.subnetworkRangeName,networkInterfaces[0].aliasIpRanges.ipCidrRange)' | sed 's/^://' | paste -s -d';' -)
      aliases="${aliases:+${aliases};}${ip}/32"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    	ctx := &tls.CommonTlsContext{}
    	security.ApplyToCommonTLSContext(ctx, proxy, nil, "", nil, true)
    	aliases := authn.TrustDomainsForValidation(push.Mesh)
    	validationCtx := ctx.GetCombinedValidationContext().DefaultValidationContext
    	if len(aliases) > 0 {
    		matchers := util.StringToPrefixMatch(security.AppendURIPrefixToTrustDomain(aliases))
    		for _, matcher := range matchers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. 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".
    //
    // In some cases, we do not know the IP address of a Workload. For instance, we may simply know
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. configure.py

      # version.
      meta = open(os.path.join(android_ndk_home_path, 'meta/platforms.json'))
      platforms = json.load(meta)
      meta.close()
      aliases = platforms['aliases']
      api_levels = sorted(list(set([aliases[i] for i in aliases])))
    
      android_ndk_api_level = prompt_loop_or_load_from_env(
          environ_cp,
          var_name='ANDROID_NDK_API_LEVEL',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. pilot/pkg/features/pilot.go

    	EnableExternalNameAlias = env.Register("ENABLE_EXTERNAL_NAME_ALIAS", true,
    		"If enabled, ExternalName Services will be treated as simple aliases: anywhere where we would match the concrete service, "+
    			"we also match the ExternalName. In general, this mirrors Kubernetes behavior more closely. However, it means that policies (routes and DestinationRule) "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    	ErrorURL string
    
    	// If EnableAlias is set, alias declarations produce an Alias type. Otherwise
    	// the alias information is only in the type name, which points directly to
    	// the actual (aliased) type.
    	//
    	// This setting must not differ among concurrent type-checking operations,
    	// since it affects the behavior of Universe.Lookup("any").
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // resource op lifting.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateDecomposeResourceOpsInClusterPass();
    
    // Creates a pass that marks TPU cluster input-output pairs reading and writing
    // to same resource variable as aliases.
    std::unique_ptr<OperationPass<ModuleOp>> CreateMarkInputOutputAliasesPass();
    
    // Creates a pass that lifts operations on external resource variables from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def MarkInputOutputAliasesPass : Pass<"tf-device-mark-input-output-aliases", "ModuleOp"> {
      let summary = "Marks device cluster inputs-output pairs that read/write to the same variable as aliases";
    
      let description = [{
        This pass analyzes the inputs and outputs to device cluster and marks those
        input-output pairs as aliases (using `tf.aliasing_output` attribute) which read
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	alias := func(pkg, fn, pkg2, fn2 string, archs ...*sys.Arch) {
    		aliased := false
    		for _, a := range archs {
    			if b, ok := intrinsics[intrinsicKey{a, pkg2, fn2}]; ok {
    				intrinsics[intrinsicKey{a, pkg, fn}] = b
    				aliased = true
    			}
    		}
    		if !aliased {
    			panic(fmt.Sprintf("attempted to alias undefined intrinsic: %s.%s", pkg, fn))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. src/go/types/unify.go

    	xorig, x := x, Unalias(x)
    	yorig, y := y, Unalias(y)
    
    	switch x := x.(type) {
    	case *Basic:
    		// Basic types are singletons except for the rune and byte
    		// aliases, thus we cannot solely rely on the x == y check
    		// above. See also comment in TypeName.IsAlias.
    		if y, ok := y.(*Basic); ok {
    			return x.kind == y.kind
    		}
    
    	case *Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top