Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Howard (0.19 sec)

  1. src/main/java/jcifs/Configuration.java

    import java.util.List;
    import java.util.TimeZone;
    
    
    /**
     * 
     * 
     * Implementors of this interface should extend {@link jcifs.config.BaseConfiguration} or
     * {@link jcifs.config.DelegatingConfiguration} to get forward compatibility.
     * 
     * @author mbechler
     *
     */
    public interface Configuration {
    
        /**
         * 
         * @return random source to use
         */
        SecureRandom getRandom ();
    
    
        /**
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                            sbuf[7] == (byte)'B') {
                    break; /* all good */
                }
                                            /* out of phase maybe? */
                              /* inch forward 1 byte and try again */
                for (int i = 0; i < 35; i++) {
                    sbuf[i] = sbuf[i + 1];
                }
                int b;
                if ((b = in.read()) == -1) return null;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

                        && this.sbuf[ 6 ] == (byte) 'M' && this.sbuf[ 7 ] == (byte) 'B' ) {
                    break; /* all good (SMB) */
                }
    
                /* out of phase maybe? */
                /* inch forward 1 byte and try again */
                for ( int i = 0; i < 35; i++ ) {
                    log.warn("Possibly out of phase, trying to resync " + Hexdump.toHexString(this.sbuf, 0, 16));
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

         */
    
        public String getPath () {
            return this.fileLocator.getPath();
        }
    
    
        /**
         * Returns the Windows UNC style path with backslashes instead of forward slashes.
         *
         * @return The UNC path.
         */
        public String getCanonicalUncPath () {
            return this.fileLocator.getCanonicalURL();
        }
    
    
        /**
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

                } else {
                    share = null;
                    unc = "\\";
                }
            }
            return unc;
        }
    /**
     * Retuns the Windows UNC style path with backslashs intead of forward slashes.
     *
     * @return  The UNC path.
     */
        public String getUncPath() {
            getUncPath0();
            if( share == null ) {
                return "\\\\" + url.getHost();
            }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  6. src/main/java/jcifs/CIFSContext.java

     * allow to create such sub-contexts.
     * 
     * 
     * Implementors of this interface should extend {@link jcifs.context.BaseContext} or
     * {@link jcifs.context.CIFSContextWrapper} to get forward compatibility.
     * 
     * @author mbechler
     *
     */
    public interface CIFSContext {
    
        /**
         * Get a resource
         * 
         * @param url
         * @return the SMB resource at the specified location
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.7K bytes
    - Viewed (0)
Back to top