Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for atTotal (0.18 sec)

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

                        i = i == 1 ? 0 : 1;
                        off += read;
                    }
    
                    if ( log.isDebugEnabled() ) {
                        log.debug(String.format("Copied a total of %d bytes", off));
                    }
    
                    if ( dh.isSMB2() ) {
                        Smb2SetInfoRequest req = new Smb2SetInfoRequest(dh.getConfig(), dfd.getFileId());
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/fscc/FileFsFullSizeInformation.java

         */
        @Override
        public int decode ( byte[] buffer, int bufferIndex, int len ) throws SMBProtocolDecodingException {
            int start = bufferIndex;
    
            // Read total allocation units.
            this.alloc = SMBUtil.readInt8(buffer, bufferIndex);
            bufferIndex += 8;
    
            // read caller available allocation units
            this.free = SMBUtil.readInt8(buffer, bufferIndex);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.7K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/internal/AllocInfo.java

    
    import jcifs.internal.fscc.FileSystemInformation;
    
    
    /**
     * 
     * @author mbechler
     *
     */
    public interface AllocInfo extends FileSystemInformation {
    
        /**
         * 
         * @return total capacity
         */
        long getCapacity ();
    
    
        /**
         * 
         * @return free space
         */
        long getFree ();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponse.java

        int readFsFullSizeInformationWireFormat( byte[] buffer, int bufferIndex )
        {
            int start = bufferIndex;
            
            SmbInfoAllocation info = new SmbInfoAllocation();
            
            // Read total allocation units.
            info.alloc = readInt8( buffer, bufferIndex );
            bufferIndex += 8;
            
            // read caller available allocation units 
            info.free = readInt8( buffer, bufferIndex );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
    
            attrExpiration = sizeExpiration = 0;
        }
    
    /**
     * Returns the length of this <tt>SmbFile</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: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top