Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Undofile (0.22 sec)

  1. src/main/java/jcifs/internal/fscc/FileEndOfFileInformation.java

        public int encode ( byte[] dst, int dstIndex ) {
            SMBUtil.writeInt8(this.endOfFile, dst, dstIndex);
            return 8;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#toString()
         */
        @Override
        public String toString () {
            return new String("EndOfFileInformation[endOfFile=" + this.endOfFile + "]");
        }
    
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/fscc/FileStandardInfo.java

            return dstIndex - start;
        }
    
    
        @Override
        public String toString () {
            return new String(
                "SmbQueryInfoStandard[" + "allocationSize=" + this.allocationSize + ",endOfFile=" + this.endOfFile + ",numberOfLinks="
                        + this.numberOfLinks + ",deletePending=" + this.deletePending + ",directory=" + this.directory + "]");
        }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java

         * @return the allocationSize
         */
        public final long getAllocationSize () {
            return this.allocationSize;
        }
    
    
        /**
         * @return the endOfFile
         */
        public final long getEndOfFile () {
            return this.endOfFile;
        }
    
    
        /**
         * @return the fileId
         */
        public byte[] getFileId () {
            return this.fileId;
        }
    
    
        /**
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                    ",lastAccessTime=" + new Date( lastAccessTime ) +
                    ",lastWriteTime=" + new Date( lastWriteTime ) +
                    ",changeTime=" + new Date( changeTime ) +
                    ",endOfFile=" + endOfFile +
                    ",allocationSize=" + allocationSize +
                    ",extFileAttributes=" + extFileAttributes +
                    ",fileNameLength=" + fileNameLength +
                    ",eaSize=" + eaSize +
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

         * @return the allocationSize
         */
        public final long getAllocationSize () {
            return this.allocationSize;
        }
    
    
        /**
         * @return the endOfFile
         */
        public final long getEndOfFile () {
            return this.endOfFile;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbBasicFileInfo#getSize()
         */
        @Override
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java

                return 0L;
            }
            public long getSize() {
                return endOfFile;
            }
            public String toString() {
                return new String( "SmbQueryInfoStandard[" +
                    "allocationSize=" + allocationSize +
                    ",endOfFile=" + endOfFile +
                    ",numberOfLinks=" + numberOfLinks +
                    ",deletePending=" + deletePending +
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

                        + new Date(this.creationTime) + ",lastAccessTime=" + new Date(this.lastAccessTime) + ",lastWriteTime="
                        + new Date(this.lastWriteTime) + ",changeTime=" + new Date(this.changeTime) + ",endOfFile=" + this.endOfFile + ",allocationSize="
                        + this.allocationSize + ",extFileAttributes=" + this.extFileAttributes + ",eaSize=" + this.eaSize + ",shortName=" + this.shortName
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java

                ",changeTime=" + new Date( changeTime ) +
                ",extFileAttributes=0x" + Hexdump.toHexString( extFileAttributes, 4 ) +
                ",allocationSize=" + allocationSize +
                ",endOfFile=" + endOfFile +
                ",fileType=" + fileType +
                ",deviceState=" + deviceState +
                ",directory=" + directory + "]" );
        }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

         * @return the allocationSize
         */
        public final long getAllocationSize () {
            return this.allocationSize;
        }
    
    
        /**
         * @return the endOfFile
         */
        public final long getEndOfFile () {
            return this.endOfFile;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbBasicFileInfo#getSize()
         */
        @Override
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/fscc/FileInformation.java

    
    /**
     * @author mbechler
     *
     */
    public interface FileInformation extends Decodable, Encodable {
    
        // information levels
    
        /**
         * 
         */
        public static final byte FILE_ENDOFFILE_INFO = 20;
    
        /**
         * 
         */
        public static final byte FILE_BASIC_INFO = 0x4;
        /**
         * 
         */
        public static final byte FILE_STANDARD_INFO = 0x5;
    
        /**
         * 
         */
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.4K bytes
    - Viewed (0)
Back to top