Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for Subject (0.28 sec)

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

         * 
         * @param tc
         */
        public NtlmPasswordAuthentication ( CIFSContext tc ) {
            this(tc, "", "", "");
        }
    
    
        /**
         * Create an <tt>NtlmPasswordAuthentication</tt> object from the userinfo
         * component of an SMB URL like "<tt>domain;user:pass</tt>". This constructor
         * is used internally be jCIFS when parsing SMB URLs.
         * 
         * @param tc
         * @param userInfo
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

    public class NdrBuffer {
    
        private int referent;
        private Map<Object, Entry> referents;
    
        private static class Entry {
    
            public Entry ( int referent, Object obj ) {
                this.referent = referent;
                this.obj = obj;
            }
    
            final int referent;
    
            @SuppressWarnings ( "unused" )
            private final Object obj;
        }
    
        public byte[] buf;
        public int start;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/ConcurrencyTest.java

                    exclFile.delete();
                }
            }
        }
    
        private class ExclusiveLockFirst extends MultiTestCase {
    
            private Object startedLock = new Object();
            private volatile boolean started;
    
            private Object shutdownLock = new Object();
            private volatile boolean shutdown;
            private SmbResource file;
    
    
            /**
             * @param smbFile
             * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:40:50 GMT 2021
    - 17.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java

        
        /* The NbtAddress object used to query this node will be in the list
         * returned by the Node Status. A new NbtAddress object should not be
         * created for it because the original is potentially being actively
         * referenced by other objects. We must populate the existing object's
         * data explicitly (and carefully).
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/TestProperties.java

        static final String TEST_MUTATIONS = "test.mutations";
    
        static final String EXCLUDE_TEST_MUTATIONS = "test.mutations.exclude";
    
        static final Object TEST_FIFO_PIPE = "test.pipe.fifo";
        static final Object TEST_TRANSACT_PIPE = "test.pipe.transact";
        static final Object TEST_CALL_PIPE = "test.pipe.call";
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Feb 29 16:38:58 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbResource.java

         */
        long getDiskFreeSpace () throws CIFSException;
    
    
        /**
         * Returns the length of this <tt>SmbResource</tt> in bytes. If this object
         * is a <tt>TYPE_SHARE</tt> the total capacity of the disk shared in
         * bytes is returned. If this object is a directory or a type other than
         * <tt>TYPE_SHARE</tt>, 0L is returned.
         *
         * @return The length of the file in bytes or 0 if this
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

                log.trace("exists:", se);
                switch ( se.getNtStatus() ) {
                case NtStatus.NT_STATUS_NO_SUCH_FILE:
                case NtStatus.NT_STATUS_OBJECT_NAME_INVALID:
                case NtStatus.NT_STATUS_OBJECT_NAME_NOT_FOUND:
                case NtStatus.NT_STATUS_OBJECT_PATH_NOT_FOUND:
                    break;
                default:
                    throw se;
                }
            }
            catch ( CIFSException e ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ACE.java

        /**
         * 
         */
        public static final int GENERIC_READ = 0x80000000; // 31
    
        /**
         * 
         */
        public static final int FLAGS_OBJECT_INHERIT = 0x01;
        /**
         * 
         */
        public static final int FLAGS_CONTAINER_INHERIT = 0x02;
        /**
         * 
         */
        public static final int FLAGS_NO_PROPAGATE = 0x04;
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/HMACT64.java

            super("HMACT64");
            this.ipad = hmac.ipad;
            this.opad = hmac.opad;
            this.md5 = (MessageDigest) hmac.md5.clone();
        }
    
        public Object clone() {
            try {
                return new HMACT64(this);
            } catch (CloneNotSupportedException ex) {
                throw new IllegalStateException(ex.getMessage());
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/HMACT64.java

            super("HMACT64");
            this.ipad = hmac.ipad;
            this.opad = hmac.opad;
            this.md5 = (MessageDigest) hmac.md5.clone();
        }
    
    
        @Override
        public Object clone () {
            try {
                return new HMACT64(this);
            }
            catch ( CloneNotSupportedException ex ) {
                throw new IllegalStateException(ex.getMessage());
            }
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
Back to top