Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 787 for alias2 (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

          py_function_lib_;
    
      // Path to the pre-calibrated SavedModel.
      std::string src_saved_model_path_;
    
      // Function alias mapping for pre-calibrated SavedModel. Used to preserve
      // aliased functions.
      absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases_;
    
      // Tags to identify the MetaGraphDef to load from a SavedModel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    // hashFor computes the hash of t.
    func (h Hasher) hashFor(t types.Type) uint32 {
    	// See Identical for rationale.
    	switch t := t.(type) {
    	case *types.Basic:
    		return uint32(t.Kind())
    
    	case *aliases.Alias:
    		return h.Hash(aliases.Unalias(t))
    
    	case *types.Array:
    		return 9043 + 2*uint32(t.Len()) + 3*h.Hash(t.Elem())
    
    	case *types.Slice:
    		return 9049 + 2*h.Hash(t.Elem())
    
    	case *types.Struct:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/builder_test.go

    			want:  []string{"single-policy-out.yaml"},
    		},
    		{
    			name:     "trust-domain-one-alias",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local"}),
    			input:    "simple-policy-td-aliases-in.yaml",
    			want:     []string{"simple-policy-td-aliases-out.yaml"},
    		},
    		{
    			name:     "trust-domain-multiple-aliases",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local", "some-td"}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    // are stored. This value will be fed to the "file_prefix" tensor to restore the
    // variables.
    // * `function_aliases` maps the actual function name to the function alias.
    // This associates the quantized functions to the original functions' aliases.
    // If there were no function aliases in the input model, this should be empty.
    // * `asset_file_defs` include information about the assets, if any, that are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/go/types/67143.md

    The methods [Alias.Origin], [Alias.SetTypeParams], [Alias.TypeParams],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:32:30 UTC 2024
    - 150 bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/public/BUILD

            ":signature_def_param_list",
            ":tensor_spec",
        ],
    )
    
    alias(
        name = "concrete_function",
        actual = "//tensorflow/c/experimental/saved_model/internal:concrete_function",
    )
    
    alias(
        name = "concrete_function_list",
        actual = "//tensorflow/c/experimental/saved_model/internal:concrete_function_list",
    )
    
    alias(
        name = "function_metadata",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

    def _save_function_alias(
        saved_model_dir: str,
        tags: Collection[str],
        function_aliases: Mapping[str, str],
    ) -> None:
      """Saves the function alias to the SavedModel.
    
      SavedModelBuilder (TF1 saved model saver) does not support saving function
      aliases, so this function loads the SavedModel proto and adds the
      `function_aliases` field.
    
      Args:
        saved_model_dir: Path to the saved model directory.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/poset.go

    				oldidx := uint32(pass.ID)
    				po.constants[val] = oldidx
    			}
    
    		case undoAliasNode:
    			ID, prev := pass.ID, pass.idx
    			cur := po.values[ID]
    			if prev == 0 {
    				// Born as an alias, die as an alias
    				delete(po.values, ID)
    			} else {
    				if cur == prev {
    					panic("invalid aliasnode undo pass")
    				}
    				// Give it back previous value
    				po.values[ID] = prev
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    	}
    	return end
    }
    
    func ZeroValue(f *ast.File, pkg *types.Package, typ types.Type) ast.Expr {
    	// TODO(adonovan): think about generics, and also generic aliases.
    	under := aliases.Unalias(typ)
    	// Don't call Underlying unconditionally: although it removes
    	// Named and Alias, it also removes TypeParam.
    	if n, ok := under.(*types.Named); ok {
    		under = n.Underlying()
    	}
    	switch under := under.(type) {
    	case *types.Basic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsGroovyDSLIntegrationTest.groovy

        versionCatalogs {
            libs {
                plugin('$alias', 'com.acme.greeter').version('1.5')
            }
        }
    }"""
            withPluginAlias "libs.plugins.${alias.replace('-', '.')}"
    
            when:
            plugin.allowAll()
            succeeds taskName
    
            then:
            outputContains message
    
            where:
            alias << ['greeter', 'some.greeter', 'some-greeter']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top