Displaying 7 results from an estimated 7 matches for "bz2_bzreadopen".
2003 Sep 10
2
R 1.8.0 alpha
The countdown to R version 1.8.0 has begun. As a novelty, we now
make preliminary source tarballs available somewhat earlier in the
process. They will be found in
http://cran.us.r-project.org/src/base
with names of the form R-1.8.0alpha_2003-09-10.tar.gz
The first one was created a moment ago; subsequent ones will be
created by a cron job that runs at 05:00 local (Wisconsin) time.
There are
2003 Sep 10
2
R 1.8.0 alpha
The countdown to R version 1.8.0 has begun. As a novelty, we now
make preliminary source tarballs available somewhat earlier in the
process. They will be found in
http://cran.us.r-project.org/src/base
with names of the form R-1.8.0alpha_2003-09-10.tar.gz
The first one was created a moment ago; subsequent ones will be
created by a cron job that runs at 05:00 local (Wisconsin) time.
There are
2007 Jan 30
1
Solaris 10 compilation issue
....o
R_ShowFiles platform.o
gzgetc connections.o
gzopen connections.o
gzread connections.o
gzseek connections.o
gztell connections.o
BZ2_bzReadOpen connections.o
R_zeroin optimize.o
ptr_R_savehistory ../unix/libunix.a(stubs.o)
loglin registration.o
lowess registration.o
machar platform.o
ptr_R...
2007 Jan 30
1
Difficulty with compiling R-2.4.1 on solaris 10
....o
R_ShowFiles platform.o
gzgetc connections.o
gzopen connections.o
gzread connections.o
gzseek connections.o
gztell connections.o
BZ2_bzReadOpen connections.o
R_zeroin optimize.o
ptr_R_savehistory ../unix/libunix.a(stubs.o)
loglin registration.o
lowess registration.o
machar platform.o
ptr_R...
2007 Jan 30
0
R Compiling issue
....o
dqrls_ registration.o
dqrsl_ registration.o
dsvdc_ registration.o
dtrco_ registration.o
dtrsl_ registration.o
wilcox_free registration.o
fdhess optimize.o
R_ShowFiles platform.o
gzgetc connections.o
gzopen connections.o
gzread connections.o
gzseek connections.o
gztell connections.o
BZ2_bzReadOpen connections.o
R_zeroin optimize.o
ptr_R_savehistory ../unix/libunix.a(stubs.o)
loglin registration.o
lowess registration.o
machar platform.o
ptr_R_loadhistory ../unix/libunix.a(stubs.o)
Rf_pnchisq arithmetic.o
Rf_pnbinom arithmetic.o
optif9 optimize.o
rcont2 random.o
R_pretty0 engine.o...
2007 Jan 30
0
Issue with compiling R on solaris 10
....o
R_ShowFiles platform.o
gzgetc connections.o
gzopen connections.o
gzread connections.o
gzseek connections.o
gztell connections.o
BZ2_bzReadOpen connections.o
R_zeroin optimize.o
ptr_R_savehistory ../unix/libunix.a(stubs.o)
loglin registration.o
lowess registration.o
machar platform.o
ptr_R...
2008 Dec 10
2
assert with zlib and (maybe) fts
Hi,
I compressed a folder with the following script:
...
for i in *.*.*; do
file $i | grep bzip2 >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "Compress: $i"
cat "$i" | bzip2 -9 > ../tmp/$i
if [ $? -eq 0 ]; then
mv ../tmp/$i $i
fi
else