Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for iType (0.05 sec)

  1. istioctl/pkg/writer/envoy/configdump/listener.go

    		}
    		iAddr := retrieveListenerAddress(listeners[i])
    		jAddr := retrieveListenerAddress(listeners[j])
    		if iAddr != jAddr {
    			return iAddr < jAddr
    		}
    		iType := retrieveListenerType(listeners[i])
    		jType := retrieveListenerType(listeners[j])
    		return iType < jType
    	})
    
    	fmt.Fprintln(w, "LISTENER\tCHAIN\tMATCH\tDESTINATION")
    	for _, l := range listeners {
    		chains := getFilterChains(l)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

        mlir::RankedTensorType shaped_type, const std::vector<uint8_t>& buffer,
        bool truncate) {
      mlir::Type elem_type = shaped_type.getElementType();
      unsigned bit_width;
      if (auto itype = mlir::dyn_cast<mlir::IntegerType>(elem_type)) {
        bit_width = itype.getWidth();
      } else if (auto qtype =
                     mlir::dyn_cast<mlir::quant::QuantizedType>(elem_type)) {
        bit_width = qtype.getStorageTypeIntegralWidth();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/runtime/iface.go

    		i := &inter.Methods[k]
    		itype := toRType(&inter.Type).typeOff(i.Typ)
    		name := toRType(&inter.Type).nameOff(i.Name)
    		iname := name.Name()
    		ipkg := pkgPath(name)
    		if ipkg == "" {
    			ipkg = inter.PkgPath.Name()
    		}
    		for ; j < nt; j++ {
    			t := &xmhdr[j]
    			rtyp := toRType(typ)
    			tname := rtyp.nameOff(t.Name)
    			if rtyp.typeOff(t.Mtyp) == itype && tname.Name() == iname {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. src/runtime/runtime-gdb.py

    #rsc: "to find the number of entries in the itab's Fn field look at
    # itab.inter->numMethods
    # i am sure i have the names wrong but look at the interface type
    # and its method count"
    # so Itype will start with a commontype which has kind = interface
    
    #
    # Register all convenience functions and CLI commands
    #
    GoLenFunc()
    GoCapFunc()
    DTypeFunc()
    GoroutinesCmd()
    GoroutineCmd()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top