Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Mount (0.12 sec)

  1. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean idleTimeoutDisabled = false;
        protected InetAddress smbLocalAddress;
        protected int smbLocalPort = 0;
        protected int maxMpxCount = SmbConstants.DEFAULT_MAX_MPX_COUNT;
        protected int smbSendBufferSize = SmbConstants.DEFAULT_SND_BUF_SIZE;
        protected int smbRecvBufferSize = SmbConstants.DEFAULT_RCV_BUF_SIZE;
        protected int smbNotifyBufferSize = SmbConstants.DEFAULT_NOTIFY_BUF_SIZE;
    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)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

                        this.session.release();
                    }
                }
            }
            else if ( usage < 0 ) {
                log.error("Usage count dropped below zero " + this);
                dumpResource();
                throw new RuntimeCIFSException("Usage count dropped below zero");
            }
        }
    
    
        /**
         * @param stackTrace
         * @return
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/PropertyConfiguration.java

            this.smbLocalAddress = Config.getLocalHost(p);
            this.smbLocalPort = Config.getInt(p, "jcifs.smb.client.lport", 0);
            this.maxMpxCount = Config.getInt(p, "jcifs.smb.client.maxMpxCount", SmbConstants.DEFAULT_MAX_MPX_COUNT);
            this.smbSendBufferSize = Config.getInt(p, "jcifs.smb.client.snd_buf_size", SmbConstants.DEFAULT_SND_BUF_SIZE);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         */
        int getPid ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.maxMpxCount</tt> (int, default 10)
         * 
         * @return maximum count of concurrent commands to announce
         */
        int getMaxMpxCount ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.signingPreferred</tt> (boolean, default false)
         * 
    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/netbios/NameServiceClientImpl.java

                    : this.transportContext.getConfig().getWinsServers()[ this.nbnsIndex ];
        }
    
        static class Sem {
    
            Sem ( int count ) {
                this.count = count;
            }
    
            int count;
        }
    
        static class QueryThread extends Thread {
    
            private Sem sem;
            private String host, scope;
            private int type;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top