Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 304 for findall (0.16 sec)

  1. src/test/java/jcifs/tests/EnumTest.java

                        while ( chld.hasNext() ) {
                            chld.next();
                        }
                    }
                    finally {
                        bufSize[ 0 ] = origBufferSize;
                    }
                }
                finally {
                    f.delete();
                }
            }
        }
    
    
        @Test
        // BUG #16
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/DfsTest.java

        @Test
        public void testStandaloneDFSCache () throws CIFSException {
            CIFSContext context = getContext();
            context = withTestNTLMCredentials(context);
    
            final String hostname = "foo";
            final String root = "dfs";
            final String path = "\\bla\\";
    
            DfsImpl dfs = new DfsImpl(context);
    
            DfsReferralDataImpl dr = new DfsReferralDataImpl() {
    
                @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 13.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbSession.java

    import java.net.UnknownHostException;
    import java.io.IOException;
    
    public final class SmbSession {
    
        private static final String LOGON_SHARE =
                    Config.getProperty( "jcifs.smb1.smb.client.logonShare", null );
        private static final int LOOKUP_RESP_LIMIT =
                    Config.getInt( "jcifs.smb1.netbios.lookupRespLimit", 3 );
        private static final String DOMAIN =
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFileInputStream.java

        private static final Logger log = LoggerFactory.getLogger(SmbFileInputStream.class);
    
        private SmbFileHandleImpl handle;
        private long fp;
        private int readSize, readSizeFile, openFlags, access, sharing;
        private byte[] tmp = new byte[1];
    
        SmbFile file;
    
        private boolean largeReadX;
    
        private final boolean unsharedFile;
    
        private boolean smb2;
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 08:55:14 GMT 2020
    - 13.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/FileAttributesTest.java

                }
                finally {
                    f.delete();
                }
            }
        }
    
    
        @Test
        public void testCreated () throws CIFSException, MalformedURLException, UnknownHostException {
            try ( SmbResource f = createTestFile() ) {
                try {
                    assertCloseTime(f.createTime());
                }
                finally {
                    f.delete();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/NtlmFlags.java

         */
        public static final int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001;
    
        /**
         * Indicates whether OEM strings are supported or used.
         */
        public static final int NTLMSSP_NEGOTIATE_OEM = 0x00000002;
    
        /**
         * Indicates whether the authentication target is requested from
         * the server.
         */
        public static final int NTLMSSP_REQUEST_TARGET = 0x00000004;
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_VDO_CACHING = 0x20;
    
        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_DFS = 0x1;
        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_DFS_ROOT = 0x2;
    
        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_RESTRICT_EXCLUSIVE_OPENS = 0x100;
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon May 23 14:35:20 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x10;
        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x20;
        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_CREATION = 0x40;
        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_EA = 0x80;
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/DcerpcError.java

    public interface DcerpcError {
    
        public static final int DCERPC_FAULT_OTHER = 0x00000001;
        public static final int DCERPC_FAULT_ACCESS_DENIED = 0x00000005;
        public static final int DCERPC_FAULT_CANT_PERFORM = 0x000006D8;
        public static final int DCERPC_FAULT_NDR = 0x000006F7;
        public static final int DCERPC_FAULT_INVALID_TAG = 0x1C000006;
        public static final int DCERPC_FAULT_CONTEXT_MISMATCH = 0x1C00001A;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (1)
  10. src/main/java/jcifs/smb1/dcerpc/DcerpcConstants.java

    public interface DcerpcConstants {
    
        public static final UUID DCERPC_UUID_SYNTAX_NDR = new UUID("8a885d04-1ceb-11c9-9fe8-08002b104860");
    
        public static final int DCERPC_FIRST_FRAG      = 0x01; /* First fragment */
        public static final int DCERPC_LAST_FRAG       = 0x02; /* Last fragment */
        public static final int DCERPC_PENDING_CANCEL  = 0x04; /* Cancel was pending at sender */
        public static final int DCERPC_RESERVED_1      = 0x08;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.7K bytes
    - Viewed (0)
Back to top