search for: aaaabbbb

Displaying 4 results from an estimated 4 matches for "aaaabbbb".

Did you mean: aaabbb
2020 Nov 21
0
Cannot delete (empty) folder from Mac client
...17 ._mydir.doc > drwxrwx--- 2 root domain_users 512 Nov 19 10:51 mydir.doc > # ls -l /shares/myshare/mydir.doc > total 0 (Notice no ACLs are set) On the client: > $ ls -le /Volumes/ > drwx------+ 1 user2 XXXXXXXX\Domain Users 16384 Nov 19 15:10 myshare > 0: AAAABBBB-CCCC-DDDD-EEEE-FFFF82000000 allow list,add_file,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr,writeextattr,readsecurity,writesecurity,chown > 1: group:XXXXXXXX\Domain Users allow list,add_file,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextatt...
2006 Jan 10
1
[LLVMdev] Re: passmanager, significant rework idea...
...bottom up. > > Instead of this, it would be better to have a CallGraphSCCPassBatcher > thing, that is added to the ModulePass. Given this, for each function, > bottom up, we can pipeline between then two passes. This gives us the > nice ABABABAB ordering instead of AAAABBBB ordering which is nice for > cache behavior of the compiler. Yup, interleaving would be far more efficient. > 2) Once 1) is implemented, if a Module PassManager currently has a > "CallGraphSCCPassBatcher" active, it makes sense to use a new batcher > for the func...
2006 Jan 10
0
[LLVMdev] passmanager, significant rework idea...
...second on each function bottom up. Instead of this, it would be better to have a CallGraphSCCPassBatcher thing, that is added to the ModulePass. Given this, for each function, bottom up, we can pipeline between then two passes. This gives us the nice ABABABAB ordering instead of AAAABBBB ordering which is nice for cache behavior of the compiler. 2) Once 1) is implemented, if a Module PassManager currently has a "CallGraphSCCPassBatcher" active, it makes sense to use a new batcher for the function passes. Since we don't need to run them in any specifi...
2006 Jan 10
3
[LLVMdev] passmanager, significant rework idea...
The patch below basically hammers out some ideas as to where I'd like to take the passmanager in LLVM. I've tried thinking things through, but I'm still a n00b, so some criticism would be more than welcome. =) Starting from line 191 down. If you're wondering why I created a patch, well that's because I found thinking in passmanagert.h the most productive. -- Regards.