search for: subtlti

Displaying 3 results from an estimated 3 matches for "subtlti".

Did you mean: subtlty
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
1997 Nov 24
0
R-alpha: random number generator -- S-plus's
--Multipart_Mon_Nov_24_14:51:09_1997-1 Content-Type: text/plain; charset=US-ASCII >>>>> "PaulG" == Paul Gilbert <pgilbert@bank-banque-canada.ca> writes: MM> The code is basically in V&R 1 and 2; V&R2 on p.167. I have it as a MM> C function that I used to dyn.load into S-plus in order MM> to prove that S-plus was using it.
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