Displaying 4 results from an estimated 4 matches for "jni_createjavavm".
2017 Oct 27
1
javareconf issue
...VM.framework/Headers*
*detected JNI linker flags : -framework JavaVM*
*clang -I/Library/Frameworks/R.framework/Resources/include -DNDEBUG
-I/System/Library/Frameworks/JavaVM.framework/Headers -I/usr/local/include
-fPIC -Wall -g -O2 -c conftest.c -o conftest.o*
*conftest.c:4:5: warning: 'JNI_CreateJavaVM' is deprecated
[-Wdeprecated-declarations]*
* JNI_CreateJavaVM(0, 0, 0);*
* ^*
*/System/Library/Frameworks/JavaVM.framework/Headers/jni.h:1936:39: note:
'JNI_CreateJavaVM' has*
* been explicitly marked deprecated here*
*_JNI_IMPORT_OR_EXPORT_ __attribute__((deprecated))...
2009 Apr 05
1
RJava question(class not found with rJava's vm, though found with alternate vm)
...int i=0;
while (i<vms) {
if (jvms[i]) {
if (!(*jvms[i])->AttachCurrentThread(jvms[i], (void**)&jenv, NULL)) {
jvm=jvms[i];
break;
}
}
i++;
}
if (i==vms) error("Failed to attach to any existing JVM.");
}else {
JNI_CreateJavaVM(&jvm, (void **)&jenv, &args);
}
}
}
Saptarshi Guha
[[alternative HTML version deleted]]
2012 Aug 09
4
debug vs regular mode
Dear all,
I had a R segmentation fault, and then invoked debug mode and ran step
by step.
When I reached "terms(Y~X1*X2*...*X16)", I would then have
"segmentation" fault. However, if I just ran this under regular "R
interactive" mode, it would be fine though taking long time.
My questions are:
1. Is there a known limit of terms for a formula?
2. Why does the
2012 Aug 09
4
debug vs regular mode
Dear all,
I had a R segmentation fault, and then invoked debug mode and ran step
by step.
When I reached "terms(Y~X1*X2*...*X16)", I would then have
"segmentation" fault. However, if I just ran this under regular "R
interactive" mode, it would be fine though taking long time.
My questions are:
1. Is there a known limit of terms for a formula?
2. Why does the