Displaying 7 results from an estimated 7 matches for "oldr".
Did you mean:
old
2007 Apr 26
1
rsync mirroring and hardlink issues
I'm running a mirror of several repositories that are fetched using
separate rsync runs. Since some of those repositories are hosting
related files, I'm using the hardlink utility[1] in order to save disk
space.
However, I've noticed an issue that may lead to potential file metadata
inconsistencies when using hardlink.
Consider the following scenario:
- two repositories (rep_a and
2016 May 10
1
complex NA's match(), etc: not back-compatible change proposal
...these 12 complex numbers all differ:
> ## a version that works in older versions of R, where identical() had fewer arguments!
> outerID.picky <- function(x,y) {
+ nF <- length(formals(identical)) - 2
+ do.call("outerID", c(list(x, y), as.list(rep(FALSE, nF))))
+ }
> oldR <- !exists("getRversion") || getRversion() < "3.0.0" ## << FIXME: 3.0.0 is a wild guess
> symnum(id.z <- outerID.picky(z,z)) ## == Diagonal matrix [newer versions of R]
[1,] | . . . . . . . . . . .
[2,] . | . . . . . . . . . ....
2016 May 13
1
complex NA's match(), etc: not back-compatible change proposal
...# a version that works in older versions of R, where identical() had fewer arguments!
>> outerID.picky <- function(x,y) {
> + nF <- length(formals(identical)) - 2
> + do.call("outerID", c(list(x, y), as.list(rep(FALSE, nF))))
> + }
>> oldR <- !exists("getRversion") || getRversion() < "3.0.0" ## << FIXME: 3.0.0 is a wild guess
>> symnum(id.z <- outerID.picky(z,z)) ## == Diagonal matrix [newer versions of R]
> [1,] | . . . . . . . . . . .
> [2,] ....
2016 May 28
1
complex NA's match(), etc: not back-compatible change proposal
...versions of R, where identical() had fewer
arguments!
? ? >>> outerID.picky
<- function(x,y) {
? ? >> +?
???nF <- length(formals(identical)) - 2
? ? >> +?
???do.call("outerID", c(list(x, y),
as.list(rep(FALSE, nF))))
? ? >> +
}
? ? >>> oldR <-
!exists("getRversion") || getRversion() <
"3.0.0" ## << FIXME: 3.0.0 is? a wild
guess
? ? >>> symnum(id.z <-
outerID.picky(z,z)) ## == Diagonal matrix [newer versions of
R]
? ? ? ? ? ? ? ? ? ? ? ? ?
???
? ? >> [1,] | . . . .
. . . . . ....
2016 Jun 03
0
complex NA's match(), etc: not back-compatible change proposal
...picky
? ? > <- function(x,y) {
? ? > ? ? >> +?
? ? > ???nF <- length(formals(identical))
- 2
? ? > ? ? >> +?
? ? > ???do.call("outerID", c(list(x, y),
? ? > as.list(rep(FALSE, nF))))
? ? > ? ? >> +
? ? > }
? ? > ? ? >>> oldR <-
? ? > !exists("getRversion") || getRversion()
<
? ? > "3.0.0" ## << FIXME: 3.0.0 is? a
wild
? ? > guess
? ? > ? ? >>> symnum(id.z <-
? ? > outerID.picky(z,z)) ## == Diagonal matrix
[newer versions of
? ? > R]
? ? > ? ? ?...
2009 Jan 14
15
Backport patches to ocfs2 1.4 tree from mainline
Found 15 patches (out of 162) that appeared relevant to ocfs2 1.4.
Please review.
Sunil
2007 Dec 15
2
[LLVMdev] fix warning with newer g++ compilers
...0 -0800
+++ ./lib/AsmParser/LLLexer.cpp 2007-12-15 13:02:47.000000000 -0800
@@ -54,7 +54,7 @@ static uint64_t HexIntToVal(const char *
Result += C-'A'+10;
else if (C >= 'a' && C <= 'f')
Result += C-'a'+10;
-
+
if (Result < OldRes) { // Uh, oh, overflow detected!!!
GenerateError("constant bigger than 64 bits detected!");
return 0;
@@ -102,7 +102,7 @@ static void HexToIntPair(const char *Buf
// appropriate character.
static void UnEscapeLexed(std::string &Str) {
if (Str.empty()) return;
-...