Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for cloneInternal (0.24 sec)

  1. src/main/java/jcifs/smb/Kerb5Authenticator.java

            cloneInternal(auth, this);
            return auth;
        }
    
    
        /**
         * Clone the context
         * 
         * @param to
         * @param from
         */
        public static void cloneInternal ( Kerb5Authenticator to, Kerb5Authenticator from ) {
            NtlmPasswordAuthenticator.cloneInternal(to, from);
            to.setUser(from.getUser());
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/JAASAuthenticator.java

            JAASAuthenticator auth = new JAASAuthenticator();
            cloneInternal(auth, this);
            return auth;
        }
    
    
        /**
         * Clone the context
         * 
         * @param to
         * @param from
         */
        protected static void cloneInternal ( JAASAuthenticator to, JAASAuthenticator from ) {
            Kerb5Authenticator.cloneInternal(to, from);
            to.serviceName = from.serviceName;
    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)
  3. src/main/java/jcifs/smb/NtlmNtHashAuthenticator.java

            return this.ntHash;
        }
    
    
        @Override
        public NtlmPasswordAuthenticator clone () {
            NtlmNtHashAuthenticator cloned = new NtlmNtHashAuthenticator(this.ntHash.clone());
            cloneInternal(cloned, this);
            return cloned;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

        public NtlmPasswordAuthentication clone () {
            NtlmPasswordAuthentication cloned = new NtlmPasswordAuthentication();
            cloneInternal(cloned, this);
            return cloned;
        }
    
    
        /**
         * @param to
         * @param from
         */
        protected static void cloneInternal ( NtlmPasswordAuthentication to, NtlmPasswordAuthentication from ) {
            to.context = from.context;
            if ( from.hashesExternal ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 8.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

        }
    
    
        @Override
        public NtlmPasswordAuthenticator clone () {
            NtlmPasswordAuthenticator cloned = new NtlmPasswordAuthenticator();
            cloneInternal(cloned, this);
            return cloned;
        }
    
    
        protected static void cloneInternal ( NtlmPasswordAuthenticator cloned, NtlmPasswordAuthenticator toClone ) {
            cloned.domain = toClone.domain;
            cloned.username = toClone.username;
    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/test/java/jcifs/tests/KerberosTest.java

    
            @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)
  7. src/main/java/jcifs/smb/SmbFileHandleImpl.java

         */
        @Override
        public synchronized void close ( long lastWriteTime ) throws CIFSException {
            closeInternal(lastWriteTime, true);
        }
    
    
        /**
         * @param lastWriteTime
         * @throws SmbException
         */
        void closeInternal ( long lastWriteTime, boolean explicit ) throws CIFSException {
            SmbTreeHandleImpl t = this.tree;
            try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

        errorException: IOException?,
      ) {
        if (!closeInternal(rstStatusCode, errorException)) {
          return // Already closed.
        }
        connection.writeSynReset(id, rstStatusCode)
      }
    
      /**
       * Abnormally terminate this stream. This enqueues a `RST_STREAM` frame and returns immediately.
       */
      fun closeLater(errorCode: ErrorCode) {
        if (!closeInternal(errorCode, null)) {
          return // Already closed.
        }
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 23.2K bytes
    - Viewed (1)
Back to top