Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for overwrite (0.51 sec)

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

            }
            return null;
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.DfsResolver#isTrustedDomain(jcifs.CIFSContext, java.lang.String)
         */
        @Override
        public boolean isTrustedDomain ( CIFSContext tf, String domain ) throws SmbAuthException {
            synchronized ( this.domainsLock ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/context/BaseContext.java

         */
        @Override
        public SmbPipeResource getPipe ( String url, int pipeType ) throws CIFSException {
            try {
                return new SmbNamedPipe(url, pipeType, this);
            }
            catch ( MalformedURLException e ) {
                throw new CIFSException("Invalid URL " + url, e);
            }
        }
    
    
        @Override
        public SmbTransportPool getTransportPool () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 27 18:25:00 GMT 2022
    - 5.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/EnumTest.java

            CIFSContext ctx = withConfig(bctx, new DelegatingConfiguration(bctx.getConfig()) {
    
                @Override
                public List<ResolverType> getResolveOrder () {
                    return Arrays.asList(ResolverType.RESOLVER_WINS);
                }
            });
    
            // need to override NameServiceClient as it otherwise gets initialized with the original config
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/spnego/NegTokenInit.java

            this.mechanisms = mechanisms;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#toString()
         */
        @Override
        public String toString () {
            String mic = null;
            if ( this.getMechanismListMIC() != null ) {
                mic = Hexdump.toHexString(this.getMechanismListMIC(), 0, this.getMechanismListMIC().length);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

            return this.getContext();
        }
    
    
        @Override
        public CIFSContext getContext () {
            return this.transportContext;
        }
    
    
        @Override
        public SmbResourceLocator getLocator () {
            return this.fileLocator;
        }
    
    
        @Override
        public SmbResource resolve ( String name ) throws CIFSException {
            try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/BaseConfiguration.java

            }
        }
    
    
        @Override
        public SecureRandom getRandom () {
            return this.random;
        }
    
    
        @Override
        public String getNetbiosHostname () {
            return this.netbiosHostname;
        }
    
    
        @Override
        public InetAddress getLocalAddr () {
            return this.smbLocalAddress;
        }
    
    
        @Override
        public int getLocalPort () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

            return this.sessions.size();
        }
    
    
        @Override
        public int getInflightRequests () {
            return this.response_map.size();
        }
    
    
        @Override
        public boolean isDisconnected () {
            Socket s = this.socket;
            return super.isDisconnected() || s == null || s.isClosed();
        }
    
    
        @Override
        public boolean isFailed () {
            Socket s = this.socket;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTreeImpl.java

            return this.treeNum;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#hashCode()
         */
        @Override
        public int hashCode () {
            return this.share.hashCode() + 7 * this.service.hashCode();
        }
    
    
        @Override
        public <T extends CommonServerMessageBlockResponse> T send ( jcifs.internal.Request<T> request, RequestParam... params ) throws CIFSException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        }
    
    
        @Override
        public NbtAddress getNbtByName ( String host ) throws UnknownHostException {
            return getNbtByName(host, 0x00, null);
        }
    
    
        @Override
        public NbtAddress getNbtByName ( String host, int type, String scope ) throws UnknownHostException {
            return getNbtByName(host, type, scope, null);
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

         *
         * @see jcifs.internal.smb1.ServerMessageBlock#getNext()
         */
        @Override
        public ServerMessageBlock getNext () {
            return this.andx;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockResponse#getNextResponse()
         */
        @Override
        public ServerMessageBlock getNextResponse () {
            return this.andx;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
Back to top