search for: registerobject

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

2014 Mar 25
3
[LLVMdev] Getting the Debugging JIT-ed Code with GDB example to work
I'm trying to run the example described at: http://llvm.org/docs/DebuggingJITedCode.html I followed the sample command line session (below, with versions numbers for everything), but gdb doesn't stop at the breakpoints as described. Any idea what is wrong? Thanks, Zach zdevito at derp:~/terra/tests$ > ~/clang+llvm-3.4-x86_64-unknown-ubuntu12.04/bin/clang -cc1 -O0 -g >
2006 Apr 17
0
doing synchronous JSON on rails
...t;> 2) add the json object to the page: <jsp:useBean id="JSONRPCBridge" scope="session class="com.metaparadigm.jsonrpc.JSONRPCBridge" /> 3) in the jsp, register a json object as an object that can be called from the javascript of the page <% JSONRPCBridge.registerObject("myTestObject", aTestObject); %> 4) Register the JSON Servlet 5) Then call the function either async: jsonrpc.myTestObject.myFunction(myCallBack, "hello"); or sync: var result = jsonrpc.myTestObject.myFunction("hello"); alert(result); I woul...