Displaying 15 results from an estimated 15 matches for "jchecks".
Did you mean:
checks
2009 Feb 25
3
[LLVMdev] [PATCH] Parallelized make check
...t; site.tmp
@-rm -f site.bak
@test ! -f site.exp || mv site.exp site.bak
@mv site.tmp site.exp
+
+#===------------------------------------------------------------------------===#
+# Parallelized check support
+#===------------------------------------------------------------------------===#
+
+JCHECKS :=
+JLOG := jrun.log
+JTESTLIST := testlist.jcheck
+
+Makefile.jcheck:
+ @$(ECHO) "Creating list of tests to run... "
+ @$(RM) -f $(SITE_EXP) $(JTESTLIST)
+ @$(MAKE) check LISTTESTS=$(JTESTLIST) &>/dev/null
+ @$(RM) -f $(SITE_EXP)
+ @$(ECHO) "JCHECKS := \\" > $@...
2009 Feb 26
1
[LLVMdev] [PATCH] Parallelized make check
...t; site.tmp
@-rm -f site.bak
@test ! -f site.exp || mv site.exp site.bak
@mv site.tmp site.exp
+
+#===------------------------------------------------------------------------===#
+# Parallelized check support
+#===------------------------------------------------------------------------===#
+
+JCHECKS :=
+JLOG := jtestrun.log
+JTESTLIST := testlist.jcheck
+
+Makefile.jcheck:
+ @$(ECHO) "Creating list of tests to run... "
+ @$(RM) -f site.exp $(JTESTLIST)
+ @$(MAKE) check LISTTESTS=$(JTESTLIST) &>/dev/null
+ @$(RM) -f site.exp
+ @$(SED) 's,$(PROJ_SRC_ROOT)/test/*\(.*\)...
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
On Wed, Feb 25, 2009 at 10:26:02AM -0800, Chris Lattner wrote:
>
> On Feb 24, 2009, at 10:03 PM, Julien Lerouge wrote:
>
> > On Tue, Feb 24, 2009 at 06:24:17PM -0800, Julien Lerouge wrote:
> >> I haven't tested with objdir != srcdir.
> >
> > Ok, that was broken. Attached is a smaller diff that should work in
> > all
> > cases.
>
> This
2009 Feb 25
2
[LLVMdev] [PATCH] Parallelized make check
On Feb 24, 2009, at 10:03 PM, Julien Lerouge wrote:
> On Tue, Feb 24, 2009 at 06:24:17PM -0800, Julien Lerouge wrote:
>> I haven't tested with objdir != srcdir.
>
> Ok, that was broken. Attached is a smaller diff that should work in
> all
> cases.
This sounds really cool Julien! Two questions: 1) does it preserve
the checking that the existing tcl stuff does, which
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
...t; site.tmp
@-rm -f site.bak
@test ! -f site.exp || mv site.exp site.bak
@mv site.tmp site.exp
+
+#===------------------------------------------------------------------------===#
+# Parallelized check support
+#===------------------------------------------------------------------------===#
+
+JCHECKS :=
+JLOG := jrun.log
+JTESTLIST := testlist.jcheck
+
+Makefile.jcheck:
+ @$(ECHO) "Creating list of tests to run... "
+ @$(RM) -f site.exp $(JTESTLIST)
+ @$(MAKE) check LISTTESTS=$(JTESTLIST) &>/dev/null
+ @$(RM) -f site.exp
+ @$(SED) 's,$(PROJ_SRC_ROOT)/test/*\(.*\),\1....
2013 Sep 06
1
Java exception error (Jcheck) while running an R script
Dear all,
I am facing a problem with running a script that i have written in R and i hope
you can help me spot which exactly is the problem and how i can solve it.
The error I get is the following:
----
Error in .jcheck(silent = FALSE) :
Java Exception <no description because toString() failed>.jcall(row[[ir]],
"Lorg/apache/poi/ss/usermodel/Cell;", "createCell",
2009 Jul 28
1
Problem runnin rSymPy
Hi all,
I'm having major difficulty using the rSymPy package this week, but I have
used it without problems before now. Here is an example of what's happening:
> library(rSymPy)
Loading required package: rJava
> sympy("var('a b c d')")
Error in .jcheck() : No running detected. Maybe .jinit() would help.
And I have no idea how to fix it. I Have tried re-installing
2012 Oct 30
2
Java Exception error while reading large data in R from DB using RJDBC.
Dear List,
Java Exception error while reading large data in R from DB using RJDBC.
I am trying to read large data from DB table(Vectorwise), using RJDBC
connection.
I have tested the connection with small size data and was able to fetch DB
tables using same connection(conn as in my code).
Please suggest where am i going wrong or alternate option to solve such
issues while reading large DB
2012 Oct 04
1
Intermittent connectivity issues for JDBC / Oracle
I have been experiencing issues with an R script hanging when connecting to
an Oracle database. To help debug, I found a function here in the nabble
forum and made a small test script:
#!/usr/bin/Rscript --no-restore --no-save --no-init-file
library("RJDBC")
drv<-JDBC("oracle.jdbc.OracleDriver","/home/oracle/lib/ojdbc6.jar", "'")
dbCheck =
2016 Jul 26
3
Exportar datos en formato de Excel
Hola.
En mi caso, no he podido resolver los problemas con el Java para usar
XLConnect, que en los papeles me parece el mejor. Supongo que algo de la
arquitectura del sistema o bien de la relación entre el Java, el R y el
RStudio.
Así que utilizo
library(openxlsx)
write.xlsx(datos, file = "EDA1.xlsx") #donde datos es el objeto que quiero
guardar.
Requiere instalar el RTools, según tipo y
2012 Jan 06
0
rJava System.out / System.err & stacktraces
Hi,
Is there any way to initialize rJava so it can print System.out and
System.err to console? Also, is there any way to see stack traces? Otherwise
we're limited to just seeing:
> .jcall(machine, "V", "Build")
> .jcheck()
Error: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
which doesn't tell me much about the problem nor where the problem occurred
in
2013 Mar 19
0
Eror : OutOfMemoryError (Java): Java heap space
Hi,
i want to create xlsx sheet, all things seems to be perfect until this erro
message
Erreur : OutOfMemoryError (Java): Java heap space
i have xp system, (32bit)
I tried the following syntax
> options(java.parameters = "-Xmx1000m")
> options(java.parameters = "-Xms=3670K")
> writeWorksheet(wb, SP, sheet = "SP")
alos this one
options(java.parameters =
2016 Jul 26
7
Exportar datos en formato de Excel
Buenos días a todos!
Estoy trabajando con una base de datos que directamente he descargado de
internet y después de prepararla un poco necesito exportarla a Excel he
intentando con las dos opciones que mencionaré al final pero ninguna
funciona, de qué otra manera puedo exportar esos datos a Excel... muchas
gracias por su ayuda y pronta respuesta!
1)
library(xlsx)
library(rJava)
2007 Jan 31
0
Fwd: Unable to load rJava - Undefined Symbol GetCreatedJavaVMs
Could some pls help with this error message. Pls see below
thanks
Rupak
---------- Forwarded message ----------
From: Rupak Khurana <khurana.rupak@gmail.com>
Date: Jan 31, 2007 2:46 PM
Subject: Unable to load rJava - Undefined Symbol GetCreatedJavaVMs
To: simon.urbanek@r-project.org
Simon
I am unable to load rJava. Pls see the log below. Any help is welcome and
appreciated.
thanks
2009 Jul 15
2
rJava fails compilation on R-2.9.1 but not R-2.7.1 on Debian Lenny
I have been futzing around for days tying to get rJava to install on
my freshly build Debian Lenny installation. I have R-2.9.1 installed
from source in my R_HOME directory and R-2.7.1 installed via apt-get
install r-recommended. I was tried many different things, but by
accident started up R-2.7.1 as root and viola, successful install. I
immediately exited out of R-2.7.1 and started R-2.9.1 as