Displaying 7 results from an estimated 7 matches for "fifi".
Did you mean:
fi_fi
2006 Apr 26
3
Test fixture syntax
OK, I know I''m doing something bone-headed, but I can''t for the life of
me figure it out.
I''ve read the test fixtures Rdoc about eight dozen times, and it says
(to me) that if I have a YAML fixture file, dogs.yml that looks like
this:
fido:
id: 1
breed: Terrier
fifi:
id: 2
breed: Poodle
Then I can include
fixtures :dogs
in my functional test, and I''ll have access to a Hash of the model
objects in the instance variable @dogs. And further, that the fixture
records are "found" and loaded into instance variables named as the
fixture. T...
2008 Aug 07
1
package.skeleton does invalide regular name, bis... (PR#12020)
Hi the list,
I guess I find an other bug (the first one is at the end off this mail)
in package.skeleton. It occurs when we give as code_file some file that
are not in the current directories.
If we give a single file to code_file (like code_file=3D"riri/fifi.R"),
it does not reconize fifi.R as a regular name and change it to
riri/zfifi.R
If we give several file to code_file (like
code_file=3Dc("riri/titi.R","riri/loulou.R")), it does not reconize
titi.R as a regular name, change it to toto/ztiti.R and we get an error
on r...
2007 Jan 12
0
Minor logical bug in rbind.data.frame ?
...baz <- data.frame(v1 = c('a', 'e'), v2 = c(5, 6), v3 = ordered(c('x', 'z')))
> rbind(foo, bar, baz)
v1 v2 v3
1 a 1 x
2 b 2 y
3 c 3 x
4 d 4 y
5 a 5 x
6 e 6 z
> ## All is fine.
## Third data frame has a different third column variable
> fifi <- data.frame(v1 = c('a', 'e'), v2 = c(9, 10), v4 = ordered(c('y', 'z')))
> rbind(foo, bar, fifi)
Error in match.names(clabs, names(xi)) : names do not match previous names:
v4
> ## Output looks fine.
## Third data frame is missing a column.
> gaga <...
2011 Dec 06
0
script for check drbd at mount ocfs2 at boot in debian
...por que ya esta montado"? ? ? ?exit 1else
mount $MOUNTPOINT? ? ? ? copia_ok=$?? ? ? ? if [ "$copia_ok" != 0 ];
then? ? ? ? ? ? ? ? $LOG "No se ha podido montar $MOUNTPOINT"
? ? ? exit 1? ? ? ? else? ? ? ? ? ? ? ? $LOG "Montado del directorio
$MOUNTPOINT OK"? ? ? ? fifi? ? ? ? ;;
stop|reload|restart|force-reload)? ? ? ? # No hay nada que parar, solo
asegurarse que antes de arrancar el drbd esta sincronizado? ? ? ? ;;
*)? ? ? ? echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1? ? ? ? ;;esac
exit 0
2019 Sep 09
0
[PATCH] autoconf tweaks for C99 compilers
...8,10 +742,13 @@ AC_CACHE_CHECK([whether link() can hard-link special files],rsync_cv_can_hardlin
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
+#ifdef HAVE_SYS_STAT_H
+# include <sys/stat.h>
+#endif
#include <stdlib.h>
#include <errno.h>
#define FILENAME "conftest.fifi"
- main() {
+ int main() {
unlink(FILENAME);
if (mkfifo(FILENAME, 0777) < 0) abort();
unlink(FILENAME "2");
@@ -757,9 +764,9 @@ AC_RUN_IFELSE([AC_LANG_SOURCE([[
#include <sys/types.h>
#include <sys/socket.h>
-main() {
+int main() {
int fd[2];
-...
2006 Dec 19
7
Improve the rendering speed of rhtml
I found through the log file that the render of the rhtml template would
take too much time if there exists ruby code in the rhtml files.In many
cases,these ruby code are tied with these rhtml files closely and can
not be decoupled from that,therefore,i have a question that,is there
exist some way to improve the rendering speed of rhtml when some ruby
codes are included?
--
Posted via
2018 Feb 20
0
Unwanted behaviour of bw.nrd: sometimes, zero is returned as a valid bandwidth
Dear all,
Sorry if I am posting to the wrong place, but I could not find the link for
registration on the bug tracker, that?s why I am writing here.
I think there is inconsistency between two R functions from the stats
package, bw.nrd0 and bw.nrd.
Consider the following vector:
D <- c(0, 1, 1, 1, 1)
bw.nrd(D) returns zero bandwidth for this object even without a warning.
Considering the