Displaying 9 results from an estimated 9 matches for "fensed".
Did you mean:
fenced
2009 Jun 08
1
[SUGGESSTION 1/1] OCFS2: runtime tunable network idle timeout
...here is a special time during a day. in this special time, a backup work is happening over private network. at the time that the backup is going on, there is very very high load on network. this can lead to ocfs2 network idle timeout and when it can't connect back in time, some nodes have to be fensed out the cluster domain which is not really what we want.
there is a configuration O2CB_IDLE_TIMEOUT_MS by which we can set the timeout value. but looks it takes effect on when o2cb service is restarted, so it's not possible to change it in the already running system.
suggestion:
if we can mo...
2012 Nov 06
1
LazyData: no / yes
Hi the list
I have package foo0 with a big dataset 'myData'.
In DESCRIPTION, if I use 'LazyData: no', then I get:
- when I open a R session : memory used=20 908
- when I attach 'library(foo0)' : memory used=24364
- then I load the set 'data(myData)' : memory used=39 668
If I use LazyData: yes', then I get
- when I open a R session : memory used=20 908
2012 Oct 13
2
Problem with a submission to jss
Hi the list,
I am about to submit an article describing an R package to the Journal of Statistical Software but I
encounter a strange behavior of LaTeX: the numbering of the figure is correct (1. 2. 3. ...), but
when I make a reference to a figure, the section (or the subsection) number appears instead of the
figure number.
I check if this behavior occurs with the file example provide in the
2014 Mar 19
1
Memcheck: Invalid read of size 4
Hi the list,
One of my package has a memory issue that I do not manage to understand. The Memtest notes is here:
<http://www.stats.ox.ac.uk/pub/bdr/memtests/valgrind/kml-Ex.Rout>
Here is the message that I get from Memtest
--- 8< ----------------
~ Fast KmL ~
==27283== Invalid read of size 4
==27283== at 0x10C5DF28: kml1 (kml.c:183)
...
==27283== by 0x10C5DE4F: kml1 (kml.c:151)
2012 Nov 06
1
Depends/Imports/Suggest/Enhence
Hi the list
In the DESCRIPTION file of my package foo0, I have:
Depends: foo1
Imports: foo2
Suggest: foo3
Enhence: foo4
If I understand correctly, to install foo0 on my computer, I need to already have foo1, foo2, foo3.
foo4 is not necessary.
I my R sesssion, when I will write: library(foo0), then the package foo1 will be attach. foo2, foo3
and foo4 will not. Is that correct?
But what is
2012 Nov 07
2
Comments in the DESCRIPTION file
Hi all,
Is it possible to add comments in the DESCRIPTION file?
Sincerely
Christophe
--
Christophe Genolini
Ma?tre de conf?rences en bio-statistique
Vice pr?sident Communication interne et animation du campus
Universit? Paris Ouest Nanterre La D?fense
2012 Nov 09
1
What is the INDEX file for?
Hi the list,
In WRE (or in Rdindex), we can find how the INDEX is make, how to change it, but I do not manage to
find the purpose of this file. So what is the INDEX file for?
Thanks
Christophe
--
Christophe Genolini
Ma?tre de conf?rences en bio-statistique
Vice pr?sident Communication interne et animation du campus
Universit? Paris Ouest Nanterre La D?fense
2014 Mar 21
1
Memcheck: error in a switch using getGraphicsEvent
Hi the list,
One of my package has an (other) error detected by memtest that I do not manage to understand.
Here is the message that I get from Memtest
--- 8< ----------------
> try(choice(cld1))
Error in switch(EXPR = choix, Up = { : EXPR must be a length 1 vector
--- 8< ----------------
The choice function does call the choiceChangeParam function, which is:
--- 8<
2000 Jan 07
2
global variable
Hi,
I would like to know if it is possible to make global variables in R.
My problem is that I use the same data frame in many different functions
that I have written, but it implies a very big waste of time because it
slow down the program.
So I would use my data frame without need to copy it each time in
another function to have a faster program execution.
How can I do ??
Thanks for Help