Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for ttl (0.12 sec)

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

    
            CacheEntry ( long ttl ) {
                this.expiration = System.currentTimeMillis() + ttl * 1000L;
                this.map = new ConcurrentHashMap<>();
            }
        }
    
        private static class NegativeCacheEntry <T> extends CacheEntry<T> {
    
            /**
             * @param ttl
             */
            NegativeCacheEntry ( long ttl ) {
                super(ttl);
            }
    
        }
    
    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/internal/dfs/DfsReferralDataImpl.java

                    + ",path=" + this.path + ",ttl=" + this.ttl + ",expiration=" + this.expiration + ",remain="
                    + ( this.expiration - System.currentTimeMillis() ) + "]";
        }
    
    
        /**
         * @return the ttl
         */
        public long getTtl () {
            return this.ttl;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServicePacket.java

                        + ",recordType=" + recordTypeString + ",recordClass="
                        + ( this.recordClass == IN ? "IN" : "0x" + Hexdump.toHexString(this.recordClass, 4) ) + ",ttl=" + this.ttl + ",rDataLength="
                        + this.rDataLength);
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

                return new String( "Referral[" +
                    "version=" + version + ",size=" + size +
                    ",serverType=" + serverType + ",flags=" + flags +
                    ",proximity=" + proximity + ",ttl=" + ttl +
                    ",pathOffset=" + pathOffset + ",altPathOffset=" + altPathOffset +
                    ",nodeOffset=" + nodeOffset + ",path=" + path + ",altPath=" + altPath +
                    ",node=" + node + "]" );
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

                    ",recordType=" + recordTypeString +
                    ",recordClass=" + ( recordClass == IN ? "IN" :
                                "0x" + Hexdump.toHexString( recordClass, 4 )) +
                    ",ttl=" + ttl +
                    ",rDataLength=" + rDataLength );
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/dfs/Referral.java

        }
    
    
        /**
         * @return the altPath
         */
        public final String getAltPath () {
            return this.altPath;
        }
    
    
        /**
         * @return the ttl
         */
        public final int getTtl () {
            return this.ttl;
        }
    
    
        /**
         * @return the rpath
         */
        public final String getRpath () {
            return this.rpath;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/DfsReferral.java

            return "DfsReferral[pathConsumed=" + pathConsumed +
                ",server=" + server +
                ",share=" + share +
                ",link=" + link +
                ",path=" + path +
                ",ttl=" + ttl +
                ",expiration=" + expiration +
                ",resolveHashes=" + resolveHashes + "]";
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/Dfs.java

    import java.io.*;
    
    public class Dfs {
    
        static class CacheEntry {
            long expiration;
            HashMap map;
    
            CacheEntry(long ttl) {
                if (ttl == 0)
                    ttl = Dfs.TTL;
                expiration = System.currentTimeMillis() + ttl * 1000L;
                map = new HashMap();
            }
        }
    
        static LogStream log = LogStream.getInstance();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            long expiration = System.currentTimeMillis() + Dfs.TTL * 1000;
    
            int di = 0;
            for ( ;; ) {
                            /* NTLM HTTP Authentication must be re-negotiated
                             * with challenge from 'server' to access DFS vol. */
                dr.resolveHashes = auth.hashesExternal;
                dr.ttl = resp.referrals[di].ttl;
                dr.expiration = expiration;
    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. pom.xml

    				<configuration>
    					<includes>
    						<include>**/**Test.java</include>
    					</includes>
    					<systemPropertyVariables>
    						<networkaddress.cache.ttl>-1</networkaddress.cache.ttl>
    						<networkaddress.cache.negative.ttl>-1</networkaddress.cache.negative.ttl>
    					</systemPropertyVariables>
    					<properties>
    						<property>
    							<name>listener</name>
    							<value>jcifs.tests.PrintingRunListener</value>
    XML
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 04 13:19:42 GMT 2024
    - 9.3K bytes
    - Viewed (1)
Back to top