search for: easiy

Displaying 2 results from an estimated 2 matches for "easiy".

Did you mean: easily
2007 Jan 08
1
[LLVMdev] reading, printing, compiling, JIT-ing LLVM modules?
...ork [on GCC]), -I'm dreaming of building an open-source Web CGI application capable of generating other CGIs- I would like to (portably) store an LLVM module in bytecode format inside a MySQL table row (probably inside a BLOB = mysql binary large object = big array of bytes). AFAIK, this could easiy be done with the llvm::Module::print function (into a memory ostream) -ie the print method of the Module class (portably) read (again, in the same format as above) an LLVM module in bytecode format from a MySQL table row (probably from a BLOB also) according to my understanding, the lvm::ParseByte...
2010 May 18
3
[PATCH] btrfs: should add a permission check for setfacl
On btrfs, do the following ------------------ # su user1 # cd btrfs-part/ # touch aaa # getfacl aaa # file: aaa # owner: user1 # group: user1 user::rw- group::rw- other::r-- # su user2 # cd btrfs-part/ # setfacl -m u::rwx aaa # getfacl aaa # file: aaa # owner: user1 # group: user1 user::rwx <- successed to setfacl group::rw- other::r-- ------------------ but we