Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 112 for 0x0100 (0.21 sec)

  1. src/syscall/types_windows.go

    	DNS_TYPE_MB      = 0x0007
    	DNS_TYPE_MG      = 0x0008
    	DNS_TYPE_MR      = 0x0009
    	DNS_TYPE_NULL    = 0x000a
    	DNS_TYPE_WKS     = 0x000b
    	DNS_TYPE_PTR     = 0x000c
    	DNS_TYPE_HINFO   = 0x000d
    	DNS_TYPE_MINFO   = 0x000e
    	DNS_TYPE_MX      = 0x000f
    	DNS_TYPE_TEXT    = 0x0010
    	DNS_TYPE_RP      = 0x0011
    	DNS_TYPE_AFSDB   = 0x0012
    	DNS_TYPE_X25     = 0x0013
    	DNS_TYPE_ISDN    = 0x0014
    	DNS_TYPE_RT      = 0x0015
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/unicode/letter_test.go

    	{UpperCase, 0x0139, 0x0139},
    	{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},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. src/unicode/utf8/utf8_test.go

    }
    
    var utf8map = []Utf8Map{
    	{0x0000, "\x00"},
    	{0x0001, "\x01"},
    	{0x007e, "\x7e"},
    	{0x007f, "\x7f"},
    	{0x0080, "\xc2\x80"},
    	{0x0081, "\xc2\x81"},
    	{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"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    // Flags defining the section type.
    const (
    	STYP_DWARF  = 0x0010
    	STYP_TEXT   = 0x0020
    	STYP_DATA   = 0x0040
    	STYP_BSS    = 0x0080
    	STYP_EXCEPT = 0x0100
    	STYP_INFO   = 0x0200
    	STYP_TDATA  = 0x0400
    	STYP_TBSS   = 0x0800
    	STYP_LOADER = 0x1000
    	STYP_DEBUG  = 0x2000
    	STYP_TYPCHK = 0x4000
    	STYP_OVRFLO = 0x8000
    )
    const (
    	SSUBTYP_DWINFO  = 0x10000 // DWARF info section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    const (
    	SE_OWNER_DEFAULTED       = 0x0001
    	SE_GROUP_DEFAULTED       = 0x0002
    	SE_DACL_PRESENT          = 0x0004
    	SE_DACL_DEFAULTED        = 0x0008
    	SE_SACL_PRESENT          = 0x0010
    	SE_SACL_DEFAULTED        = 0x0020
    	SE_DACL_AUTO_INHERIT_REQ = 0x0100
    	SE_SACL_AUTO_INHERIT_REQ = 0x0200
    	SE_DACL_AUTO_INHERITED   = 0x0400
    	SE_SACL_AUTO_INHERITED   = 0x0800
    	SE_DACL_PROTECTED        = 0x1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java

         */
        static long mapInformationLevel ( int il ) {
            switch ( il ) {
            case FileInformation.FILE_BASIC_INFO:
                return 0x0101;
            case FileInformation.FILE_STANDARD_INFO:
                return 0x0102;
            case FileInformation.FILE_ENDOFFILE_INFO:
                return 0x0104;
            }
            throw new IllegalArgumentException("Unsupported information level " + il);
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  8. src/unicode/tables.go

    		{0x0138, 0x0148, 2},
    		{0x0149, 0x0177, 2},
    		{0x017a, 0x017e, 2},
    		{0x017f, 0x0180, 1},
    		{0x0183, 0x0185, 2},
    		{0x0188, 0x018c, 4},
    		{0x018d, 0x0192, 5},
    		{0x0195, 0x0199, 4},
    		{0x019a, 0x019b, 1},
    		{0x019e, 0x01a1, 3},
    		{0x01a3, 0x01a5, 2},
    		{0x01a8, 0x01aa, 2},
    		{0x01ab, 0x01ad, 2},
    		{0x01b0, 0x01b4, 4},
    		{0x01b6, 0x01b9, 3},
    		{0x01ba, 0x01bd, 3},
    		{0x01be, 0x01bf, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K 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

    			[% 07.2f]: [ 001.00] [-001.00]
    			[%+07.2f]: [+001.00] [-001.00]
    			[% +07.2f]: [+001.00] [-001.00]
    
    	*/
    	{"%.2f", 1.0, "1.00"},
    	{"%.2f", -1.0, "-1.00"},
    	{"% .2f", 1.0, " 1.00"},
    	{"% .2f", -1.0, "-1.00"},
    	{"%+.2f", 1.0, "+1.00"},
    	{"%+.2f", -1.0, "-1.00"},
    	{"%7.2f", 1.0, "   1.00"},
    	{"%7.2f", -1.0, "  -1.00"},
    	{"% 7.2f", 1.0, "   1.00"},
    	{"% 7.2f", -1.0, "  -1.00"},
    	{"%+7.2f", 1.0, "  +1.00"},
    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