Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 173 for hong (0.13 sec)

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

                finally {
                    f.delete();
                }
            }
        }
    
    
        @Test
        public void testCopyFile () throws IOException {
            int bufSize = 65536;
            long length = 4096 * 16;
            try ( SmbFile f = createTestFile() ) {
                try ( SmbFile d1 = createTestDirectory();
                      SmbFile t = new SmbFile(d1, makeRandomName()) ) {
                    try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:17:59 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2SetFileInformation.java

    class Trans2SetFileInformation extends SmbComTransaction {
    
        static final int SMB_FILE_BASIC_INFO = 0x101;
    
        private int fid;
        private int attributes;
        private long createTime, lastWriteTime;
    
        Trans2SetFileInformation( int fid, int attributes, long createTime, long lastWriteTime ) {
            this.fid = fid;
            this.attributes = attributes;
            this.createTime = createTime;
            this.lastWriteTime = lastWriteTime;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

        private int pathConsumed;
        private long ttl;
        private String server; // Server
        private String share; // Share
        private String link;
        private String path; // Path relative to tree from which this referral was thrown
    
        private long expiration;
        private int rflags;
    
        private boolean resolveHashes;
    
        private DfsReferralDataImpl next;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComSeekResponse.java

     * @author mbechler
     *
     */
    public class SmbComSeekResponse extends ServerMessageBlock {
    
        private long offset;
    
    
        /**
         * @param config
         */
        public SmbComSeekResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * @return the offset
         */
        public long getOffset () {
            return this.offset;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/fscc/FileInternalInfo.java

        private long indexNumber;
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.fscc.FileInformation#getFileInformationLevel()
         */
        @Override
        public byte getFileInformationLevel () {
            return FILE_INTERNAL_INFO;
        }
    
    
        /**
         * @return the indexNumber
         */
        public long getIndexNumber () {
            return this.indexNumber;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/BaseConfiguration.java

        protected String nativeOs;
        protected String nativeLanMan = "jCIFS";
        protected int vcNumber = 1;
        protected boolean dfsDisabled = false;
        protected long dfsTTL = 300;
        protected boolean dfsStrictView = false;
        protected boolean dfsConvertToFqdn;
        protected String logonShare;
        protected String defaultDomain;
        protected String defaultUserName;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  7. src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java

        private boolean sessionBinding;
        private long previousSessionId;
        private int securityMode;
    
    
        /**
         * @param context
         * @param securityMode
         * @param capabilities
         * @param previousSessionid
         * @param token
         */
        public Smb2SessionSetupRequest ( CIFSContext context, int securityMode, int capabilities, long previousSessionid, byte[] token ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java

        private byte[] fileId;
        private final byte[] outputBuffer;
        private final int outputBufferOffset;
        private byte padding;
        private byte readFlags;
        private int readLength;
        private long offset;
        private int minimumCount;
        private int channel;
        private int remainingBytes;
    
    
        /**
         * @param config
         * @param fileId
         * @param outputBuffer
         * @param outputBufferOffset
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int FLAGS_NOTIFY_OF_MODIFY_ACTION        = 0x40;
        static final int FLAGS_RESPONSE                       = 0x80;
    
        static final int FLAGS2_NONE                          = 0x0000;
        static final int FLAGS2_LONG_FILENAMES                = 0x0001;
        static final int FLAGS2_EXTENDED_ATTRIBUTES           = 0x0002;
        static final int FLAGS2_SECURITY_SIGNATURES           = 0x0004;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            (byte)0x00, (byte)0x00, (byte)0x00
        };
    
        static final class CacheEntry {
            Name hostName;
            NbtAddress address;
            long expiration;
    
            CacheEntry( Name hostName, NbtAddress address, long expiration ) {
                this.hostName = hostName;
                this.address = address;
                this.expiration = expiration;
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
Back to top