Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for TRUNCATE_EXISTING (0.23 sec)

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

         * 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
         */
    
        static final int FILE_OVERWRITE    = 0x4;
    
        /* Open the file and overwrite it's contents or create it if it does not exist
         * aka CREATE_ALWAYS (according to the wire when calling CreateFile)
    Registered: Wed Jun 12 15:45:55 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

         * 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
         */
    
        static final int FILE_OVERWRITE = 0x4;
    
        /*
         * Open the file and overwrite it's contents or create it if it does not exist
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/MoreFiles.java

       * StandardOpenOption} for the standard options that may be provided. Providing no options is
       * equivalent to providing the {@link StandardOpenOption#CREATE CREATE}, {@link
       * StandardOpenOption#TRUNCATE_EXISTING TRUNCATE_EXISTING} and {@link StandardOpenOption#WRITE
       * WRITE} options.
       */
      public static ByteSink asByteSink(Path path, OpenOption... options) {
        return new PathByteSink(path, options);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  4. src/syscall/types_windows.go

    	FILE_ATTRIBUTE_REPARSE_POINT = 0x00000400
    
    	INVALID_FILE_ATTRIBUTES = 0xffffffff
    
    	CREATE_NEW        = 1
    	CREATE_ALWAYS     = 2
    	OPEN_EXISTING     = 3
    	OPEN_ALWAYS       = 4
    	TRUNCATE_EXISTING = 5
    
    	FILE_FLAG_OPEN_REPARSE_POINT = 0x00200000
    	FILE_FLAG_BACKUP_SEMANTICS   = 0x02000000
    	FILE_FLAG_OVERLAPPED         = 0x40000000
    
    	HANDLE_FLAG_INHERIT    = 0x00000001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    	case mode&(O_CREAT|O_TRUNC) == (O_CREAT | O_TRUNC):
    		createmode = CREATE_ALWAYS
    	case mode&O_CREAT == O_CREAT:
    		createmode = OPEN_ALWAYS
    	case mode&O_TRUNC == O_TRUNC:
    		createmode = TRUNCATE_EXISTING
    	default:
    		createmode = OPEN_EXISTING
    	}
    	var attrs uint32 = FILE_ATTRIBUTE_NORMAL
    	if perm&S_IWRITE == 0 {
    		attrs = FILE_ATTRIBUTE_READONLY
    		if createmode == CREATE_ALWAYS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FILE_ATTRIBUTE_RECALL_ON_DATA_ACCESS = 0x00400000
    
    	INVALID_FILE_ATTRIBUTES = 0xffffffff
    
    	CREATE_NEW        = 1
    	CREATE_ALWAYS     = 2
    	OPEN_EXISTING     = 3
    	OPEN_ALWAYS       = 4
    	TRUNCATE_EXISTING = 5
    
    	FILE_FLAG_OPEN_REQUIRING_OPLOCK = 0x00040000
    	FILE_FLAG_FIRST_PIPE_INSTANCE   = 0x00080000
    	FILE_FLAG_OPEN_NO_RECALL        = 0x00100000
    	FILE_FLAG_OPEN_REPARSE_POINT    = 0x00200000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	case mode&(O_CREAT|O_TRUNC) == (O_CREAT | O_TRUNC):
    		createmode = CREATE_ALWAYS
    	case mode&O_CREAT == O_CREAT:
    		createmode = OPEN_ALWAYS
    	case mode&O_TRUNC == O_TRUNC:
    		createmode = TRUNCATE_EXISTING
    	default:
    		createmode = OPEN_EXISTING
    	}
    	var attrs uint32 = FILE_ATTRIBUTE_NORMAL
    	if perm&S_IWRITE == 0 {
    		attrs = FILE_ATTRIBUTE_READONLY
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TOKEN_IMPERSONATE", Const, 0},
    		{"TOKEN_QUERY", Const, 0},
    		{"TOKEN_QUERY_SOURCE", Const, 0},
    		{"TOKEN_READ", Const, 0},
    		{"TOKEN_WRITE", Const, 0},
    		{"TOSTOP", Const, 0},
    		{"TRUNCATE_EXISTING", Const, 0},
    		{"TUNATTACHFILTER", Const, 0},
    		{"TUNDETACHFILTER", Const, 0},
    		{"TUNGETFEATURES", Const, 0},
    		{"TUNGETIFF", Const, 0},
    		{"TUNGETSNDBUF", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg syscall (windows-386), const TOKEN_QUERY_SOURCE ideal-int
    pkg syscall (windows-386), const TOKEN_READ ideal-int
    pkg syscall (windows-386), const TOKEN_WRITE ideal-int
    pkg syscall (windows-386), const TRUNCATE_EXISTING ideal-int
    pkg syscall (windows-386), const TokenAccessInformation ideal-int
    pkg syscall (windows-386), const TokenAuditPolicy ideal-int
    pkg syscall (windows-386), const TokenDefaultDacl ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg syscall (windows-386), const TOKEN_QUERY_SOURCE = 16
    pkg syscall (windows-386), const TOKEN_READ = 131080
    pkg syscall (windows-386), const TOKEN_WRITE = 131296
    pkg syscall (windows-386), const TRUNCATE_EXISTING = 5
    pkg syscall (windows-386), const TokenAccessInformation = 22
    pkg syscall (windows-386), const TokenAuditPolicy = 16
    pkg syscall (windows-386), const TokenDefaultDacl = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top