Displaying 4 results from an estimated 4 matches for "mirabile".
Did you mean:
mirabilos
2005 Feb 13
2
3.0.11/MirOS password change problem
...decode_pw_buffer: check that 'encrypt passwords = yes'
MirOS is an OpenBSD derivate with a 64 bit "time_t" data type,
so there are all kinds of weird problems lurking around...
Thanks in advance,
//mirabile
--
> [...] Echtzeit hat weniger mit "Speed"[...] zu tun, sondern damit, da? der
> richtige Proze? voraussagbar rechtzeitig sein Zeitscheibchen bekommt.
Wir haben uns[...] geeinigt, dass das verwendete Echtzeit-Betriebssystem[...]
weil selbst einfachste Operationen *echt* *Zeit* bra...
2013 Jan 13
2
getting TukeyHSD code
Hello R People:
Here's the Saturday night goofy question. I would like to see the
code for TukeyHSD function and I tried the following:
> getAnywhere("TukeyHSD")
A single object matching ?TukeyHSD? was found
It was found in the following places
package:stats
namespace:stats
with value
function (x, which, ordered = FALSE, conf.level = 0.95, ...)
2004 Mar 28
4
Could someone email me with the code for glm.nb ?
Hi -- subject says all. I just want the code for that function,
which I guess was in Venables and Ripley as early as 1994.
Well, and for any of the sub-functions that glm.nb calls. I
can't install the entire MASS library.
If the code for just glm.nb (again, don't want to touch the MASS
library, last time I tried to install it was a complete nightmare and
fiasco) is somewhere on a
2005 Nov 24
10
Any change of rsync using threads instead of fork?
On a typical embedded Linux device, with no MMU, there is no fork() or
it returns ENOSYS.
The nearest replacements are vfork() (which is only useful before
exec*()), or to create threads with pthread_create().
rsync would be a very useful program on such devices, and I was a bit
disappointed to build it, only to find the compile went fine but it
failed at runtime due to ENOSYS.
Is there any