search for: textconsole

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

2009 Mar 30
0
Problem in S4 object displaying from within a Java application using JRI
...;Creating Rengine (with arguments)"); // 1) we pass the arguments from the command line // 2) we won't use the main loop at first, we'll start it later // (that's the "false" as second argument) // 3) the callbacks are implemented by the TextConsole class above Rengine re = new Rengine(args, false, new TextConsole()); System.out.println("Rengine created, waiting for R"); // the engine creates R is a new thread, so we should wait until it's ready if (!re.waitForR()) { System.out.println(...
2011 Mar 24
0
JRI execution problem
Dear All I don't know is this right place to ask this question. I made one program in R environment and now I need to call that program from the from the java application using JRI package. I tried in both eclipse and java compiler but the Rengine re = new Rengine(args, false, new TextConsole()); is not executing in both systems. Eclipse shows *<terminated>rtest [java application] ....jre6\bin\javaw.exe.* but in java compiler it is not showing any message instead it stop running. I have to finish my work soon, If u can give any solution Or suitable place to post my question tha...
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...validate(); - } + ds->surface = qemu_resize_displaysurface(ds->surface, s->g_width, + s->g_height, 32, 4 * s->g_width); + dpy_resize(s->ds); + vga_hw_invalidate(); } } @@ -1121,15 +1117,6 @@ { TextConsole *s = (TextConsole *) opaque; - if (s->g_width != ds_get_width(s->ds) || s->g_height != ds_get_height(s->ds)) { - if (s->console_type == TEXT_CONSOLE_FIXED_SIZE) - dpy_resize(s->ds, s->g_width, s->g_height); - else { - s->g_width =...
2006 Sep 28
2
calling R from within Java, using jri
Hi, I want to call R from within Java, using jri as per http://www.rosuda.org/software/jri/ So I am following the instructions in the README file for JRI 0.2-4. I have run 'sh configure.win' and 'make' and they seemed to be successful. (See below for the output from make, for example.) But when I try 'run.bat rtest' (with and without R command line arguments) the output