Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0xF3 (0.05 sec)

  1. cmd/storage-datatypes_gen.go

    	o = append(o, 0x82, 0xa5, 0x46, 0x69, 0x6c, 0x65, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.Files)))
    	for za0001 := range z.Files {
    		o, err = z.Files[za0001].MarshalMsg(o)
    		if err != nil {
    			err = msgp.WrapError(err, "Files", za0001)
    			return
    		}
    	}
    	// string "IsTruncated"
    	o = append(o, 0xab, 0x49, 0x73, 0x54, 0x72, 0x75, 0x6e, 0x63, 0x61, 0x74, 0x65, 0x64)
    	o = msgp.AppendBool(o, z.IsTruncated)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 150.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * @see       java.io.File
     */
    
    public class SmbFile extends URLConnection implements SmbConstants {
    
        static final int O_RDONLY = 0x01;
        static final int O_WRONLY = 0x02;
        static final int O_RDWR   = 0x03;
        static final int O_APPEND = 0x04;
    
        // Open Function Encoding
        // create if the file does not exist
        static final int O_CREAT  = 0x0010;
        // fail if the file exists
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top