Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for init (0.19 sec)

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

            byte flags;
            int flags2;
            int maxMpxCount;
            int maxBufferSize;
            int sessionKey;
            int capabilities;
            String oemDomainName;
            int securityMode;
            int security;
            boolean encryptedPasswords;
            boolean signaturesEnabled;
            boolean signaturesRequired;
            int maxNumberVcs;
            int maxRawSize;
            long serverTime;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

        public static final int SID_TYPE_USE_NONE = lsarpc.SID_NAME_USE_NONE;
        public static final int SID_TYPE_USER    = lsarpc.SID_NAME_USER;
        public static final int SID_TYPE_DOM_GRP = lsarpc.SID_NAME_DOM_GRP;
        public static final int SID_TYPE_DOMAIN  = lsarpc.SID_NAME_DOMAIN;
        public static final int SID_TYPE_ALIAS   = lsarpc.SID_NAME_ALIAS;
        public static final int SID_TYPE_WKN_GRP = lsarpc.SID_NAME_WKN_GRP;
    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)
  3. src/test/java/jcifs/tests/RandomAccessFileTest.java

    
        private static void verifyZero ( int cnt, InputStream is ) throws IOException {
            byte[] offBuf = new byte[cnt];
            int pos = 0;
            while ( pos < cnt ) {
                int r = is.read(offBuf, pos, offBuf.length - pos);
                if ( r < 0 ) {
                    fail("EOF while reading");
                }
                pos += r;
            }
    
            for ( int i = 0; i < offBuf.length; i++ ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

         * current environment.
         *
         * @return An <code>int</code> containing the default flags.
         */
        public static int getDefaultFlags() {
            return DEFAULT_FLAGS;
        }
    
        /**
         * Returns the default flags for a Type-2 message created in response
         * to the given Type-1 message in the current environment.
         *
         * @return An <code>int</code> containing the default flags.
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        }
    
    
        @Override
        public int getConnectTimeout () {
            return this.connection.getConnectTimeout();
        }
    
    
        @Override
        public void setConnectTimeout ( int timeout ) {
            this.connection.setConnectTimeout(timeout);
        }
    
    
        @Override
        public int getReadTimeout () {
            return this.connection.getReadTimeout();
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/ReadWriteTest.java

            long p = 0;
            Random r = getRandom();
            while ( p < length ) {
    
                int rs = Math.min(bufSize, (int) ( length - p ));
                int read = is.read(buffer, 0, rs);
                if ( read < 0 ) {
                    fail("Unexpected EOF at " + p);
                }
    
                byte verify[] = new byte[read];
                randBytes(r, verify);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeImpl.java

        }
    
    
        /**
         * @param stackTrace
         * @return
         */
        private static StackTraceElement[] truncateTrace ( StackTraceElement[] stackTrace ) {
    
            int s = 2;
            int e = stackTrace.length;
    
            for ( int i = s; i < e; i++ ) {
                StackTraceElement se = stackTrace[ i ];
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbResource.java

         * @return output stream, needs to be closed when finished
         * @throws CIFSException
         */
        OutputStream openOutputStream ( boolean append, int openFlags, int access, int sharing ) throws CIFSException;
    
    
        /**
         * Opens an output stream writing to the file (write only, exclusive write access)
         * 
         * @param append
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                    userInfo = unescape(userInfo);
                }
                catch ( UnsupportedEncodingException uee ) {
                    throw new RuntimeCIFSException(uee);
                }
                int i, u;
                int end = userInfo.length();
                for ( i = 0, u = 0; i < end; i++ ) {
                    char c = userInfo.charAt(i);
                    if ( c == ';' ) {
                        dom = userInfo.substring(0, i);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/ConcurrencyTest.java

                    List<MultiTestCase> runnables = new ArrayList<>();
                    for ( int i = 0; i < n; i++ ) {
                        runnables.add(new LockedWritesTest(failCount, writeCount, new SmbFile(sr, fname)));
                    }
                    runMultiTestCase(runnables, 60);
    
                    int readCnt = 0;
                    try ( InputStream is = f.openInputStream(SmbConstants.FILE_NO_SHARE) ) {
    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)
Back to top