Displaying 8 results from an estimated 8 matches for "makef".
Did you mean:
make
2008 Dec 07
1
unexpected scoping behavior with functions created in a loop
...mbled on an unexpected behavior of R when using
functions created in a loop.
The problem is silly enough to me that I had hard time choosing a good
mail subject, not talking about searching in the archives...
After some experiments, I trimmed down the following minimal
reproducible example:
#######
makeF <- function(i) function() i
fList <- list(makeF(1), makeF(2))
sapply(fList, do.call, list())
##This works as expected (by me...):
#[1] 1 2
##Things go differently when creating functions in a for loop:
for(i in 1:2)
fList[[i]] <- makeF(i)
sapply(fList, do.call, list())
#[1] 2 2
##Same...
2009 Apr 16
2
static variable?
dear R experts:
does R have "static" variables that are local to functions? I know
that they are usually better avoided (although they are better than
globals).
However, I would like to have a function print how often it was
invoked when it is invoked, or at least print its name only once to
STDOUT when it is invoked many times.
possible without <<- ?
sincerely,
/iaw
2011 Nov 20
1
Puppet changes mount point directory ownership.
.../app'':
device => ''/dev/xvdo'',
atboot => true,
ensure => mounted,
fstype => ''ext4'',
options => ''defaults'',
require => Exec[''oracle-app-makefs''];
As part of the mount operation, puppet changes the ownership on
/u01/app to root.root. Why? How can I stop this?
Doug
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googl...
2009 Apr 09
4
problems with integrate ... arguments
Hi everyone,
I saw this problem dealt with here:
http://markmail.org/search/list:r-project?q=integrate#query:list%3Ar-project%20integrate+page:1+mid:qczmyzr676pgmaaw+state:results
but no one answered that request that I can tell. I'm having the same
problem. I'm having problems passing arguments to functions that I'd
like to integrate. I could swear this worked in the past, but I
2006 Nov 14
2
Building R from source
...make[1]: `Rpwd.exe' is up to date.
make[4]: Nothing to be done for `svnonly'.
installing C headers
make[2]: `all' is up to date.
make[2]: `libRblas.dll.a' is up to date.
make[5]: Nothing to be done for `svnonly'.
installing C headers
make --no-print-directory -C ../extra/intl -f Makefile.win
make --no-print-directory -C ../appl OPTFLAGS='-O3 -Wall -pedantic -std=gnu99' FOPTFLAGS='-O3 -Wall' -f Makefile.win
make --no-print-directory -C ../nmath OPTFLAGS='-O3 -Wall -pedantic -std=gnu99' -f Makefile.win
make --no-print-directory -C ../main OPTFLAGS='-O...
2004 Nov 02
0
[LLVMdev] Final Visual Studio Patches
On Tue, 02 Nov 2004 10:25:39 +0100
"Henrik Bach" <henrik_bach_llvm at hotmail.com> wrote:
> I've come over an open source script which should be able to convert unix
> (gnu?) like makefiles to nmake. However, It possible needs some changes to
> work with the llvm makefile framework.
I'm very doubtful this utility is of any use. nmake is useless compared
to gnu make. I don't see how gnu makefiles can be converted to nmake
makefiles except in the most trivial of cases...
2004 Nov 02
3
[LLVMdev] Final Visual Studio Patches
Jeff Cohen wrote:
> On Tue, 02 Nov 2004 10:25:39 +0100
> "Henrik Bach" <henrik_bach_llvm at hotmail.com> wrote:
>
>
>>I've come over an open source script which should be able to convert unix
>>(gnu?) like makefiles to nmake. However, It possible needs some changes to
>>work with the llvm makefile framework.
>
>
> I'm very doubtful this utility is of any use. nmake is useless compared
> to gnu make. I don't see how gnu makefiles can be converted to nmake
> makefiles except...
2004 Nov 02
2
[LLVMdev] Final Visual Studio Patches
I've come over an open source script which should be able to convert unix
(gnu?) like makefiles to nmake. However, It possible needs some changes to
work with the llvm makefile framework.
Until then, I strongly suggest a repository for the msvc project files until
we'll come with a lasting solution. It is natural that we, msvc guys, should
keep these files in shape.
Henrik.
----...