Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for getNtStatus (0.05 sec)

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

                        dest.setPathInformation(attributes, createTime, lastModified);
                    } catch (final SmbException se) {
                        if (se.getNtStatus() != NtStatus.NT_STATUS_ACCESS_DENIED
                                && se.getNtStatus() != NtStatus.NT_STATUS_OBJECT_NAME_COLLISION) {
                            throw se;
                        }
                    }
                }
    
    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/smb/SIDCacheImpl.java

                        resolveSids(handle, policyHandle, sids);
                    }
                } catch (final SmbException e) {
                    if (e.getNtStatus() == NtStatus.NT_STATUS_INVALID_PARAMETER) {
                        // Silently ignore invalid parameter errors - these may occur with certain server configurations
                        if (log.isDebugEnabled()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbRandomAccessFile.java

                            final Smb2ReadResponse resp = th.send(request, RequestParam.NO_RETRY);
                            n = resp.getDataLength();
                        } catch (final SmbException e) {
                            if (e.getNtStatus() != 0xC0000011) {
                                throw e;
                            }
                            log.debug("Reached end of file", e);
                            n = -1;
                        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 18.8K bytes
    - Viewed (0)
Back to top