Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Representations (0.25 sec)

  1. src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java

            System.arraycopy(src, 0, dest, bodyOffset, length);
        }
    
        static String getOEMEncoding() {
            return OEM_ENCODING;
        }
    
        /**
         * Returns the raw byte representation of this message.
         *
         * @return A <code>byte[]</code> containing the raw message material.
         */
        public abstract byte[] toByteArray();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/NtlmMessage.java

                return src.length;
            }
            return 0;
        }
    
    
        static String getOEMEncoding () {
            return OEM_ENCODING;
        }
    
    
        /**
         * Returns the raw byte representation of this message.
         *
         * @return A <code>byte[]</code> containing the raw message material.
         * @throws IOException
         */
        public abstract byte[] toByteArray () throws IOException;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/UniAddress.java

            }
            else if ( this.getClass().isAssignableFrom(type) ) {
                return (T) this;
            }
            return null;
        }
    
    
        /**
         * Return the a text representation of this address such as
         * <tt>MYCOMPUTER/192.168.1.15</tt>.
         */
        @Override
        public String toString () {
            return this.addr.toString();
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/UniAddress.java

            if( addr instanceof NbtAddress ) {
                return ((NbtAddress)addr).getHostAddress();
            }
            return ((InetAddress)addr).getHostAddress();
        }
    
        /**
         * Return the a text representation of this address such as
         * <tt>MYCOMPUTER/192.168.1.15</tt>.
         */
        public String toString() {
            return addr.toString();
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    */
    
    /**
     * Returns the string representation of this SmbFile object. This will
     * be the same as the URL used to construct this <code>SmbFile</code>.
     * This method will return the same value
     * as <code>getPath</code>.
     *
     * @return  The original URL representation of this SMB resource
     * @throws SmbException
     */
    
        public String toString() {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top