Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for II (0.15 sec)

  1. src/main/java/jcifs/smb1/UniAddress.java

                            UniAddress[] addrs = new UniAddress[iaddrs.length];
                            for (int ii = 0; ii < iaddrs.length; ii++) {
                                addrs[ii] = new UniAddress(iaddrs[ii]);
                            }
                            return addrs; // Success
                        default:
                            throw new UnknownHostException( hostname );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        }
    
    
        private static UniAddress[] wrapInetAddresses ( InetAddress[] iaddrs ) {
            UniAddress[] addrs = new UniAddress[iaddrs.length];
            for ( int ii = 0; ii < iaddrs.length; ii++ ) {
                addrs[ ii ] = new UniAddress(iaddrs[ ii ]);
            }
            return addrs;
        }
    
    
        private static UniAddress[] wrapNetbiosAddresses ( NetbiosAddress[] addr ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/TestLocking.java

        public void run()
        {
            try {
                SmbFile f = new SmbFile(url);
                SmbFile d = new SmbFile(f.getParent());
                byte[] buf = new byte[1024];
    
                for (int ii = 0; ii < numIter; ii++) {
    
                    synchronized (this) {
                        ltime = System.currentTimeMillis();
                        wait();
                    }
    
                    try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.4K bytes
    - Viewed (0)
  4. LICENSE

          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
          "You" (or "Your") shall mean an individual or Legal Entity
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue May 08 21:35:34 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SID.java

            dst[ di++ ] = sid.sub_authority_count;
            System.arraycopy(sid.identifier_authority, 0, dst, di, 6);
            di += 6;
            for ( int ii = 0; ii < sid.sub_authority_count; ii++ ) {
                jcifs.util.Encdec.enc_uint32le(sid.sub_authority[ ii ], dst, di);
                di += 4;
            }
            return dst;
        }
    
        int type;
        String domainName = null;
        String acctName = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java

    import jcifs.smb1.util.Hexdump;
    
    class SmbComNTCreateAndXResponse extends AndXServerMessageBlock {
    
        static final int EXCLUSIVE_OPLOCK_GRANTED = 1;
        static final int BATCH_OPLOCK_GRANTED     = 2;
        static final int LEVEL_II_OPLOCK_GRANTED  = 3;
    
        byte oplockLevel;
        int fid,
            createAction,
            extFileAttributes,
            fileType,
            deviceState;
        long creationTime,
            lastAccessTime,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

    public class SmbComNTCreateAndXResponse extends AndXServerMessageBlock implements SmbBasicFileInfo {
    
        static final int EXCLUSIVE_OPLOCK_GRANTED = 1;
        static final int BATCH_OPLOCK_GRANTED = 2;
        static final int LEVEL_II_OPLOCK_GRANTED = 3;
    
        private byte oplockLevel;
        private int fid, createAction, extFileAttributes, fileType, deviceState;
        private long creationTime, lastAccessTime, lastWriteTime, changeTime, allocationSize, endOfFile;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int CAP_NT_SMBS          = 0x0010;
        static final int CAP_RPC_REMOTE_APIS  = 0x0020;
        static final int CAP_STATUS32         = 0x0040;
        static final int CAP_LEVEL_II_OPLOCKS = 0x0080;
        static final int CAP_LOCK_AND_READ    = 0x0100;
        static final int CAP_NT_FIND          = 0x0200;
        static final int CAP_DFS              = 0x1000;
        static final int CAP_EXTENDED_SECURITY = 0x80000000;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SID.java

            dst[di++] = sid.sub_authority_count;
            System.arraycopy(sid.identifier_authority, 0, dst, di, 6);
            di += 6;
            for (int ii = 0; ii < sid.sub_authority_count; ii++) {
                jcifs.smb1.util.Encdec.enc_uint32le(sid.sub_authority[ii], dst, di);
                di += 4;
            }
            return dst;
        }
    
        int type;
        String domainName = null;
        String acctName = null;
    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)
  10. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        /**
         * 
         */
        public static final byte SMB2_OPLOCK_LEVEL_NONE = 0x0;
        /**
         * 
         */
        public static final byte SMB2_OPLOCK_LEVEL_II = 0x1;
        /**
         * 
         */
        public static final byte SMB2_OPLOCK_LEVEL_EXCLUSIVE = 0x8;
        /**
         * 
         */
        public static final byte SMB2_OPLOCK_LEVEL_BATCH = 0x9;
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 09:52:11 GMT 2019
    - 14.3K bytes
    - Viewed (0)
Back to top