Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,758 for ulong (0.81 sec)

  1. src/main/java/jcifs/pac/PACDecodingException.java

     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     *
     * You should have received a copy of the GNU Lesser General Public
     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.pac;
    
    import jcifs.CIFSException;
    
    /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java

         */
        public void setOffset(final long offset) {
            this.offset = offset;
        }
    
        /**
         * Add RDMA channel information for direct memory access
         *
         * @param remoteKey remote memory key
         * @param address remote memory address
         * @param length length of memory region
         */
        public void addRdmaChannelInfo(int remoteKey, long address, int length) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbComReadAndX.java

        private long offset;
        private int fid;
    
        private final int openTimeout;
        int maxCount, minCount, remaining;
    
        SmbComReadAndX() {
            super(null);
            command = SMB_COM_READ_ANDX;
            openTimeout = 0xFFFFFFFF;
        }
    
        SmbComReadAndX(final int fid, final long offset, final int maxCount, final ServerMessageBlock andx) {
            super(andx);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/witness/WitnessRegistrationTest.java

            assertEquals(WitnessRegistration.WITNESS_REGISTER_IP_NOTIFICATION, registration.getFlags());
        }
    
        @Test
        void testSequenceNumbers() {
            long seq1 = registration.getNextSequenceNumber();
            long seq2 = registration.getNextSequenceNumber();
            long seq3 = registration.getNextSequenceNumber();
    
            assertEquals(1, seq1);
            assertEquals(2, seq2);
            assertEquals(3, seq3);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbFileHandle.java

     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     *
     * You should have received a copy of the GNU Lesser General Public
     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs;
    
    /**
     * Handle to an open file
     *
     * @author mbechler
     *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbCopyUtil.java

                    final long mtime = src.lastModified();
                    final long ctime = src.createTime();
                    final long atime = src.lastAccess();
                    int i = 0;
                    long off = 0L;
                    while (true) {
                        final int read = fis.read(b[i]);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/SocketInputStream.java

                        return tot;
                    }
                    return -1;
                }
            }
        }
    
        @Override
        public synchronized long skip(final long numbytes) throws IOException {
            if (numbytes <= 0) {
                return 0;
            }
            long n = numbytes;
            while (n > 0) {
                final int r = read(tmp, 0, (int) Math.min(TMP_BUFFER_SIZE, n));
                if (r < 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

         */
        public long getRequestsSent() {
            return requestsSent.get();
        }
    
        /**
         * Get number of requests received
         *
         * @return requests received
         */
        public long getRequestsReceived() {
            return requestsReceived.get();
        }
    
        /**
         * Get number of errors
         *
         * @return error count
         */
        public long getErrors() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

        }
    
        /**
         * @return the lastWriteTime
         */
        @Override
        public final long getLastWriteTime() {
            return this.lastWriteTime;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbBasicFileInfo#getCreateTime()
         */
        @Override
        public long getCreateTime() {
            return 0;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/LockingAndXRange.java

     *
     * @author mbechler
     */
    public class LockingAndXRange implements Encodable, Decodable {
    
        private final boolean largeFile;
        private int pid;
        private long byteOffset;
        private long lengthInBytes;
    
        /**
         * Constructs a LockingAndXRange with large file support.
         *
         * @param largeFile whether to use large file support (64-bit offsets)
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top