Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for isAlias (0.14 sec)

  1. src/go/types/unify.go

    	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:
    		// Two array types unify if they have the same array length
    		// and their element types unify.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/util.h

    std::set<std::string> GetMapKeys(
        const ::google::protobuf::Map<std::string, ::tensorflow::TensorProto>& map);
    
    // Get the default input value from signature if it's missing in the request
    // inputs. If `is_alias` is set to true, the keys of the `request_inputs` are
    // alias names rather than the feed names in the graph.
    Status GetInputValues(
        const SignatureDef& signature,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 31 23:00:51 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_traits.h

    // The base class that all the quantization related OpTrait implements.
    template <typename ConcreteType, template <typename> class TraitType>
    struct QuantizationSpecTraitBase : public TraitBase<ConcreteType, TraitType> {
      static bool IsBias(int index) { return false; }
      static bool IsQuantizable() { return true; }
    };
    
    // This class provides the API for ops that has a fixed output value range.
    // This is used as a trait like this:
    //
    //   class SoftmaxOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Tuple).Underlying", Method, 5},
    		{"(*TypeList).At", Method, 18},
    		{"(*TypeList).Len", Method, 18},
    		{"(*TypeName).Exported", Method, 5},
    		{"(*TypeName).Id", Method, 5},
    		{"(*TypeName).IsAlias", Method, 9},
    		{"(*TypeName).Name", Method, 5},
    		{"(*TypeName).Parent", Method, 5},
    		{"(*TypeName).Pkg", Method, 5},
    		{"(*TypeName).Pos", Method, 5},
    		{"(*TypeName).String", Method, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      # route, the packet will be routed to the pod subnetwork, and not leave the
      # VM.
      $mgmt_net_adapter = Get_MgmtNetAdapter
      New-NetRoute `
          -ErrorAction Ignore `
          -InterfaceAlias ${mgmt_net_adapter}.ifAlias `
          -DestinationPrefix ${env:POD_CIDR} `
          -NextHop "0.0.0.0" `
          -Verbose
    
      if ($created_hns_network) {
        # There is an HNS bug where the route to the GCE metadata server will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top