Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RuntimeException (0.21 sec)

  1. src/test/java/jcifs/tests/ConcurrencyTest.java

                            }
                        }
                    }
                    this.completed = true;
                }
                catch (
                    IOException |
                    RuntimeException e ) {
                    log.error("Test case failed", e);
                }
            }
    
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:40:50 GMT 2021
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                return (T) createResp.getNextResponse();
            }
            catch (
                CIFSException |
                RuntimeException e ) {
                try {
                    // make sure that the handle is closed when one of the requests fails
                    Smb2CreateResponse createResp = cr.getResponse();
    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)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

            this( new URL( null, url, Handler.SMB_HANDLER ), auth );
            if ((shareAccess & ~(FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE)) != 0) {
                throw new RuntimeException( "Illegal shareAccess parameter" );
            }
            this.shareAccess = shareAccess;
        }
    /**
     * Constructs an SmbFile representing a resource on an SMB network such
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top