Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for convention (0.18 sec)

  1. src/main/java/jcifs/http/NetworkExplorer.java

                    }
                }
                catch ( SmbAuthException sae ) {
                    log.warn("Auth failed", sae);
                }
                catch ( SmbException se ) {
                    log.warn("Connection failed", se);
                    if ( se.getNtStatus() != NtStatus.NT_STATUS_UNSUCCESSFUL ) {
                        throw se;
                    }
                }
                if ( dirents[ i ].isDirectory() ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbNamedPipe.java

         * operator <code>|</code>. See the examples listed above.
         * 
         * @param url
         * @param pipeType
         * @param unshared
         *            whether to use an exclusive connection for this pipe
         * @param tc
         * @throws MalformedURLException
         */
    
        public SmbNamedPipe ( String url, int pipeType, boolean unshared, CIFSContext tc ) throws MalformedURLException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         */
        int getSoTimeout ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.connTimeout</tt> (int, default 35000)
         * 
         * @return timeout for establishing a socket connection, in milliseconds
         */
        int getConnTimeout ();
    
    
        /**
         * Property <tt>jcifs.smb.client.sessionTimeout</tt> (int, default 35000)
         * 
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                    if (offerBasic) {
                        resp.addHeader( "WWW-Authenticate", "Basic realm=\"" + realm + "\"");
                    }
                    resp.setHeader( "Connection", "close" );
                    resp.setStatus( HttpServletResponse.SC_UNAUTHORIZED );
                    resp.flushBuffer();
                    return;
                }
            }
    
            try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 22 03:57:31 GMT 2020
    - 19.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportImpl.java

            catch ( IOException ioe ) {
                throw new SmbException(ioe.getMessage(), ioe);
            }
            SmbNegotiationResponse r = this.negotiated;
            if ( r == null ) {
                throw new SmbException("Connection did not complete, failed to get negotiation response");
            }
            return r;
        }
    
    
        /**
         * @return whether this is SMB2 transport
         * @throws SmbException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                        break;
                    case -1:
                        disconnect( true );
                        throw new NbtException( NbtException.ERR_SSN_SRVC,
                                NbtException.CONNECTION_REFUSED );
                    default:
                        disconnect( true );
                        throw new NbtException( NbtException.ERR_SSN_SRVC, 0 );
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

                throw new MalformedURLException("Name must not be empty");
            }
            return name;
        }
    
    
        /**
         * @param nonPooled
         *            whether this file will use an exclusive connection
         */
        protected void setNonPooled ( boolean nonPooled ) {
            this.treeConnection.setNonPooled(nonPooled);
        }
    
    
        /**
         * @return the transportContext
         */
        @Deprecated
    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)
  8. src/main/java/jcifs/SmbTransportPool.java

    
        /**
         * Get transport connection
         * 
         * @param tc
         *            context to use
         * @param address
         * @param port
         * @param exclusive
         *            whether to acquire an unshared connection
         * @param forceSigning
         *            whether to enforce SMB signing on this connection
         * @return a transport connection to the target
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 09:02:44 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                        if ( forceSigning && !conn.isSigningEnforced() ) {
                            // if signing is enforced and was not on the connection, skip
                            if ( log.isTraceEnabled() ) {
                                log.debug("Cannot reuse, signing enforced but connection does not have it enabled " + conn);
                            }
                            continue;
                        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 12.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTreeConnection.java

            }
        }
    
    
        /**
         * Use a exclusive connection for this tree
         * 
         * If an exclusive connection is used the caller must make sure that the tree handle is kept alive,
         * otherwise the connection will be disconnected once the usage drops to zero.
         * 
         * @param np
         *            whether to use an exclusive connection
         */
        void setNonPooled ( boolean np ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
Back to top