Displaying 3 results from an estimated 3 matches for "subtlty".
Did you mean:
subtlety
2007 Apr 16
0
Patch : Fix includes
Hi all,
Below is a patch that fixes a couple of instances where a function
is used before it has been prototyped.
There was a little subtlty involved here because the file
include/test_libs_common/metadata_utils.h had the #include guard
the same as that of /src/test_libFLAC/metadata.h meaning that
only the first one included would actually do anthing.
Patch below.
Cheers,
Erik
diff -u -r1.4 metadata_utils.h
--- include/test_libs_comm...
1997 Nov 24
0
R-alpha: random number generator -- S-plus's
...et.seed(.)
does. The C code must be compiled (cc and ld) ``a la R'' before dyn.load.
I did not yet test this in R,
but I CC: it to R-devel since others may want to comment.
[appended at the end !]
--------------------------------------------------------
PaulG> Maybe there is some subtlty here that I don't understand, but is it not
PaulG> possible to just add an optional argument to the functions which call
PaulG> the random number generator, with the default being the current
PaulG> generator?
Reasons why I wouldn't like this:
- There are too many of these...
2005 Mar 03
12
bug in postgresql ''now'' time handling??
line 212 of postgresql_adapter.rb is
return Time.now.to_s if value =~ /^\(''now''::text\)::(date|timestamp)/
i don''t think this will work. in postgresql the field ''now'' is pinned to the
SAME TIME for the duration of a transaction. eg. if you do
begin transaction;
insert into t values(42, ''now'');
# sleep one minute