Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for mapael (0.19 sec)

  1. src/main/java/jcifs/smb/NtStatus.java

        public static final int NT_STATUS_PASSWORD_EXPIRED = 0xC0000071;
        public static final int NT_STATUS_ACCOUNT_DISABLED = 0xC0000072;
        public static final int NT_STATUS_NONE_MAPPED = 0xC0000073;
        public static final int NT_STATUS_INVALID_SID = 0xC0000078;
        public static final int NT_STATUS_DISK_FULL = 0xC000007f;
        public static final int NT_STATUS_INSTANCE_NOT_AVAILABLE = 0xC00000ab;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpFilter.java

     *                   "Jason Pugsley" <jcifs at samba dot org>
     *                   "skeetz" <jcifs at samba dot org>
     *                   "Eric Glass" <jcifs at samba dot org>
     *                   and Marcel, Thomas, ...
     *
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

     *                   "Jason Pugsley" <jcifs at samba dot org>
     *                   "skeetz" <jcifs at samba dot org>
     *                   "Eric Glass" <jcifs at samba dot org>
     *                   and Marcel, Thomas, ...
     *
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SIDCacheImpl.java

            MsrpcLookupSids rpc = new MsrpcLookupSids(policyHandle, sids);
            handle.sendrecv(rpc);
            switch ( rpc.retval ) {
            case 0:
            case NtStatus.NT_STATUS_NONE_MAPPED:
            case 0x00000107: // NT_STATUS_SOME_NOT_MAPPED
                break;
            default:
                throw new SmbException(rpc.retval, false);
            }
    
            for ( int si = 0; si < sids.length; si++ ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SID.java

            MsrpcLookupSids rpc = new MsrpcLookupSids(policyHandle, sids);
            handle.sendrecv(rpc);
            switch (rpc.retval) {
                case 0:
                case NtStatus.NT_STATUS_NONE_MAPPED:
                case 0x00000107: // NT_STATUS_SOME_NOT_MAPPED
                    break;
                default:
                    throw new SmbException(rpc.retval, false);
            }
    
            for (int si = 0; si < sids.length; si++) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtStatus.java

        public static final int NT_STATUS_PASSWORD_EXPIRED = 0xC0000071;
        public static final int NT_STATUS_ACCOUNT_DISABLED = 0xC0000072;
        public static final int NT_STATUS_NONE_MAPPED = 0xC0000073;
        public static final int NT_STATUS_INVALID_SID = 0xC0000078;
        public static final int NT_STATUS_INSTANCE_NOT_AVAILABLE = 0xC00000ab;
        public static final int NT_STATUS_PIPE_NOT_AVAILABLE = 0xC00000ac;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
Back to top