Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for nulla (0.16 sec)

  1. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.dfs.DfsReferralDataInternal#replaceCache()
         */
        @Override
        public void replaceCache () {
            if ( this.map != null && this.key != null ) {
                this.map.put(this.key, this);
            }
        }
    
    
        @Override
        public DfsReferralDataImpl next () {
            return this.next;
        }
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServicePacket.java

            case A:
                recordTypeString = "A";
                break;
            case NS:
                recordTypeString = "NS";
                break;
            case NULL:
                recordTypeString = "NULL";
                break;
            case NB:
                recordTypeString = "NB";
                break;
            case NBSTAT:
                recordTypeString = "NBSTAT";
                break;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            if ( this.createContexts == null || this.createContexts.length == 0 ) {
                SMBUtil.writeInt4(0, dst, createContextOffsetOffset);
            }
            else {
                SMBUtil.writeInt4(dstIndex - getHeaderStart(), dst, createContextOffsetOffset);
            }
            int totalCreateContextLength = 0;
            if ( this.createContexts != null ) {
                int lastStart = -1;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 09:52:11 GMT 2019
    - 14.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/FileLocationTest.java

             */
            @Override
            public String getDomain () {
                return null;
            }
    
    
            /**
             * {@inheritDoc}
             *
             * @see jcifs.DfsReferralData#getLink()
             */
            @Override
            public String getLink () {
                return null;
            }
    
    
            /**
             * {@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)
  5. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                user = userInfo.substring(u, i);
            }
    
            this.domain = dom != null ? dom : ( defDomain != null ? defDomain : "" );
            this.username = user != null ? user : ( defUser != null ? defUser : "" );
            this.password = pass != null ? pass : ( defPassword != null ? defPassword : "" );
    
            if ( type == null ) {
                this.type = guessAuthenticationType();
            }
            else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

            return "Type2Message[target=" + target +
                ",challenge=" + (challenge == null ? "null" : "<" + challenge.length + " bytes>") +
                ",context=" + (context == null ? "null" : "<" + context.length + " bytes>") +
                ",targetInformation=" + (targetInformation == null ? "null" : "<" + targetInformation.length + " bytes>") +
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                        break;
                    }
                }
                if ( this.authMethod == null )
                    return null;
                NtlmMessage message = ( authorization != null ) ? new Type2Message(Base64.decode(authorization)) : null;
                reconnect();
                if ( message == null ) {
                    message = new Type1Message(this.transportContext);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SID.java

                sids[si].origin_server = null;
                sids[si].origin_auth = null;
            }
        }
        static void resolveSids0(String authorityServerName,
                    NtlmPasswordAuthentication auth,
                    SID[] sids) throws IOException {
            DcerpcHandle handle = null;
            LsaPolicyHandle policyHandle = null;
    
    synchronized (sid_cache) {
            try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                    digest == null &&
                    auth != NtlmPasswordAuthentication.NULL &&
                    NtlmPasswordAuthentication.NULL.equals( auth ) == false;
        }
    
        void ssn139() throws IOException {
            Name calledName = new Name( address.firstCalledName(), 0x20, null );
            do {
    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)
  10. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

                _dst.enc_ndr_referent(stores, 1);
    
                if (path != null) {
                    _dst = _dst.deferred;
                    _dst.enc_ndr_string(path);
    
                }
                if (comment != null) {
                    _dst = _dst.deferred;
                    _dst.enc_ndr_string(comment);
    
                }
                if (stores != null) {
                    _dst = _dst.deferred;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 15K bytes
    - Viewed (0)
Back to top