search for: l112

Displaying 7 results from an estimated 7 matches for "l112".

Did you mean: 112
2016 Jul 13
2
Pigeonhole vs dovecot gssapi option
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211025 Basically, if dovecot is built with gssapi support, we need to pick up .../dovecot-config's DOVECOT_LIBS in pigeonhole's link. On Wed, Jul 13, 2016 at 1:52 AM, Stephan Bosch <stephan at rename-it.nl> wrote: > Op 7/13/2016 om 4:12 AM schreef Larry Rosenman: > > Stephan, > > Is there a reason you don't
2017 Feb 12
4
Replacement for antispam plugin
Den 12. feb. 2017 21:44, skrev ebroch at whitehorsetc.com: > > > Any opinion on dspam's interoperability with this? > > Just follow the wiki and replace sa-learn scripts with calling dspam. Dspam direct pipe needs mail-line-endings (\r\n) translated into unix line-endings (\r). like so: ----- learn-spam.sh --------- #!/bin/sh sed -e 's/\r$//' | /usr/bin/dspam
2015 Jun 01
2
sum(..., na.rm=FALSE): Summing over NA_real_ values much more expensive than non-NAs for na.rm=FALSE? Hmm...
...> z <- x; z[length(z)/2] <- NA_real_ > stopifnot(typeof(z) == "double") > system.time(sum(z, na.rm=FALSE)) user system elapsed 4.49 0.00 4.51 Following the source code, I'm pretty sure the code (https://github.com/wch/r-source/blob/trunk/src/main/summary.c#L112-L128) performing the calculation is: static Rboolean rsum(double *x, R_xlen_t n, double *value, Rboolean narm) { LDOUBLE s = 0.0; Rboolean updated = FALSE; for (R_xlen_t i = 0; i < n; i++) { if (!narm || !ISNAN(x[i])) { if(!updated) updated = TRUE; s += x[i]; } }...
2017 Feb 13
0
Replacement for antispam plugin
...sr/bin/dspam --source=error --class=innocent > > ------ > > Theese will be invoked with the owner of the mailbox as current uid, so > that is all. Actually, Pigeonhole should be able to do that too: https://github.com/dovecot/pigeonhole/blob/master/doc/plugins/sieve_extprograms.txt#L112 Yes, I need to update the wiki. Regards, Stephan.
2015 Mar 04
0
Re: supermin on arm
...nel-lpae installed to run kvm. while you can have the regular > kernel installed also. You end up having the system booting the regular > kernel and you do not get kvm. Ideally supermin will work with the lpae > kernel. > https://github.com/libguestfs/supermin/blob/master/src/kernel.ml#L112 > explictly removes it. This check was added in the following commit: commit dc3e43babd76883df0493b57d563ca3b69e2662c Author: Richard W.M. Jones <rjones@redhat.com> Date: Thu Aug 1 11:49:15 2013 +0100 helper: On arm, don't choose a .lpae or .tegra kernel. The ve...
2015 Jun 01
0
sum(..., na.rm=FALSE): Summing over NA_real_ values much more expensive than non-NAs for na.rm=FALSE? Hmm...
...lt;- NA_real_ >> stopifnot(typeof(z) == "double") >> system.time(sum(z, na.rm=FALSE)) > user system elapsed > 4.49 0.00 4.51 > > Following the source code, I'm pretty sure the code > (https://github.com/wch/r-source/blob/trunk/src/main/summary.c#L112-L128) > performing the calculation is: > > static Rboolean rsum(double *x, R_xlen_t n, double *value, Rboolean narm) > { > LDOUBLE s = 0.0; > Rboolean updated = FALSE; > for (R_xlen_t i = 0; i < n; i++) { > if (!narm || !ISNAN(x[i])) { > if(!updated) up...
2015 Mar 04
3
supermin on arm
...you have to have kernel-lpae installed to run kvm. while you can have the regular kernel installed also. You end up having the system booting the regular kernel and you do not get kvm. Ideally supermin will work with the lpae kernel. https://github.com/libguestfs/supermin/blob/master/src/kernel.ml#L112 explictly removes it. the result is that if you have a system setup to run kvm ou get the following. Dennis [root@cubietruck01 ~]# LIBGUESTFS_DEBUG=1 LIBGUESTFS_TRACE=1 imagefactory --debug base_image tdl-armv7hl.xml --file-parameter install_script fedora-docker-base-66b3b50.ks 2015-03-03 17:0...