Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for UInt16 (0.15 sec)

  1. src/unicode/tables.go

    	0xFA: pLl | pp, // 'ú'
    	0xFB: pLl | pp, // 'û'
    	0xFC: pLl | pp, // 'ü'
    	0xFD: pLl | pp, // 'ý'
    	0xFE: pLl | pp, // 'þ'
    	0xFF: pLl | pp, // 'ÿ'
    }
    
    var asciiFold = [MaxASCII + 1]uint16{
    	0x0000,
    	0x0001,
    	0x0002,
    	0x0003,
    	0x0004,
    	0x0005,
    	0x0006,
    	0x0007,
    	0x0008,
    	0x0009,
    	0x000A,
    	0x000B,
    	0x000C,
    	0x000D,
    	0x000E,
    	0x000F,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    			return
    		}
    		if _, err := io.ReadFull(s, buf[4:ipLen+6]); err != nil {
    			t.Errorf("socks5 proxy address read: %v", err)
    			return
    		}
    		ip := net.IP(buf[4 : ipLen+4])
    		port := binary.BigEndian.Uint16(buf[ipLen+4 : ipLen+6])
    		copy(buf[:3], []byte{5, 0, 0})
    		if _, err := s.Write(buf[:ipLen+6]); err != nil {
    			t.Errorf("socks5 proxy connect write: %v", err)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    	}
    
    	if int(p.From.Reg) == from {
    		p.From.Reg = int16(to)
    		p.Ft = 0
    	}
    
    	if int(p.To.Reg) == from {
    		p.To.Reg = int16(to)
    		p.Tt = 0
    	}
    
    	if int(p.From.Index) == from {
    		p.From.Index = int16(to)
    		p.Ft = 0
    	}
    
    	if int(p.To.Index) == from {
    		p.To.Index = int16(to)
    		p.Tt = 0
    	}
    
    	if false { /* debug['Q'] */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    		{NullInt32{222, false}, 1, NullInt32{0, false}},
    		{0, NullInt32{31, false}, nil},
    	}}
    	nullTestRun(t, spec)
    }
    
    func TestNullInt16Param(t *testing.T) {
    	spec := nullTestSpec{"nullint16", "int16", [6]nullTestRow{
    		{NullInt16{31, true}, 1, NullInt16{31, true}},
    		{NullInt16{-22, false}, 1, NullInt16{0, false}},
    		{22, 1, NullInt16{22, true}},
    		{NullInt16{33, true}, 1, NullInt16{33, true}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        This operation reverses each dimension i for
        which there exists j s.t. axis[j] == i.
    
        Args:
          tensor: A Tensor. Must be one of the following types:
          uint8, int8, int16, int32, int64, float32, bool Up to 8-D.
    
          axis: A Tensor. Must be one of the following types: int32, int64.
          with only 1 element which is the axis index.
          TODO: Add support for multiple elements.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top