Displaying 20 results from an estimated 700 matches similar to: "R v2.1.0 patched (>2005-05-09) for Windows?"
2005 Jun 27
2
R v2.1.1 for Windows and "non-reproducible" crashes
Hi,
R v2.1.1 patched (2005-05-26) for Windows crashes. The sympotoms are
like "memory leakage". The patched version from two days ago crashes at
a different position in R CMD check compared to todays version.
A "REPRODUCIBLE" EXAMPLE:
Unfortunately, I cannot create a minimal code example reproducing the
crash, but here is at least a simple way to reproduce it:
1. Make
2012 Feb 16
2
v2.1.0 released
http://dovecot.org/releases/2.1/dovecot-2.1.0.tar.gz
http://dovecot.org/releases/2.1/dovecot-2.1.0.tar.gz.sig
Here's finally the the stable v2.1 release. I expect this release to be quite stable, since it's already being used in several large installations.
Changes since rc7: FS layout related crashfix, two man pages added.
The biggest changes since v2.0:
* Plugins now use UTF-8
2012 Feb 16
2
v2.1.0 released
http://dovecot.org/releases/2.1/dovecot-2.1.0.tar.gz
http://dovecot.org/releases/2.1/dovecot-2.1.0.tar.gz.sig
Here's finally the the stable v2.1 release. I expect this release to be quite stable, since it's already being used in several large installations.
Changes since rc7: FS layout related crashfix, two man pages added.
The biggest changes since v2.0:
* Plugins now use UTF-8
2005 Aug 26
1
Memory leakage/violation?
Hi,
I've spotted a possible memory leakage/violation in the latest R v2.1.1
patched and R v2.2.0dev on Windows XP Pro SP2 Eng.
I first caught it deep down in a nested svd algorithm when subtracting a
double 'c' from a integer vector 'a' where both had finite values but
when assigning 'a <- a - c' would report NaNs whereas (a-c) alone would
not. Different runs
2012 Feb 16
2
Released Pigeonhole v0.3.0 for Dovecot v2.1.0
Hello Dovecot users,
Now that Dovecot v2.1.0 is out there, I release Pigeonhole v0.3.0. The
most significant new features are support for the Sieve editheader
extension and the sieve-filter tool. I haven't received much feedback on
these new features, which can either mean that they are mostly bug-free
or that not many people have tried these, so these are still considered
experimental.
2012 Feb 16
2
Released Pigeonhole v0.3.0 for Dovecot v2.1.0
Hello Dovecot users,
Now that Dovecot v2.1.0 is out there, I release Pigeonhole v0.3.0. The
most significant new features are support for the Sieve editheader
extension and the sieve-filter tool. I haven't received much feedback on
these new features, which can either mean that they are mostly bug-free
or that not many people have tried these, so these are still considered
experimental.
2005 Feb 16
0
Depends, require(), autoload() and "side effects"?
Hi.
If your package require another package in order to define its methods (but
afterwards in is not needed), how should one specify this? Is it correct to
assume that "Depends" will assure that all packages are loaded (attached?
what is the right word) *before* the methods in the current package are
defined? Basically I use my own setMethod() called setMethodS3() that is
defined in
2012 Feb 12
2
v2.1.rc6 released
http://dovecot.org/releases/2.1/rc/dovecot-2.1.rc6.tar.gz
http://dovecot.org/releases/2.1/rc/dovecot-2.1.rc6.tar.gz.sig
I've finally finished all of my email backlog. If you haven't received an answer to some question/bugreport, resend the mail.
This is hopefully the last v2.1 RC. If I don't receive any (serious) bug reports about this release in next few days, I'll just change
2012 Feb 12
2
v2.1.rc6 released
http://dovecot.org/releases/2.1/rc/dovecot-2.1.rc6.tar.gz
http://dovecot.org/releases/2.1/rc/dovecot-2.1.rc6.tar.gz.sig
I've finally finished all of my email backlog. If you haven't received an answer to some question/bugreport, resend the mail.
This is hopefully the last v2.1 RC. If I don't receive any (serious) bug reports about this release in next few days, I'll just change
2006 May 05
4
str() with attr(*, "names") is extremely slow for long vectors
Hi,
I noticed some time ago that, for instance, named vectors that are
really makes str() really slow when displaying the names attribute. I
don't know exactly when this started, but it wasn't the case say 1-2
years ago. Example (on a WinXP 1.8GHz):
> s <- 1:1000; names(s) <- s
> system.time(str(s))
Named int [1:1000] 1 2 3 4 5 6 7 8 9 10 ...
- attr(*, "names")=
2007 May 14
1
Native implementation of rowMedians()
Hi,
I've got a version of rowMedians(x, na.rm=FALSE) for matrices that
handles missing values implemented in C. It has been optimized for
memory and speed. To avoid coercing integers to doubles, and hence
allocate an additional 200% memory, there is one C function for
integers and one for doubles.
The rowMedians() implementation is currently sitting in my non-CRAN
package R.native
2005 Dec 14
1
About help on 'mahalanobis'
Hi,
help on 'mahalanobis' (in the stats package in Rv2.2.0) now says:
"Description:
Returns the Mahalanobis distance of all rows in 'x' and the vector
mu='center' with respect to Sigma='cov'. This is (for vector 'x')
defined as
D^2 = (x - mu)' Sigma^{-1} (x - mu)"
It does return D^2 as written. However,
2002 Feb 20
2
How to get the penalized log likelihood from smooth.spline()?
I use smooth.spline(x, y) in package modreg and I would like to get
value of penalized log likelihood and preferable also its two parts. To
make clear what I am asking for (and make sure that I am asking for the
right thing) I clarify my problem trying to use the same notation as in
help(smooth.spline):
I want to find the natural cubic spline f(x) such that
L(f) = \sum_{k=1}{n} w[k](y[k] -
2008 Feb 27
1
Warnings generated by log2()/log10() are really large/takes a long time to display
x <- rnorm(1e6);
y <- log(x); # or logb(x) or log1p(x)
w <- warnings();
print(object.size(w));
## [1] 480
str(w);
$ NaNs produced: language log(x)
- attr(*, "dots")= list()
- attr(*, "class")= chr "warnings"
y <- log2(x); # or log10(x)
w <- warnings();
print(object.size(w));
## [1] 8000536
str(w);
## List of 1
## $ NaNs produced: language
2012 Feb 23
0
v2.1.1 released
http://dovecot.org/releases/2.1/dovecot-2.1.1.tar.gz
http://dovecot.org/releases/2.1/dovecot-2.1.1.tar.gz.sig
v2.1.0 had a couple of bugs, but overall people have been pretty quiet
about it. I'm hoping v2.1.2 won't need to be released for many more
weeks. :)
BTW. v2.2 branch has also been opened in hg. Not much stuff in there yet
though.
+ dsync: If message with same GUID is saved
2012 Feb 23
0
v2.1.1 released
http://dovecot.org/releases/2.1/dovecot-2.1.1.tar.gz
http://dovecot.org/releases/2.1/dovecot-2.1.1.tar.gz.sig
v2.1.0 had a couple of bugs, but overall people have been pretty quiet
about it. I'm hoping v2.1.2 won't need to be released for many more
weeks. :)
BTW. v2.2 branch has also been opened in hg. Not much stuff in there yet
though.
+ dsync: If message with same GUID is saved
2007 Aug 29
1
R CMD check recursive copy of tests/
>From NEWS of R v2.6.0 devel:
o R CMD check now does a recursive copy on the 'tests' directory.
However, R CMD check does not run *.R scripts in such subdirectories
(as I thought/hoped for), only those directly under tests/, This may
or may not be intentional. If true, maybe the above should be
clarified as:
o R CMD check now does a recursive copy on the 'tests' directory
2005 Jun 20
2
capabilities() and non-catchable messages
Just for the record (not a request for fix) and an ad hoc workaround if
anyone needs it:
REASON:
Running an R script as a plugin on a remote Suse Linux 8.2 with R v2.1.0
(2005-04-18), I have noticed that capabilities() generates (to standard
error)
Xlib: connection to "base:0.0" refused by server
Xlib: Client is not authorized to connect to Server
which cannot be caught by
2011 Nov 08
4
v2.1.beta1 released
http://dovecot.org/releases/2.1/beta/dovecot-2.1.beta1.tar.gz
http://dovecot.org/releases/2.1/beta/dovecot-2.1.beta1.tar.gz.sig
Here's the first beta release of Dovecot v2.1. This version has already
been tested quite a lot, so I'm not expecting any major bugs. So please
upgrade and see if you can find any problems. I'm optimistic about
getting rc1 released this year and perhaps even
2011 Nov 08
4
v2.1.beta1 released
http://dovecot.org/releases/2.1/beta/dovecot-2.1.beta1.tar.gz
http://dovecot.org/releases/2.1/beta/dovecot-2.1.beta1.tar.gz.sig
Here's the first beta release of Dovecot v2.1. This version has already
been tested quite a lot, so I'm not expecting any major bugs. So please
upgrade and see if you can find any problems. I'm optimistic about
getting rc1 released this year and perhaps even