search for: incls

Displaying 20 results from an estimated 592 matches for "incls".

Did you mean: incl
2009 Feb 16
1
incl.non.slopes=FALSE does not work at predict.lm
Dear all, I am trying to estimate the prediction from a fixed effects model and their confidence intervals as well. Though I do not want to include in the prediction and at the confidence intervals the intercept. For that reason I used the argument incl.non.slopes=FALSE. But either if it is TRUE or FALSE it does not have any difference and also the system does not provide any warning. I really
2013 Apr 17
1
Update request: When support for live snapshot delete incl coalesce
Does the libvirt development team have a sense of when/which version of libvirt will support the deletion of live snapshots, incl. the coalesce. With the restriction that you cannot delete the most recent snapshot! Harald -------------- next part -------------- An HTML attachment was scrubbed... URL:
2015 Sep 01
2
[RFC] New pass: LoopExitValues
On Mon, Aug 31, 2015 at 5:52 PM, Jake VanAdrighem <jvanadrighem at gmail.com> wrote: > Do you have some specific performance measurements? Averaging 4 runs of 10000 iterations each of Coremark on my X86_64 desktop showed: -O2 performance: +2.9% faster with the L.E.V. pass -Os size: 1.5% smaller with the L.E.V. pass In the case of Coremark, the benefit comes mainly from the matrix
2010 Apr 29
1
[PATCH] GuestOS: Fix augeas grub configuration
Augeas now configures the Grub lens for /boot/grub/menu.lst by default. The code which was checking this was broken in the case where there was more than 1 included path. We now check if /boot/grub/menu.lst is included. If it is, we don't reload. If it isn't, we add it, but don't remove any other config first. This fixes RHBZ#586822 --- lib/Sys/VirtV2V/GuestOS/RedHat.pm | 25
2012 Sep 11
1
using alternative models in glmulti
All, I am working on a multiple-regression meta-analysis and have too many alternative models to fit by hand. I am using the "metafor" package in R, which generates AIC scores among other metrics. I'm using a simple formula to define these models. For example, rma(Effect_size,variance, mods=~Myco_type + N.type +total, method="ML")->mod where Effect_size is the
2006 Mar 06
0
No ring when doing blind transfer.
Hi, I have an odd problem when doing a blind transfer. The transfer is intiated and the transferred caller hears nothing until the timeout. I have tried setting the 'r' and the 'm' variables in the dial command. Nothing happens when I use the 'r' variable when I use the 'm' variable I briefly hear music on hold and then it stops until the timeout for no answer
2015 Aug 31
2
[RFC] New pass: LoopExitValues
Hello LLVM, This is a proposal for a new pass that improves performance and code size in some nested loop situations. The pass is target independent. >From the description in the file header: This optimization finds loop exit values reevaluated after the loop execution and replaces them by the corresponding exit values if they are available. Such sequences can arise after the
2016 Aug 15
2
[PATCH v2] v2v: factor out bootloader handling
...error: regular expression did not match '%s'") + path; + let index = int_of_string (Str.matched_group 1 path) - 1 in + g#aug_set (sprintf "/files%s/default" grub_config) (string_of_int index); + g#aug_save () + + method set_augeas_configuration () = + let incls = g#aug_match "/augeas/load/Grub/incl" in + let incls = Array.to_list incls in + let incls_contains_conf = + List.exists (fun incl -> g#aug_get incl = grub_config) incls in + if not incls_contains_conf then ( + g#aug_set "/augeas/load/Grub/incl[last()+1]" g...
2005 Jul 13
1
syncing from the "file-list" option
Hello, all. I'm a begineer for rsync and please help me. I would like to sync data between two ftp sevrer. If one change/add/delete data usingf ftp, other ftp server should sync from the main ftp servert. In my thought, full data directory syncing is too slow, so if the client uses " --files-from" option, sync speed more fast than full data directory syncing. file list is
2007 Apr 18
0
[Bridge] Bridge] IEEE 802.1Q (VLAN-) Bridge incl. GARP, GMRP, GVRP]
Skipped content of type multipart/alternative
2006 Apr 22
0
Rsync 2.6.8 released (incl. xattrs.diff security note)
I have released rsync version 2.6.8. A SECURITY NOTE for users of the unofficial xattrs.diff patch: See below for a discussion of a security fix contained in the latest patch. You can read all about the latest improvements and bug-fixes that went into this release on this page: http://rsync.samba.org/ftp/rsync/NEWS The tar file of the source and its signature are here:
2006 Apr 22
0
Rsync 2.6.8 released (incl. xattrs.diff security note)
I have released rsync version 2.6.8. A SECURITY NOTE for users of the unofficial xattrs.diff patch: See below for a discussion of a security fix contained in the latest patch. You can read all about the latest improvements and bug-fixes that went into this release on this page: http://rsync.samba.org/ftp/rsync/NEWS The tar file of the source and its signature are here:
2012 Dec 27
0
Suggestion: 'method' slot for expand.grid() (incl. diffs)
Dear expeRts, The order in which the variables vary in expand.grid() is often unintuitive. I would like to suggest a 'method' slot for expand.grid() which requires only very little changes (100% backward compatible) and which allows one to control this order. Please find attached diffs against R-devel. Cheers, Marius ### ./src/library/base/R/expand.grid.R
2015 Nov 20
0
[PATCH] v2v: factor out bootloader handling
...error: regular expression did not match '%s'") + path; + let index = int_of_string (Str.matched_group 1 path) - 1 in + g#aug_set (sprintf "/files%s/default" grub_config) (string_of_int index); + g#aug_save () + + method set_augeas_configuration () = + let incls = g#aug_match "/augeas/load/Grub/incl" in + let incls = Array.to_list incls in + let incls_contains_conf = + List.exists (fun incl -> g#aug_get incl = grub_config) incls in + if not incls_contains_conf then ( + g#aug_set "/augeas/load/Grub/incl[last()+1]" g...
2010 May 14
1
[PATCH] Rely on new augeas lens for modules.conf and conf.modules
We were previously forcing the augeas Modprobe lens to match modules.conf and conf.modules. It turns out that the contents of these files are quite different to modprobe.conf, requiring a new lens. This change keeps the logic which looks for where modules should go, but doesn't update the augeas configuration. If there is no augeas lens for /etc/modules.conf, any attempt to parse or modify it
2016 Aug 15
0
Re: [PATCH v2] v2v: factor out bootloader handling
...match '%s'") > + path; > + let index = int_of_string (Str.matched_group 1 path) - 1 in > + g#aug_set (sprintf "/files%s/default" grub_config) (string_of_int index); > + g#aug_save () > + > + method set_augeas_configuration () = > + let incls = g#aug_match "/augeas/load/Grub/incl" in > + let incls = Array.to_list incls in > + let incls_contains_conf = > + List.exists (fun incl -> g#aug_get incl = grub_config) incls in > + if not incls_contains_conf then ( > + g#aug_set "/augeas/load/Gr...
2012 Jul 31
4
Long processing time using Augeas
Hi! I using Augeas to handle dump and passno for certain mount points in /etc/fstab. Each mount point is defined as it''s own augeas block: augeas { ''homeLV'': context => ''/files/etc/fstab'', changes => [
2011 Mar 13
1
R hangs when connected via VPN [incl. minimal example]
Dear expeRts, This is a similar post as on R-SIG-MAC [I didn't receive an answer there; not sure if it was the right place to post either]. I'm running R version 2.12.1 (Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit)) on a MacBook Pro under Mac OS X 10.6.6. The following minimal example runs fine under this setup. However, if I am connected to a server via a VPN client [Cisco
2009 Apr 20
6
DO NOT REPLY [Bug 6280] New: (Bug incl. PATCH) Linux mknod does not work when syncing fifos and sockets from Solaris
https://bugzilla.samba.org/show_bug.cgi?id=6280 Summary: (Bug incl. PATCH) Linux mknod does not work when syncing fifos and sockets from Solaris Product: rsync Version: 3.0.6 Platform: x64 OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo:
2016 Aug 25
2
[PATCH v2] v2v: factor out bootloader handling
...convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = (* Conversion step. *) let rec augeas_grub_configuration () = - match grub with - | `Grub1 -> - (* Ensure Augeas is reading the grub configuration file, and if not - * then add it. - *) - let incls = g#aug_match "/augeas/load/Grub/incl" in - let incls = Array.to_list incls in - let incls_contains_conf = - List.exists (fun incl -> g#aug_get incl = grub_config) incls in - if not incls_contains_conf then ( - g#aug_set "/augeas/load/Grub/incl[last()+...