Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for attrExpirationPeriod (0.1 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

        static long attrExpirationPeriod;
        static boolean ignoreCopyToException;
    
        static {
    
            try {
                Class.forName("jcifs.smb1.Config");
            } catch (final ClassNotFoundException cnfe) {
                logger.error("Failed to load jcifs.smb1.Config class", cnfe);
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NetworkExplorer.java

            String name;
    
            final Properties p = new Properties();
            p.putAll(System.getProperties());
            p.setProperty("jcifs.smb.client.soTimeout", "600000");
            p.setProperty("jcifs.smb.client.attrExpirationPeriod", "300000");
    
            final Enumeration<String> e = getInitParameterNames();
            while (e.hasMoreElements()) {
                name = e.nextElement();
                if (name.startsWith("jcifs.")) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            final byte[] buf = new byte[1024];
            int n, level;
            String name;
    
            Config.setProperty("jcifs.smb1.smb.client.soTimeout", "600000");
            Config.setProperty("jcifs.smb1.smb.client.attrExpirationPeriod", "300000");
    
            final Enumeration e = getInitParameterNames();
            while (e.hasMoreElements()) {
                name = (String) e.nextElement();
                if (name.startsWith("jcifs.smb1.")) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         *
         * @return maximum data size for list/info requests (known overhead is subtracted)
         */
        int getListSize();
    
        /**
         *
         *
         * Property {@code jcifs.smb.client.attrExpirationPeriod} (int, 5000)
         *
         * @return timeout of file attribute cache
         */
        long getAttributeCacheTimeout();
    
        /**
         *
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top