Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dispoem (0.17 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

                } finally {
                    latch.countDown();
                    Thread.currentThread().setContextClassLoader(old);
                }
            }
        }
    
        @Override
        public void dispose() {
            if (executor instanceof ExecutorService) {
                ((ExecutorService) executor).shutdownNow();
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 24.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/Kerb5Context.java

                log.debug("Failed to get info", e);
                return super.toString();
            }
        }
    
    
        @Override
        public void dispose () throws SmbException {
            if ( this.gssContext != null ) {
                try {
                    this.gssContext.dispose();
                }
                catch ( GSSException e ) {
                    throw new SmbException("Context disposal failed", e);
                }
            }
    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)
  3. src/main/java/jcifs/smb/NtlmContext.java

                }
                throw new CIFSException("Invalid MIC");
            }
    
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#dispose()
         */
        @Override
        public void dispose () throws SmbException {
            this.isEstablished = false;
            this.sealClientHandle = null;
            this.sealServerHandle = null;
            this.sealClientKey = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SpnegoContext.java

        @Override
        public String toString () {
            return "SPNEGO[" + this.mechContext + "]";
        }
    
    
        /**
         * 
         */
        @Override
        public void dispose () throws CIFSException {
            this.mechContext.dispose();
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
Back to top