Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for cloneOf (0.15 sec)

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

                }
                catch ( Exception e ) {
                    throw new CIFSException("Failed to refresh credentials", e);
                }
            }
    
    
            @Override
            public Kerb5Authenticator clone () {
                Kerb5Authenticator auth = new RefreshableKerb5Authenticator(getSubject(), getUserDomain(), getUser(), getPassword());
                cloneInternal(auth, this);
                return auth;
            }
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 11.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/MD4.java

            this();
            context = (int[])md.context.clone();
            buffer = (byte[])md.buffer.clone();
            count = md.count;
        }
    
    
    // Cloneable method implementation
    //...........................................................................
    
        /**
         * Returns a copy of this MD object.
         */
        public Object clone() { return new MD4(this); }
    
    
    // JCE methods
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/JAASAuthenticator.java

        public boolean isGuest () {
            return false;
        }
    
    
        @Override
        public Kerb5Authenticator clone () {
            JAASAuthenticator auth = new JAASAuthenticator();
            cloneInternal(auth, this);
            return auth;
        }
    
    
        /**
         * Clone the context
         * 
         * @param to
         * @param from
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/Pac.java

        private PacSignature serverSignature;
        private PacSignature kdcSignature;
    
    
        public Pac ( byte[] data, Map<Integer, KerberosKey> keys ) throws PACDecodingException {
            byte[] checksumData = data.clone();
            try {
                PacDataInputStream pacStream = new PacDataInputStream(new DataInputStream(new ByteArrayInputStream(data)));
    
                if ( data.length <= 8 )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/Config.java

        public static void load( InputStream in ) throws IOException {
            if( in != null ) {
                prp.load( in );
            }
            try {
                prp.putAll( (java.util.Map)System.getProperties().clone() );
            } catch( SecurityException se ) {
                if( log.level > 1 )
                    log.println( "SecurityException: jcifs.smb1 will ignore System properties" );
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            this.ctx = ctx;
            this.url = u;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#clone()
         */
        @Override
        protected SmbResourceLocatorImpl clone () {
            SmbResourceLocatorImpl loc = new SmbResourceLocatorImpl(this.ctx, this.url);
            loc.canon = this.canon;
            loc.share = this.share;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbSessionImpl.java

            this.targetHost = targetHost;
            this.transport = transport.acquire();
            this.trees = new ArrayList<>();
            this.credentials = tf.getCredentials().unwrap(CredentialsInternal.class).clone();
        }
    
    
        /**
         * @return the configuration used by this session
         */
        @Override
        public final Configuration getConfig () {
            return this.transportContext.getConfig();
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top