Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for OPEN_ALWAYS (0.12 sec)

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

        /* Create the file or fail if it does not exist
         * aka CREATE_NEW
         */
    
        static final int FILE_CREATE       = 0x2;
    
        /* Open the file or create it if it does not exist
         * aka OPEN_ALWAYS
         */
    
        static final int FILE_OPEN_IF      = 0x3;
    
        /* Open the file and overwrite it's contents or fail if it does not exist
         * aka TRUNCATE_EXISTING
         */
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java

        /*
         * Create the file or fail if it does not exist
         * aka CREATE_NEW
         */
    
        static final int FILE_CREATE = 0x2;
    
        /*
         * Open the file or create it if it does not exist
         * aka OPEN_ALWAYS
         */
    
        static final int FILE_OPEN_IF = 0x3;
    
        /*
         * Open the file and overwrite it's contents or fail if it does not exist
         * aka TRUNCATE_EXISTING
         */
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.2K bytes
    - Viewed (0)
  3. internal/lock/lock_windows.go

    	default:
    		return nil, fmt.Errorf("Unsupported flag (%d)", flag)
    	}
    
    	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)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (windows-386), const NameUniqueId ideal-int
    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
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (windows-386), const NameUniqueId = 6
    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
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top