Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ignoreCopyToException (0.29 sec)

  1. src/main/java/jcifs/config/PropertyConfiguration.java

            this.smbAttributeExpiration = Config.getLong(p, "jcifs.smb.client.attrExpirationPeriod", 5000L);
            this.ignoreCopyToException = Config.getBoolean(p, "jcifs.smb.client.ignoreCopyToException", false);
            this.broadcastAddress = Config.getInetAddress(p, "jcifs.netbios.baddr", null);
    
            this.traceResourceUsage = Config.getBoolean(p, "jcifs.traceResources", false);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        protected int bufferCacheSize = 16;
        protected int smbListSize = 65435;
        protected int smbListCount = 200;
        protected long smbAttributeExpiration = 5000L;
        protected boolean ignoreCopyToException = false;
        protected int maxRequestRetries = 2;
        protected boolean traceResourceUsage;
        protected boolean strictResourceLifecycle;
        protected Set<String> disallowCompound;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return timeout of file attribute cache
         */
        long getAttributeCacheTimeout ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.ignoreCopyToException</tt> (boolean, false)
         * 
         * @return whether to ignore exceptions that occur during file copy
         */
        boolean isIgnoreCopyToException ();
    
    
        /**
         * @param cmd
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            ignoreCopyToException = Config.getBoolean( "jcifs.smb1.smb.client.ignoreCopyToException", true );
            dfs = new Dfs();
        }
    
        /**
         * Returned by {@link #getType()} if the resource this <tt>SmbFile</tt>
         * represents is a regular file or directory.
         */
        public static final int TYPE_FILESYSTEM = 0x01;
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top