Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for level (0.15 sec)

  1. README.md

    ## Using Maven
    
    ```
    <dependency>
        <groupId>org.codelibs</groupId>
        <artifactId>jcifs</artifactId>
        <version>2.1.34</version>
    </dependency>
    ```
    
    ## Changes
    
     * SMB2 (2.02 protocol level) support, some SMB3 support
     * Remove global state
     * Allow per context configuration
     * Logging through SLF4J
     * Drop pre-java 1.7 support
     * Unify authentication subsystem, NTLMSSP/Kerberos support
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed May 10 09:29:34 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/EnumTest.java

                int firstSep = link.indexOf('/');
                if ( firstSep == link.length() - 1 ) {
                    // single level
                    assertTrue("Link not found " + link, listLinks.contains(link));
                }
                else {
                    link = link.substring(0, firstSep + 1);
                    // single level
                    assertTrue("First component of link not found" + link, listLinks.contains(link));
                }
    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)
  3. src/test/java/jcifs/tests/OplockTests.java

                    tree.send(create);
    
                    Smb2CreateRequest create2 = new Smb2CreateRequest(sess.getConfig(), "\\foocc");
                    create2.setOverrideTimeout(1000);
                    create2.setCreateDisposition(Smb2CreateRequest.FILE_OPEN_IF);
                    create2.setRequestedOplockLevel(Smb2CreateRequest.SMB2_OPLOCK_LEVEL_BATCH);
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_ACCESS_BASED_DIRECTORY_ENUM = 0x800;
        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_FORCE_LEVEL2_OPLOCK = 0x1000;
        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_ENABLE_HASH_V1 = 0x2000;
        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_ENABLE_HASH_V2 = 0x4000;
        /**
    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)
  5. src/test/java/jcifs/tests/ConcurrencyTest.java

                        create.setCreateDisposition(Smb2CreateRequest.FILE_OPEN_IF);
                        create.setRequestedOplockLevel(Smb2CreateRequest.SMB2_OPLOCK_LEVEL_BATCH);
    
    
    
                        try {
                            tree.send(create);
    
                            Smb2CreateRequest create2 = new Smb2CreateRequest(sess.getConfig(), "\\foocc");
    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)
  6. src/main/java/jcifs/Configuration.java

         * 
         * Property <tt>jcifs.smb.client.password</tt>
         * 
         * @return default credentials, password
         */
        String getDefaultPassword ();
    
    
        /**
         * Lanman compatibility level
         * 
         * {@href https://technet.microsoft.com/en-us/library/cc960646.aspx}
         * 
         * 
         * <table>
         * <tr>
         * <td>0 or 1</td>
         * <td>LM and NTLM</td>
         * </tr>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        private <T extends FileSystemInformation> T queryFSInformation ( SmbTreeHandleImpl th, Class<T> clazz, byte level ) throws CIFSException {
            if ( th.isSMB2() ) {
                Smb2QueryInfoRequest qreq = new Smb2QueryInfoRequest(th.getConfig());
                qreq.setFilesystemInfoClass(level);
                Smb2QueryInfoResponse resp = withOpen(
                    th,
                    Smb2CreateRequest.FILE_OPEN,
    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/smb1/smb1/SmbFile.java

            }
    
            if( getType() == TYPE_SHARE ) {
                Trans2QueryFSInformationResponse response;
                int level = Trans2QueryFSInformationResponse.SMB_INFO_ALLOCATION;
    
                response = new Trans2QueryFSInformationResponse( level );
                send( new Trans2QueryFSInformation( level ), response );
    
                size = response.info.getCapacity();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top