Displaying 20 results from an estimated 600 matches similar to: "CentOS 4.1 - 'Older' JVM Issues"
2006 Jan 04
2
JAVA Issue - JDK 1.4 - Cent OS 4.2
Hi
Trying to run up a JVM on a box thats running 4.2 - The JDK version is
j2sdk1.4.2_03 and the exact error is below
Unable to load native library: /opt/j2sdk1.4.0/jre/lib/i386/libjava.so:
symbol __libc_waitpid, version GLIBC_2.0 not defined in file libc.so.6
with link time
reference
any ideas
thanks
2005 Jul 27
1
unable to source a .R file using RJava
I am unable to source a ".R" file using RJava. I tried a couple of different tests:
1) using java and the evaluation method core dumps
2) using ./RJava --example --gui-none to invoke source core dumps.
3) The line of R works if I go directly thru R and not RJava.
Version info and code are below. Any help would be appreciated.
--Laura O'Brien
Applications
2017 Dec 13
3
match and new columns
Hi all,
I have a data frame
tdat <- read.table(textConnection("A B C Y
A12 B03 C04 0.70
A23 B05 C06 0.05
A14 B06 C07 1.20
A25 A23 A12 3.51
A16 A25 A14 2,16"),header = TRUE)
I want match tdat$B with tdat$A and populate the column values of tdat$A
( col A and Col B) in the newly created columns (col D and col E). please
find my attempt and the desired output below
Desired output
2005 Jul 19
1
Trying to compile, incompatible libraries? Cento4
I get the errors:
zip4_lnx.a(generic.o)(.text+0xb16): more undefined references to
`__ctype_b' follow
zip4_lnx.a(libdl.so): undefined reference to `_dl_close at GLIBC_2.0'
zip4_lnx.a(libdl.so): undefined reference to `_dl_catch_error at GLIBC_2.0'
zip4_lnx.a(libdl.so): undefined reference to `_dl_addr at GLIBC_2.0'
zip4_lnx.a(libdl.so): undefined reference to
2017 Dec 13
2
match and new columns
Thank you Rui,
I did not get the desired result. Here is the output from your script
A B C Y D E
1 A12 B03 C04 0.70 0 0
2 A23 B05 C06 0.05 0 0
3 A14 B06 C07 1.20 0 0
4 A25 A23 A12 3.51 1 1
5 A16 A25 A14 2,16 4 4
On Wed, Dec 13, 2017 at 4:36 PM, Rui Barradas <ruipbarradas at sapo.pt> wrote:
> Hello,
>
> Here is one way.
>
> tdat$D <- ifelse(tdat$B %in% tdat$A,
2008 Apr 23
4
[LLVMdev] Error trying to build llvm-gcc
Hi,
I was trying to build llvm-gcc by following the instructions as given in
this webpage : http://llvm.org/docs/GCCFEBuildInstrs.html
on Ubuntu 7.10. At step 5 (make ENABLE_OPTIMIZED=0), I am getting make
errors:
make[2]: Leaving directory
`/home/pprabhu/llvm/llvm-objects/i686-pc-linux-gnu/libjava'
/home/pprabhu/llvm/llvm-objects/gcc/gcj
-B/home/pprabhu/llvm/llvm-objects/gcc/
2008 Apr 23
0
[LLVMdev] Error trying to build llvm-gcc
Prakash Prabhu wrote:
> Hi,
>
> I was trying to build llvm-gcc by following the instructions as given
> in this webpage : http://llvm.org/docs/GCCFEBuildInstrs.html
> on Ubuntu 7.10. At step 5 (make ENABLE_OPTIMIZED=0), I am getting make
> errors:
>
> make[2]: Leaving directory
> `/home/pprabhu/llvm/llvm-objects/i686-pc-linux-gnu/libjava'
>
2017 Dec 14
1
match and new columns
Hi Bill,
I put stringsAsFactors = FALSE
still did not work.
tdat <- read.table(textConnection("A B C Y
A12 B03 C04 0.70
A23 B05 C06 0.05
A14 B06 C07 1.20
A25 A23 A12 3.51
A16 A25 A14 2,16"),header = TRUE ,stringsAsFactors = FALSE)
tdat$D <- 0
tdat$E <- 0
tdat$D <- (ifelse(tdat$B %in% tdat$A, tdat$A[tdat$B], 0))
tdat$E <- (ifelse(tdat$B %in% tdat$A, tdat$A[tdat$C], 0))
2017 Dec 14
0
match and new columns
Use the stringsAsFactors=FALSE argument to read.table when
making your data.frame - factors are getting in your way here.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Wed, Dec 13, 2017 at 3:02 PM, Val <valkremk at gmail.com> wrote:
> Thank you Rui,
> I did not get the desired result. Here is the output from your script
>
> A B C Y D E
> 1 A12 B03 C04 0.70 0 0
2001 Oct 17
3
libraries Problem
Hi all
l'm new linux and wine user and wanted to use wine several times but
everytime l've had some problems.This time l wanted to install wine from rpm
but some libraries is needed by wine
l think that l have them but wine isn't working well
my system is
RedHat 7.1 on an i686 kernel 2-4-2.2
wine need tose l have them those path
library folder
ld-linux.so.2
2005 Aug 14
5
RPM SPEC rebuild errors
Hello All,
I have been trying all afternoon to rebuild the Samba RPM for my Fedora
3 with the MySQL passdb support and from what I can see it only needs
the inclusion of "--with-expsam=mysql" in the SPEC file in addition to
the regular ones.
The problem is that no matter what version of Samba I try to rebuild, it
always gice an error at the same place:
2017 Dec 13
0
match and new columns
Hello,
Here is one way.
tdat$D <- ifelse(tdat$B %in% tdat$A, tdat$A[tdat$B], 0)
tdat$E <- ifelse(tdat$B %in% tdat$A, tdat$A[tdat$C], 0)
Hope this helps,
Rui Barradas
On 12/13/2017 9:36 PM, Val wrote:
> Hi all,
>
> I have a data frame
> tdat <- read.table(textConnection("A B C Y
> A12 B03 C04 0.70
> A23 B05 C06 0.05
> A14 B06 C07 1.20
> A25 A23 A12 3.51
2006 Feb 27
2
Resolving Dependencies
I am getting the following errors and don't know how/what to check to
learn which rpm they are in...
---> Package java-1.4.2-sun-devel.i586 0:1.4.2.10-1jpp set to be updated
---> Package java-1.4.2-sun.i586 0:1.4.2.10-1jpp set to be updated
--> Running transaction check
--> Processing Dependency: libjvm.so(SUNWprivate_1.1) for package:
java-1.4.2-sun
--> Processing
2007 Nov 15
4
Ajax.InPlaceEditor: controls.js update
I''m not sure if this is a bug or not, but I had to patch controls.js
file to accommodate the idea that I had planned.
I had to combine Ajax.InplaceEditor and AutoCompleter for a "tagging"
feature at my office.
With the autocompleter, I need to target an INPUT FIELD by ID.
However the generated INPUT field from the Ajax.InPlaceEditor did not
include this attribute in
2009 Nov 19
4
Oracle RAC 9i on RH AS 4 Update 5
Hi all,
I've got problem when run command "gsdctl start", and appeared error like this :
/home/oracle/jre/1.1.8/bin/../lib/i686/native_threads/libzip.so:
symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with
link time reference (libzip.so)
Unable to initialize threads: cannot find class java/lang/Thread
Could not create Java VM
Does anyone can help me? Appreciate with
2007 Apr 18
1
version GLIBC_2.0 not defined in file libpthread.so.0
I just installed EMC PowerPath 5.0.0 and Navisphere Agent and CLI on a
CentOS 4.4/x86_64 system. When I try to start naviagent, I get the error
below. Before upgrading to CentOS4.4, this same system had RHEL3 ES for
x86_64 on it, and the same problem was encountered. I spent weeks going
back and forth with EMC tech support, but the problem was never
resolved. I'm hoping someone here on this
2002 Feb 01
2
install mandrake 8.1
When I install the new RPM for Mandrake 8.1, it fails and cannot find:
libblas.so.3, libgcc_s.so.1, and libgcc_s_so.1 (GLIBC_2.0). Any help would
be very much appreciated. Thanks.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or
2013 Jun 07
1
[LLVMdev] Error on compiling VMkit
Hi all,
After "BUILD SUCCESSFUL" Message on compiling VMkit.
The make starts compiling mmtk-vmkit.jar The following command errors out:
Compiling 'mmtk-vmkit.jar'
/vmkit/Release+Asserts/bin/vmjc
-load=/vmkit/Release+Asserts/lib/MMTKRuntime.so
-load=/vmkit/Release+Asserts/lib/MMTKMagic.so -LowerMagic
/vmkit/mmtk/java/Release+Asserts/mmtk-vmkit.jar -disable-exceptions
2013 Jul 04
1
Cross-platform linking of a simple front-end
Dear all,
I have a simple front-end program which uses the APIs described in section
8 of "Writing R Extensions" to deviate from the standard R behaviour in
fairly minor ways. However, I'm having some difficulty getting it to link
reliably across different platforms.
R CMD LINK seemed like it would help, but I've had difficulty finding many
real-world examples online. I've
2013 Jun 26
1
[LLVMdev] VmKit build failure
Hello,
I'm trying to build vmkit as described on
http://vmkit.llvm.org/get_started.html and
constantly getting the following error:
db at hot:~/develop/vmkit$ make
[vmkit .]: Entering compilation process
[vmkit ./mmtk/java]: Compiling 'mmtk-vmkit.jar'
vmjc: ctthread.cpp:141: void vmkit::StackWalker::operator++(): Assertion
`(addr < System::GetCallerOfAddress(addr))