Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getSendBufferSize (0.34 sec)

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

        }
    
    
        /**
         * @param th
         * @throws SmbException
         */
        protected final void init ( SmbTreeHandleImpl th ) throws CIFSException {
            int sendBufferSize = th.getSendBufferSize();
            if ( this.smb2 ) {
                this.writeSize = sendBufferSize;
                this.writeSizeFile = sendBufferSize;
                return;
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt

      }
    
      @Throws(SocketException::class)
      override fun getReceiveBufferSize(): Int {
        return delegate!!.receiveBufferSize
      }
    
      @Throws(SocketException::class)
      override fun getSendBufferSize(): Int {
        return delegate!!.sendBufferSize
      }
    
      @Throws(SocketException::class)
      override fun getSoTimeout(): Int {
        return delegate!!.soTimeout
      }
    
      @Throws(SocketException::class)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            return this.smbSocketTimeout;
        }
    
    
        @Override
        public int getSessionTimeout () {
            return this.smbSessionTimeout;
        }
    
    
        @Override
        public int getSendBufferSize () {
            return this.smbSendBufferSize;
        }
    
    
        @Deprecated
        @Override
        public int getRecieveBufferSize () {
            return this.smbRecvBufferSize;
        }
    
    
    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)
  4. src/main/java/jcifs/Configuration.java

        int getReceiveBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.snd_buf_size</tt> (int, default 65535)
         * 
         * @return send buffer size, in bytes
         */
        int getSendBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.soTimeout</tt> (int, default 35000)
         * 
         * @return socket timeout, in milliseconds
         */
        int getSoTimeout ();
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

                w.setDaemon(true);
    
                try {
                    w.start();
                    // use commonly acceptable buffer size
                    int bsize = Math.min(sh.getReceiveBufferSize() - 70, dh.getSendBufferSize() - 70);
                    byte[][] b = new byte[2][bsize];
                    copyRecursive(dest, b, bsize, w, sh, dh);
                }
                finally {
                    w.write(null, -1, null);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top