- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for OPEN_EXISTING (0.19 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
// create disposition /* Creates a new file or supersedes the existing one */ static final int FILE_SUPERSEDE = 0x0; /* Open the file or fail if it does not exist * aka OPEN_EXISTING */ static final int FILE_OPEN = 0x1; /* Create the file or fail if it does not exist * aka CREATE_NEW */ static final int FILE_CREATE = 0x2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java
/* * Creates a new file or supersedes the existing one */ static final int FILE_SUPERSEDE = 0x0; /* * Open the file or fail if it does not exist * aka OPEN_EXISTING */ static final int FILE_OPEN = 0x1; /* * Create the file or fail if it does not exist * aka CREATE_NEW */ static final int FILE_CREATE = 0x2; /*
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.2K bytes - Viewed (0) -
internal/lock/lock_windows.go
} var createflag uint32 switch { case flag&syscall.O_CREAT == syscall.O_CREAT: createflag = syscall.OPEN_ALWAYS default: createflag = syscall.OPEN_EXISTING } shareflag := uint32(syscall.FILE_SHARE_READ | syscall.FILE_SHARE_WRITE | syscall.FILE_SHARE_DELETE) accessAttr := uint32(syscall.FILE_ATTRIBUTE_NORMAL | 0x80000000)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Oct 18 18:08:15 UTC 2023 - 7.9K bytes - Viewed (0) -
api/go1.txt
pkg syscall (windows-386), const NameUnknown ideal-int pkg syscall (windows-386), const NameUserPrincipal ideal-int pkg syscall (windows-386), const OPEN_ALWAYS ideal-int pkg syscall (windows-386), const OPEN_EXISTING ideal-int pkg syscall (windows-386), const PAGE_EXECUTE_READ ideal-int pkg syscall (windows-386), const PAGE_EXECUTE_READWRITE ideal-int pkg syscall (windows-386), const PAGE_EXECUTE_WRITECOPY ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
api/go1.1.txt
pkg syscall (windows-386), const NameUnknown = 0 pkg syscall (windows-386), const NameUserPrincipal = 8 pkg syscall (windows-386), const OPEN_ALWAYS = 4 pkg syscall (windows-386), const OPEN_EXISTING = 3 pkg syscall (windows-386), const O_APPEND = 1024 pkg syscall (windows-386), const O_ASYNC = 8192 pkg syscall (windows-386), const O_CLOEXEC = 524288 pkg syscall (windows-386), const O_CREAT = 64
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Mar 31 20:37:15 UTC 2022 - 2.6M bytes - Viewed (0)