Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for io16 (0.07 sec)

  1. src/runtime/map_test.go

    type structKey struct {
    }
    
    func (structKey) String() string {
    	return "structKey"
    }
    
    func TestEmptyMapWithInterfaceKey(t *testing.T) {
    	var (
    		b    bool
    		i    int
    		i8   int8
    		i16  int16
    		i32  int32
    		i64  int64
    		ui   uint
    		ui8  uint8
    		ui16 uint16
    		ui32 uint32
    		ui64 uint64
    		uipt uintptr
    		f32  float32
    		f64  float64
    		c64  complex64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip.go

    	// address, _ := netip.AddrFromSlice(net.ParseIPSloppy(192.168.0.1)) returns
    	// an address like ::ffff:192.168.0.1/32
    	bytes := ip.To4()
    	if bytes == nil {
    		bytes = ip.To16()
    	}
    	// AddrFromSlice returns Addr{}, false if the input is invalid.
    	address, _ := netip.AddrFromSlice(bytes)
    	return address
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/runtime/debuglog.go

    //go:nosplit
    func (l *dlogger) i(x int) *dlogger {
    	return l.i64(int64(x))
    }
    
    //go:nosplit
    func (l *dlogger) i8(x int8) *dlogger {
    	return l.i64(int64(x))
    }
    
    //go:nosplit
    func (l *dlogger) i16(x int16) *dlogger {
    	return l.i64(int64(x))
    }
    
    //go:nosplit
    func (l *dlogger) i32(x int32) *dlogger {
    	return l.i64(int64(x))
    }
    
    //go:nosplit
    func (l *dlogger) i64(x int64) *dlogger {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        200- : Python related translator internal types
      """
      TENSOR = 1
      TENSOR_LIST = 2
      ATTR = 3
      NONE = 4
      SHAPE = 5  # shape -> !shape.shape
      I1 = 21
      I8 = 22
      I16 = 23
      I32 = 24
      I64 = 25
      F32 = 26
      INDEX = 27
      AG_UNDEFINED_VAL = 100
      AG_BUILTIN_FUNC = 101
      TF_RAW_OP = 102
      TF_REGION = 103
      TF_TENSOR_SHAPE_FUNC = 104  # shape.as_list
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    	'b': "bool",
    	'c': "char",
    	'd': "f64",
    	'e': "str",
    	'f': "f32",
    	'h': "u8",
    	'i': "isize",
    	'j': "usize",
    	'l': "i32",
    	'm': "u32",
    	'n': "i128",
    	'o': "u128",
    	'p': "_",
    	's': "i16",
    	't': "u16",
    	'u': "()",
    	'v': "...",
    	'x': "i64",
    	'y': "u64",
    	'z': "!",
    }
    
    // basicType parses:
    //
    //	<basic-type>
    func (rst *rustState) basicType() {
    	if len(rst.str) < 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    def TF_Bool : AnyTypeOf<[I<1>, TF_BoolRef], "bool">;
    
    def TF_Int4 : AnyTypeOf<[SI<4>, TF_Int4Ref], "4-bit integer">;
    def TF_Int8 : AnyTypeOf<[I8, TF_Int8Ref], "8-bit integer">;
    def TF_Int16 : AnyTypeOf<[I16, TF_Int16Ref], "16-bit integer">;
    def TF_Int32 : AnyTypeOf<[I32, TF_Int32Ref], "32-bit integer">;
    def TF_Int64 : AnyTypeOf<[I64, TF_Int64Ref], "64-bit integer">;
    def TF_I32OrI64 : AnyTypeOf<[I32, I64, TF_Int32Ref, TF_Int64Ref],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status.go

    	)
    	return setters
    }
    
    // Validate given node IP belongs to the current host
    func validateNodeIP(nodeIP net.IP) error {
    	// Honor IP limitations set in setNodeStatus()
    	if nodeIP.To4() == nil && nodeIP.To16() == nil {
    		return fmt.Errorf("nodeIP must be a valid IP address")
    	}
    	if nodeIP.IsLoopback() {
    		return fmt.Errorf("nodeIP can't be loopback address")
    	}
    	if nodeIP.IsMulticast() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

          CHECK:        %[[rescale:.*]] = tfr.quant_rescale(%[[Sub]], %[[factor1]], %{{.*}}) : (!tfr.tensor, !tfr.tensor, i64) -> (!tfr.tensor)
          CHECK:        %[[attr:.*]] = tfr.constant i16 -> !tfr.attr
          CHECK:        %[[Cast:.*]] = tfr.call @tf__cast(%[[rescale]], %[[attr]], %{{.*}}) : (!tfr.tensor, !tfr.attr, i1) -> (!tfr.tensor)
          CHECK:        %[[attr_1:.*]] = tfr.constant i8 -> !tfr.attr
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/status/server.go

    	} else {
    		// if not ipv6-only, it can be ipv4-only or dual-stack
    		// let InstanceIP decide the localhost
    		netIP := net.ParseIP(config.PodIP)
    		if netIP.To4() == nil && netIP.To16() != nil && !netIP.IsLinkLocalUnicast() {
    			localhost = localHostIPv6
    			upstreamLocalAddress = UpstreamLocalAddressIPv6
    		}
    	}
    	probes := make([]ready.Prober, 0)
    	if !config.NoEnvoy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  10. src/net/lookup.go

    	if host == "" {
    		return nil, newDNSError(errNoSuchHost, host, "")
    	}
    	if ip, err := netip.ParseAddr(host); err == nil {
    		return []IPAddr{{IP: IP(ip.AsSlice()).To16(), Zone: ip.Zone()}}, nil
    	}
    	trace, _ := ctx.Value(nettrace.TraceKey{}).(*nettrace.Trace)
    	if trace != nil && trace.DNSStart != nil {
    		trace.DNSStart(host)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top