Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 0x96 (0.13 sec)

  1. cmd/data-usage-cache_gen.go

    		return
    	}
    	err = en.WriteTime(z.LastUpdate)
    	if err != nil {
    		err = msgp.WrapError(err, "LastUpdate")
    		return
    	}
    	// write "SkipHealing"
    	err = en.Append(0xab, 0x53, 0x6b, 0x69, 0x70, 0x48, 0x65, 0x61, 0x6c, 0x69, 0x6e, 0x67)
    	if err != nil {
    		return
    	}
    	err = en.WriteBool(z.SkipHealing)
    	if err != nil {
    		err = msgp.WrapError(err, "SkipHealing")
    		return
    	}
    	return
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 100.8K bytes
    - Viewed (0)
  2. cmd/storage-datatypes_gen.go

    	// string "Bucket"
    	o = append(o, 0x87, 0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74)
    	o = msgp.AppendString(o, z.Bucket)
    	// string "Prefix"
    	o = append(o, 0xa6, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78)
    	o = msgp.AppendString(o, z.Prefix)
    	// string "File"
    	o = append(o, 0xa4, 0x46, 0x69, 0x6c, 0x65)
    	o = msgp.AppendString(o, z.File)
    	// string "Exists"
    	o = append(o, 0xa6, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

    SmbComNTCreateAndX request = new SmbComNTCreateAndX( unc, flags, access, shareAccess, attrs, options, null );
    if (this instanceof SmbNamedPipe) {
        request.flags0 |= 0x16;
        request.desiredAccess |= 0x20000;
        response.isExtended = true;
    }
                send( request, response );
                f = response.fid;
                attributes = response.extFileAttributes & ATTR_GET_MASK;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top