Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for 0b0190 (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	PROCESS_DUP_HANDLE                = 0x0040
    	PROCESS_QUERY_INFORMATION         = 0x0400
    	PROCESS_QUERY_LIMITED_INFORMATION = 0x1000
    	PROCESS_SET_INFORMATION           = 0x0200
    	PROCESS_SET_QUOTA                 = 0x0100
    	PROCESS_SUSPEND_RESUME            = 0x0800
    	PROCESS_TERMINATE                 = 0x0001
    	PROCESS_VM_OPERATION              = 0x0008
    	PROCESS_VM_READ                   = 0x0010
    	PROCESS_VM_WRITE                  = 0x0020
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. src/math/big/ratconv_test.go

    	{in: "-1/-1"},
    
    	// invalid with separators
    	// (smoke tests only - a comprehensive set of tests is in natconv_test.go)
    	{in: "10_/1"},
    	{in: "_10/1"},
    	{in: "1/1__0"},
    
    	// valid
    	{"0b1000/3", "8/3", true},
    	{"0B1000/0x8", "1", true},
    	{"-010/1", "-8", true}, // 0-prefix indicates octal in this case
    	{"-010.0", "-10", true},
    	{"-0o10/1", "-8", true},
    	{"0x10/1", "16", true},
    	{"0x10/0x20", "1/2", true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/syscall_windows.go

    	WSA_FLAG_NO_HANDLE_INHERIT = 0x80
    
    	WSAEINVAL       syscall.Errno = 10022
    	WSAEMSGSIZE     syscall.Errno = 10040
    	WSAEAFNOSUPPORT syscall.Errno = 10047
    
    	MSG_PEEK   = 0x2
    	MSG_TRUNC  = 0x0100
    	MSG_CTRUNC = 0x0200
    
    	socket_error = uintptr(^uint32(0))
    )
    
    var WSAID_WSASENDMSG = syscall.GUID{
    	Data1: 0xa441e712,
    	Data2: 0x754f,
    	Data3: 0x43ca,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/archive/tar/format.go

    	return unsigned, signed
    }
    
    // reset clears the block with all zeros.
    func (b *block) reset() {
    	*b = block{}
    }
    
    type headerV7 [blockSize]byte
    
    func (h *headerV7) name() []byte     { return h[000:][:100] }
    func (h *headerV7) mode() []byte     { return h[100:][:8] }
    func (h *headerV7) uid() []byte      { return h[108:][:8] }
    func (h *headerV7) gid() []byte      { return h[116:][:8] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

                  np.random.uniform(size=bias_shape), dtype=dtypes.float32
              )
    
            self._kernel = np.random.uniform(size=y_shape).astype('f4')
            self._min = (-0.8, -0.8, -0.9)
            self._max = (0.9, 0.9, 1.0)
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
                      name='x', shape=x_signature, dtype=dtypes.float32
                  )
              ]
          )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      // new_axis_mask: should always be 0.
      // ellipsis_mask: should always be 0.
      // begin_mask & end_mask: should be 0b101 = 5 or 0b110 = 4 if it's
      // time-majored. shrink_axis_mask: should be 0b010 = 2 or 0b001 = 1 if it's
      // time-majored.
      SmallVector<int64_t, 2> last_output_shape({batch, n_output});
    
      SmallVector<int32_t, 3> end({0, 0, 0});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  7. src/unicode/letter_test.go

    	{LowerCase, 0x0139, 0x013A},
    	{TitleCase, 0x0139, 0x0139},
    	// 013F;LATIN CAPITAL LETTER L WITH MIDDLE DOT;Lu;0;L;<compat> 004C 00B7;;;;N;;;;0140;
    	{UpperCase, 0x013f, 0x013f},
    	{LowerCase, 0x013f, 0x0140},
    	{TitleCase, 0x013f, 0x013f},
    	// 0148;LATIN SMALL LETTER N WITH CARON;Ll;0;L;006E 030C;;;;N;LATIN SMALL LETTER N HACEK;;0147;;0147
    	{UpperCase, 0x0148, 0x0147},
    	{LowerCase, 0x0148, 0x0148},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  8. src/unicode/utf8/utf8_test.go

    	{0x00bf, "\xc2\xbf"},
    	{0x00c0, "\xc3\x80"},
    	{0x00c1, "\xc3\x81"},
    	{0x00c8, "\xc3\x88"},
    	{0x00d0, "\xc3\x90"},
    	{0x00e0, "\xc3\xa0"},
    	{0x00f0, "\xc3\xb0"},
    	{0x00f8, "\xc3\xb8"},
    	{0x00ff, "\xc3\xbf"},
    	{0x0100, "\xc4\x80"},
    	{0x07ff, "\xdf\xbf"},
    	{0x0400, "\xd0\x80"},
    	{0x0800, "\xe0\xa0\x80"},
    	{0x0801, "\xe0\xa0\x81"},
    	{0x1000, "\xe1\x80\x80"},
    	{0xd000, "\xed\x80\x80"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  9. src/math/big/floatconv_test.go

    		{"1024p-12", 0.25},
    		{"-1p10", -1024},
    		{"1.5p1", 3},
    
    		// binary mantissa, decimal exponent
    		{"0b0", 0},
    		{"-0b0", -zero_},
    		{"0b0e+10", 0},
    		{"-0b0e-10", -zero_},
    		{"0b1010", 10},
    		{"0B1010E2", 1000},
    		{"0b.1", 0.5},
    		{"0b.001", 0.125},
    		{"0b.001e3", 125},
    
    		// binary mantissa, binary exponent
    		{"0b0p+10", 0},
    		{"-0b0p-10", -zero_},
    		{"0b.1010p4", 10},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/CipherSuite.kt

        // @JvmField val TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA = init("TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA", 0x008f)
        // @JvmField val TLS_DHE_PSK_WITH_AES_128_CBC_SHA = init("TLS_DHE_PSK_WITH_AES_128_CBC_SHA", 0x0090)
        // @JvmField val TLS_DHE_PSK_WITH_AES_256_CBC_SHA = init("TLS_DHE_PSK_WITH_AES_256_CBC_SHA", 0x0091)
        // @JvmField val TLS_RSA_PSK_WITH_RC4_128_SHA = init("TLS_RSA_PSK_WITH_RC4_128_SHA", 0x0092)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 39.9K bytes
    - Viewed (0)
Back to top