Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 787 for alias2 (0.14 sec)

  1. pilot/pkg/networking/core/route/route_cache.go

    			Kind:      kind.ServiceEntry,
    			Name:      string(svc.Hostname),
    			Namespace: svc.Attributes.Namespace,
    		}.HashCode())
    		for _, alias := range svc.Attributes.Aliases {
    			configs = append(configs, model.ConfigKey{Kind: kind.ServiceEntry, Name: alias.Hostname.String(), Namespace: alias.Namespace}.HashCode())
    		}
    	}
    	for _, vs := range r.VirtualServices {
    		for _, cfg := range model.VirtualServiceDependencies(vs) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

      // to the "file_prefix" tensor to identify the checkpoint directory.
      string checkpoint_dir = 5;
    
      // Function name -> function alias mapping. This associates the quantized
      // functions to the original functions' aliases. This information will be used
      // to populate `MetaInfoDef`s `function_aliases` when the quantized model is
      // exported to the saved model. This field is usually only populated for the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    					// naked: only test app without sidecar, send requests from trust domain aliases
    					// client: app with sidecar, send request from cluster.local
    					// server: app with sidecar, verify requests from cluster.local or trust domain aliases
    					client := match.Cluster(cluster).FirstOrFail(t, client)
    					naked := match.Cluster(cluster).FirstOrFail(t, apps.Naked)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen.cc

                           op_info.output_names[i], ";\n");
      }
    
      strings::StrAppend(&class_decl, "};\n");
      if (!op_info.aliases.empty()) {
        for (const auto& alias : op_info.aliases) {
          strings::StrAppend(&class_decl, "typedef ", op_info.op_name, " ", alias,
                             ";\n");
        }
      }
      strings::StrAppend(&class_decl, "\n");
      TF_CHECK_OK(h->Append(class_decl));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typestring.go

    				pkgAnnotate = true
    				w.pkgInfo = false // only tag once
    			}
    
    			// This doesn't do the right thing for embedded type
    			// aliases where we should print the alias name, not
    			// the aliased type (see go.dev/issue/44410).
    			if !f.embedded {
    				w.string(f.name)
    				w.byte(' ')
    			}
    			w.typ(f.typ)
    			if pkgAnnotate {
    				w.string(" /* package ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. ci/official/utilities/setup_macos.sh

    if [[ -n "$(which grealpath)" ]] &&  [[ -n "$(which gstat)" ]]; then
      alias realpath=grealpath
      alias stat=gstat
      # By default, aliases are only expanded in interactive shells, which means
      # that they are not substituted for their corresponding commands in shell
      # scripts. By setting "expand_aliases", we enable alias expansion in
      # non-interactive shells as well.
      shopt -s expand_aliases
    else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/crypto/aes/aes_gcm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (amd64 || arm64) && !purego
    
    package aes
    
    import (
    	"crypto/cipher"
    	"crypto/internal/alias"
    	"crypto/subtle"
    	"errors"
    )
    
    // The following functions are defined in gcm_*.s.
    
    //go:noescape
    func gcmAesInit(productTable *[256]byte, ks []uint32)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/unexpected-alias-key-2.toml

    Louis Jacomet <******@****.***> 1672066652 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 75 bytes
    - Viewed (0)
  9. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/unexpected-alias-key-3.toml

    Louis Jacomet <******@****.***> 1672066652 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 106 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // nil, it will be allocated as necessary.
    func find(obj types.Object, T types.Type, path []byte, seen map[*types.TypeName]bool) []byte {
    	switch T := T.(type) {
    	case *aliases.Alias:
    		return find(obj, aliases.Unalias(T), path, seen)
    	case *types.Basic, *types.Named:
    		// Named types belonging to pkg were handled already,
    		// so T must belong to another package. No path.
    		return nil
    	case *types.Pointer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top