- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for ignoreCopyToException (0.17 sec)
-
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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0)