Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 184 for type (0.14 sec)

  1. src/test/java/jcifs/tests/FileLocationTest.java

             * @see jcifs.DfsReferralData#unwrap(java.lang.Class)
             */
            @SuppressWarnings ( "unchecked" )
            @Override
            public <T extends DfsReferralData> T unwrap ( Class<T> type ) {
                if ( type.isAssignableFrom(this.getClass()) ) {
                    return (T) this;
                }
                throw new ClassCastException();
            }
    
    
            /**
             * {@inheritDoc}
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 13:16:07 GMT 2020
    - 23K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * signifies no scope.
     *
     * @param host the name to resolve
     * @param type the hex code of the name
     * @param scope the scope of the name
     * @throws java.net.UnknownHostException if there is an error resolving the name
     */
    
        public static NbtAddress getByName( String host,
                                            int type,
                                            String scope )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Context.java

                throw new SmbException("ExtendedGSSContext support not available from JRE");
            }
            else if ( EXT_GSS_CONTEXT_CLASS.isAssignableFrom(this.gssContext.getClass()) ) {
                try {
                    Key k = (Key) INQUIRE_SEC_CONTEXT.invoke(this.gssContext, new Object[] {
                        INQUIRE_TYPE_SESSION_KEY
                    });
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/Name.java

                    dst[dstIndex + ( 2 * i + 1 )] = (byte)0x43;
                    dst[dstIndex + ( 2 * i + 2 )] = (byte)0x41;
                }
                dst[dstIndex + TYPE_OFFSET] = (byte)((( hexCode & 0xF0 ) >> 4 ) + 0x41 );
                dst[dstIndex + TYPE_OFFSET + 1] = (byte)(( hexCode & 0x0F ) + 0x41 );
            } catch( UnsupportedEncodingException uee ) {
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

        }
        public static class ShareInfo1 extends NdrObject {
    
            public String netname;
            public int type;
            public String remark;
    
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
                _dst.enc_ndr_referent(netname, 1);
                _dst.enc_ndr_long(type);
                _dst.enc_ndr_referent(remark, 1);
    
                if (netname != null) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 18.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/TransactNamedPipeInputStream.java

                    MalformedURLException, UnknownHostException {
            super( pipe, ( pipe.pipeType & 0xFFFF00FF ) | SmbFile.O_EXCL );
            this.dcePipe = ( pipe.pipeType & SmbNamedPipe.PIPE_TYPE_DCE_TRANSACT ) != SmbNamedPipe.PIPE_TYPE_DCE_TRANSACT;
            lock = new Object();
        }
        public int read() throws IOException {
            int result = -1;
    
            synchronized( lock ) {
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/NetbiosName.java

        /**
         * @return the name
         */
        String getName ();
    
    
        /**
         * @return the scope id
         */
        String getScope ();
    
    
        /**
         * @return the name type
         */
        int getNameType ();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/SessionRetargetResponsePacket.java

    package jcifs.netbios;
    
    
    import java.io.IOException;
    import java.io.InputStream;
    
    
    class SessionRetargetResponsePacket extends SessionServicePacket {
    
        SessionRetargetResponsePacket () {
            this.type = SESSION_RETARGET_RESPONSE;
            this.length = 6;
        }
    
    
        @Override
        int writeTrailerWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/SessionRequestPacket.java

        /**
         * 
         * @param config
         * @param calledName
         * @param callingName
         */
        public SessionRequestPacket ( Configuration config, NetbiosName calledName, NetbiosName callingName ) {
            this.type = SESSION_REQUEST;
            this.calledName = new Name(config, calledName);
            this.callingName = new Name(config, callingName);
        }
    
    
        @Override
        int writeTrailerWireFormat ( byte[] dst, int dstIndex ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

         * {@inheritDoc}
         *
         * @see jcifs.DfsReferralData#unwrap(java.lang.Class)
         */
        @SuppressWarnings ( "unchecked" )
        @Override
        public <T extends DfsReferralData> T unwrap ( Class<T> type ) {
            if ( type.isAssignableFrom(this.getClass()) ) {
                return (T) this;
            }
            throw new ClassCastException();
        }
    
    
        @Override
        public long getExpiration () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
Back to top