Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 0b0190 (0.12 sec)

  1. src/test/java/org/codelibs/core/convert/DateConversionUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToDate_SpecificPattern() throws Exception {
            final Date date = toDate("07//09//10", "dd//MM//yy");
            assertThat(new SimpleDateFormat("yyyy/MM/dd").format(date), is("2010/09/07"));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	S_ISUID                         = 0x0800
    	S_ISGID                         = 0x0400
    	S_ISVTX                         = 0x0200
    	S_IRUSR                         = 0x0100
    	S_IWUSR                         = 0x0080
    	S_IXUSR                         = 0x0040
    	S_IRWXU                         = 0x01C0
    	S_IRGRP                         = 0x0020
    	S_IWGRP                         = 0x0010
    	S_IXGRP                         = 0x0008
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. tensorflow/compiler/mlir/quantization/tensorflow/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: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    	}
    }
    
    func TestSimpleError(t *testing.T) {
    	testClientHelloFailure(t, testConfig, &serverHelloDoneMsg{}, "unexpected handshake message")
    }
    
    var badProtocolVersions = []uint16{0x0000, 0x0005, 0x0100, 0x0105, 0x0200, 0x0205, VersionSSL30}
    
    func TestRejectBadProtocolVersion(t *testing.T) {
    	config := testConfig.Clone()
    	config.MinVersion = VersionSSL30
    	for _, v := range badProtocolVersions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/encoding/xml/xml.go

    		{0x005F, 0x005F, 1},
    		{0x0061, 0x007A, 1},
    		{0x00C0, 0x00D6, 1},
    		{0x00D8, 0x00F6, 1},
    		{0x00F8, 0x00FF, 1},
    		{0x0100, 0x0131, 1},
    		{0x0134, 0x013E, 1},
    		{0x0141, 0x0148, 1},
    		{0x014A, 0x017E, 1},
    		{0x0180, 0x01C3, 1},
    		{0x01CD, 0x01F0, 1},
    		{0x01F4, 0x01F5, 1},
    		{0x01FA, 0x0217, 1},
    		{0x0250, 0x02A8, 1},
    		{0x02BB, 0x02C1, 1},
    		{0x0386, 0x0386, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. src/fmt/fmt_test.go

    	// verbs apply to the extracted value too.
    	{"%s", reflect.ValueOf("hello"), "hello"},
    	{"%q", reflect.ValueOf("hello"), `"hello"`},
    	{"%#04x", reflect.ValueOf(256), "0x0100"},
    
    	// invalid reflect.Value doesn't crash.
    	{"%v", reflect.Value{}, "<invalid reflect.Value>"},
    	{"%v", &reflect.Value{}, "<invalid Value>"},
    	{"%v", SI{reflect.Value{}}, "{<invalid Value>}"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top