search for: makign

Displaying 6 results from an estimated 6 matches for "makign".

2010 Jun 09
1
makign help files by hand
Can someone tell me how to make up (eg) a library's html help files by hand? I think I ought to be able to use RCMD Rdconv for this but (R-2.10.0, MS-win) when I type (in a dos session) "rdcmd rdconv --help" I get a message to the effect that a perl script rdconv can't be opened. Can I do this from within R itself? And if so, how (in particular, what is the target file to
2005 Mar 14
2
emulating courier imap
...vate { separator = . prefix = inbox = yes hidden = yes } but dovecot doesn't appear to be honoring "hidden" - am I missing something? (that is, all my folders appear twice- one under INBOX, the other under root) I tried without the second segment, and makign the first one "inbox=yes" - but then I got two inboxes... -- Internet Connection High Quality Web Hosting http://www.internetconnection.net/
2006 Aug 04
3
<img onclick> vs link_to_remote()
In one of my view , I have an image the user need to click to close a <div>selections</div> added by an Ajax call. if I use : <img src ="/images/icon_closeitem.gif", size="16*16", border="0",alt="Close Selection", title="Close", onclick="<%= remote_function(:url => { :controller => ''property'',
2011 Dec 06
3
[LLVMdev] tbaa
...to alias pointed-to variables of other types IE int * does not point to a float. The above TBAA info generated by clang is "conservatively correct" (it misses that float ** can't point to int *, and there is a FIXME about this in the source, which correctly states the real issue in makign this work), but still does not explain his may-alias situation, because when clang compiled it, the tbaa tag assigned to float would not match the tbaa tag assigned to the int. For a test program, void foo(float *); void bar(int *); int main() { int x=0; int* p=&x; int* q=&x; bar(p)...
2011 Dec 05
0
[LLVMdev] tbaa
Hi Yi, I didn't get a chance to run your code. But from the debug information you posted about tbaa alias analysis: Alias Set Tracker: 1 alias sets for 7 pointer values. AliasSet[0x207f860, 7] may alias, Mod/Ref Pointers: (i32* %1, 4), (i32* %x, 4), (i32** %p, 8), (i32** %q, 8), (float* %z, 4), (float** %t, 8), (i32* %2, 4) I guess it is because of the way how TBAA alias analysis treats
2011 Dec 05
2
[LLVMdev] tbaa
Duncan Sands <baldrick <at> free.fr> writes: > > Hi Yi, > > > Could anyone tell me how exactly do I use "Type Based Alias Analysis"? > > > > I compiled the C program with Clang, and verified that there is tbaa > > metadata in the IR code. > > > > But then when I use "opt -tbaa input.c.bc -aa-eval" to check the results,