Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for racking (0.21 sec)

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

    import jcifs.CIFSContext;
    import jcifs.DfsReferralData;
    import jcifs.DfsResolver;
    import jcifs.SmbTransport;
    import jcifs.internal.dfs.DfsReferralDataImpl;
    import jcifs.internal.dfs.DfsReferralDataInternal;
    
    
    /**
     * Caching DFS resolver implementation
     * 
     * @internal
     */
    public class DfsImpl implements DfsResolver {
    
        private static final DfsReferralDataImpl NEGATIVE_ENTRY = new DfsReferralDataImpl();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                    /*
                     * The SMB_COM_NT_CREATE_ANDX response wordCount is wrong. There's an
                     * extra 16 bytes for some "Offline Files (CSC or Client Side Caching)"
                     * junk. We need to bump up the wordCount here so that this method returns
                     * the correct number of bytes for signing purposes. Otherwise we get a
                     * signing verification failure.
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/FileNotifyInformation.java

         * The operating system detects a change in file size only when the file is written to the disk. For operating
         * systems that use extensive caching, detection occurs only when the cache is sufficiently flushed.s
         */
        public static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008;
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

                c = "SMB_COM_NT_TRANSACT";
                break;
            case SMB_COM_NT_TRANSACT_SECONDARY:
                c = "SMB_COM_NT_TRANSACT_SECONDARY";
                break;
            case SMB_COM_LOCKING_ANDX:
                c = "SMB_COM_LOCKING_ANDX";
                break;
            default:
                c = "UNKNOWN";
            }
            String str = this.errorCode == 0 ? "0" : SmbException.getMessageByCode(this.errorCode);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * 
         * Property <tt>jcifs.netbios.cachePolicy</tt> in minutes (int, default 600)
         * 
         * @return netbios cache timeout, in seconds, 0 - disable caching, -1 - cache forever
         */
        int getNetbiosCachePolicy ();
    
    
        /**
         * 
         * @return the maximum size of IO buffers, limits the maximum message size
         */
        int getMaximumBufferSize ();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_MANUAL_CACHING = 0x0;
        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_AUTO_CACHING = 0x10;
        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_VDO_CACHING = 0x20;
    
        /**
         * 
         */
        public static final int SMB2_SHAREFLAG_DFS = 0x1;
        /**
         * 
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon May 23 14:35:20 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

                    // this is so damn unreliable, needs another race-prone query if required
                    haveAttributes = false;
    
                    // This seems to be the only way to obtain a reliable (with respect to locking) file size here
                    // It is more critical than other attributes because append mode depends on it.
                    // We do only really care if we open for writing and not shared for writing
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java

        static final int FILE_SYNCHRONOUS_IO_ALERT = 0x00000010;
        static final int FILE_SYNCHRONOUS_IO_NONALERT = 0x00000020;
    
        // security flags
        static final int SECURITY_CONTEXT_TRACKING = 0x01;
        static final int SECURITY_EFFECTIVE_ONLY = 0x02;
    
        private int rootDirectoryFid, extFileAttributes, shareAccess, createDisposition, createOptions, impersonationLevel;
        private long allocationSize;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/JAASAuthenticator.java

    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSException;
    
    
    /**
     * JAAS kerberos authenticator
     * 
     * Either configure JAAS for credential caching or reuse a single instance of this authenticator -otherwise you won't
     * get proper ticket caching.
     * 
     * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs/Realm.
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java

        static final int FILE_SYNCHRONOUS_IO_ALERT    = 0x00000010;
        static final int FILE_SYNCHRONOUS_IO_NONALERT = 0x00000020;
    
        // security flags
        static final int SECURITY_CONTEXT_TRACKING = 0x01;
        static final int SECURITY_EFFECTIVE_ONLY   = 0x02;
    
        private int rootDirectoryFid,
            extFileAttributes,
            shareAccess,
            createDisposition,
            createOptions,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 6.6K bytes
    - Viewed (0)
Back to top