Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for 0x0000000c (1.12 sec)

  1. src/hash/adler32/adler32_test.go

    	"io"
    	"strings"
    	"testing"
    )
    
    var golden = []struct {
    	out       uint32
    	in        string
    	halfState string // marshaled hash state after first half of in written, used by TestGoldenMarshal
    }{
    	{0x00000001, "", "adl\x01\x00\x00\x00\x01"},
    	{0x00620062, "a", "adl\x01\x00\x00\x00\x01"},
    	{0x012600c4, "ab", "adl\x01\x00b\x00b"},
    	{0x024d0127, "abc", "adl\x01\x00b\x00b"},
    	{0x03d8018b, "abcd", "adl\x01\x01&\x00\xc4"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

        private int negotiatedFlags2;
        private int maxMpxCount;
        private int snd_buf_size;
        private int recv_buf_size;
        private int tx_buf_size;
    
        private int capabilities;
        private int sessionKey = 0x00000000;
        private boolean useUnicode;
    
    
        /**
         * 
         * @param ctx
         */
        public SmbComNegotiateResponse ( CIFSContext ctx ) {
            super(ctx.getConfig());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 15.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtStatus.java

         */
    
        public static final int NT_STATUS_OK = 0x00000000;
        public static final int NT_STATUS_PENDING = 0x00000103;
        public static final int NT_STATUS_NOTIFY_ENUM_DIR = 0x0000010C;
        public static final int NT_STATUS_BUFFER_OVERFLOW = 0x80000005;
        public static final int NT_STATUS_UNSUCCESSFUL = 0xC0000001;
        public static final int NT_STATUS_NOT_IMPLEMENTED = 0xC0000002;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 10:09:29 UTC 2019
    - 11.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtStatus.java

         */
    
        public static final int NT_STATUS_OK = 0x00000000;
        public static final int NT_STATUS_UNSUCCESSFUL = 0xC0000001;
        public static final int NT_STATUS_NOT_IMPLEMENTED = 0xC0000002;
        public static final int NT_STATUS_INVALID_INFO_CLASS = 0xC0000003;
        public static final int NT_STATUS_ACCESS_VIOLATION = 0xC0000005;
        public static final int NT_STATUS_INVALID_HANDLE = 0xC0000008;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/arm/asm.go

    // assembles to:
    //
    // 00000000 <local.dso_init>:
    //    0:        e59f0004        ldr     r0, [pc, #4]    ; c <local.dso_init+0xc>
    //    4:        e5900000        ldr     r0, [r0]
    //    8:        eafffffe        b       0 <runtime.addmoduledata>
    //                      8: R_ARM_JUMP24 runtime.addmoduledata
    //    c:        00000004        .word   0x00000004
    //                      c: R_ARM_GOT_PREL       local.moduledata
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SIDCacheImpl.java

                    SamrPolicyHandle policyHandle = new SamrPolicyHandle(handle, authorityServerName, 0x00000030);
                    SamrDomainHandle domainHandle = new SamrDomainHandle(handle, policyHandle, 0x00000200, domsid.unwrap(sid_t.class));
                    try ( SamrAliasHandle aliasHandle = new SamrAliasHandle(handle, domainHandle, 0x0002000c, rid) ) {
                        rpc = new MsrpcGetMembersInAlias(aliasHandle, sidarray);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.6K bytes
    - Viewed (0)
  7. src/runtime/netpoll_windows.go

    // It returns true if the timer expired during this call.
    func netpollQueueTimer(delay int64) (signaled bool) {
    	const (
    		STATUS_SUCCESS   = 0x00000000
    		STATUS_PENDING   = 0x00000103
    		STATUS_CANCELLED = 0xC0000120
    	)
    	mp := getg().m
    	// A wait completion packet can only be associated with one timer at a time,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. docs/features/https.md

        Failure in SSL library, usually a protocol error
            error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake
            failure (external/openssl/ssl/s23_clnt.c:770 0x7f2728a53ea0:0x00000000)
        at com.android.org.conscrypt.NativeCrypto.SSL_do_handshake(Native Method)
    ```
    
    You can check a web server's configuration using [Qualys SSL Labs][qualys]. OkHttp's TLS
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  9. src/runtime/os_windows.go

    		uintptr(l),
    		uintptr(unsafe.Pointer(&written)),
    		0,
    	)
    	return
    }
    
    //go:nosplit
    func semasleep(ns int64) int32 {
    	const (
    		_WAIT_ABANDONED = 0x00000080
    		_WAIT_OBJECT_0  = 0x00000000
    		_WAIT_TIMEOUT   = 0x00000102
    		_WAIT_FAILED    = 0xFFFFFFFF
    	)
    
    	var result uintptr
    	if ns < 0 {
    		result = stdcall2(_WaitForSingleObject, getg().m.waitsema, uintptr(_INFINITE))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. src/image/png/reader_test.go

    				0x5f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
    			},
    			unsupportedConfig: false,
    			width:             0x04000000,
    			height:            0x00000001,
    		},
    
    		{
    			src: []byte{
    				0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
Back to top