search for: 20,6

Displaying 20 results from an estimated 611 matches for "20,6".

Did you mean: 0,6
2008 Aug 21
3
[LLVMdev] Fix build on GCC 4.3
Index: include/llvm/ADT/APInt.h =================================================================== --- include/llvm/ADT/APInt.h (revision 55101) +++ include/llvm/ADT/APInt.h (working copy) @@ -20,6 +20,7 @@ #include <cassert> #include <iosfwd> #include <string> +#include <cstring> namespace llvm { class Serializer; -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080821/...
2001 Apr 02
1
[PATCH]: scp could hang in Cygwin
...ly setting binmode on stdin. Besides solving the hanging problem, the patch results in a way faster copy process. Corinna Index: scp.c =================================================================== RCS file: /cvs/openssh_cvs/scp.c,v retrieving revision 1.66 diff -u -p -r1.66 scp.c --- scp.c 2001/03/29 00:43:54 1.66 +++ scp.c 2001/04/02 19:47:14 @@ -291,6 +291,9 @@ main(argc, argv) case 't': /* "to" */ iamremote = 1; tflag = 1; +#ifdef HAVE_CYGWIN + setmode (0, O_BINARY); +#endif break; default: usage(); Index: openbsd-compat/bsd-cygwin_util.c ===...
2013 Nov 18
9
[PATCH RESEND v2 2/2] xen: enable vnuma for PV guest
...domU. Signed-off-by: Elena Ufimtseva <ufimtseva@gmail.com> --- arch/x86/xen/setup.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c index 68c054f..0aab799 100644 --- a/arch/x86/xen/setup.c +++ b/arch/x86/xen/setup.c @@ -20,6 +20,7 @@ #include <asm/numa.h> #include <asm/xen/hypervisor.h> #include <asm/xen/hypercall.h> +#include <asm/xen/vnuma.h> #include <xen/xen.h> #include <xen/page.h> @@ -598,6 +599,9 @@ void __init xen_arch_setup(void) WARN_ON(xen_set_default_idle());...
2010 Aug 17
3
libxl build failure in latest xen
...hangeset 21966, which add the hidden attribute, but didn''t update the tools/libxl/xenguest.c. Following patch fix it, but I''m not sure if is right solution, can you please have a look? diff -r 6469a683b174 tools/libxl/xenguest.c --- a/tools/libxl/xenguest.c Mon Aug 16 18:05:07 2010 +0100 +++ b/tools/libxl/xenguest.c Tue Aug 17 13:53:13 2010 +0800 @@ -20,6 +20,7 @@ #include <string.h> #include "libxl.h" +#include "libxl_internal.h" int hvm_build_set_params(xc_interface *handle, uint32_t domid, libxl_domain_build_inf...
2016 Oct 24
2
[PATCH 01/17] drm/nouveau/core: add missing header dependencies
On 23 October 2016 at 01:32, Karol Herbst <karolherbst at gmail.com> wrote: > I think it would be better to squash those commits: > 1. for the includes > 2. for static declerations > > OK, I have resent new patch that squash those commits. > 2016-10-22 11:41 GMT+02:00 Baoyou Xie <baoyo...
2013 Mar 13
2
How to read a *.csv file in R?
Hey guys, I am dealing with this kind of data. To read the file in R I have nulled all empty fields and tried: date BRENT BRENTchg HWWI HWWIchg Jan. 86 22,5 NULL 68,1 -15,6 Feb.86 17 NULL 64,9 -21,6 Mar. 86 13,7 NULL 66,6 -19,5 Apr.86 12,3 NULL 63,6 -19,1 May 86 14 NULL 61,5 -20,9 June 86 11,8 NULL 59,8 -20,7 July 86 9,4 NULL 57,2 -19,3 Aug.86 13,2 NULL 55,5 -18,3 Sep.86 14,2 NULL 57,5 -15,1 Oct. 86 13,7 NULL 55,5 -14,1 Nov.86 14,4 NULL 54,9 -14,9 Dec. 86 15,7 NULL 52,9 -26,4 Jan. 87 18,3 -18,67 49,8 -26,87 Feb.87 17,3 1,76 49,9 -23,11 Mar. 87 17,8 29,93 49,7 -25,38 Apr.87...
2008 Aug 21
0
[LLVMdev] Fix build on GCC 4.3
Please commit. On Aug 20, 2008, at 8:02 PM, Zhongxing Xu wrote: > Index: include/llvm/ADT/APInt.h > =================================================================== > --- include/llvm/ADT/APInt.h (revision 55101) > +++ include/llvm/ADT/APInt.h (working copy) > @@ -20,6 +20,7 @@ > #include <c...
2018 Jan 09
1
[PATCH] vhost: Remove the unused variable.
..._WORK_QUEUED, &work->flags); work->fn = fn; - init_waitqueue_head(&work->done); } EXPORT_SYMBOL_GPL(vhost_work_init); diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h index 79c6e7a60a5e..749fe13e061c 100644 --- a/drivers/vhost/vhost.h +++ b/drivers/vhost/vhost.h @@ -20,10 +20,6 @@ typedef void (*vhost_work_fn_t)(struct vhost_work *work); struct vhost_work { struct llist_node node; vhost_work_fn_t fn; - wait_queue_head_t done; - int flushing; - unsigned queue_seq; - unsigned done_seq; unsigned long flags; }; -- 2.13.6
2015 Oct 07
1
Re: [PATCH 1/5] mllib: Don't alias G = Guestfs in Common_utils module.
On Tuesday 06 October 2015 13:30:46 Richard W.M. Jones wrote: > --- > mllib/common_utils.ml | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/mllib/common_utils.ml b/mllib/common_utils.ml > index f8fa8fd..f9c45cc 100644 > --- a/mllib/common_utils.ml > +++ b/mllib/common_u...
2005 Jun 09
1
[PATCH] more xenstore makefile fixes
This allows tools in the python directory to properly link to libxenstore.a on x86-64. --- tools/xenstore/Makefile.orig 2005-06-09 12:56:34.000000000 -0500 +++ tools/xenstore/Makefile 2005-06-09 13:48:06.000000000 -0500 @@ -20,6 +20,9 @@ BASECFLAGS+= -I. CFLAGS+=$(BASECFLAGS) +ifeq ($(XEN_TARGET_ARCH),x86_64) +CFLAGS += -fPIC +endif LDFLAGS=$(PROFILE) -L$(XEN_LIBXC) TESTDIR=`pwd`/testsuite/tmp TESTFLAGS=-DTES...
2010 Aug 02
1
[PATCH] liblx: fix fstat() build warning
...ode ID 21855d1dd84ebfc8eb8b276b0dcb898cac888098 # Parent 3263d0ff9476f574961a3975897fe33601253b56 liblx: fix fstat() build warning. Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com> diff -r 3263d0ff9476 -r 21855d1dd84e tools/libxl/libxl.c --- a/tools/libxl/libxl.c Thu Jul 29 16:53:40 2010 +0100 +++ b/tools/libxl/libxl.c Mon Aug 02 11:20:11 2010 +0800 @@ -20,6 +20,7 @@ #include <string.h> #include <stdlib.h> #include <sys/types.h> +#include <sys/stat.h> #include <fcntl.h> #include <sys/select.h> #include <sys/mman.h> ________________...
2000 Sep 02
1
[2.2.0p1] patch to get "scp -S prog" to work right + man page fix
Hi. This functionality was just added in 2.2.0p1. The patch is self-explanatory. Charles --- scp.c.orig-2.2.0p1 Tue Aug 29 19:11:30 2000 +++ scp.c Sat Sep 2 15:14:58 2000 @@ -262,7 +262,7 @@ extern int optind; fflag = tflag = 0; - while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S")) != EOF) + while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:")) != EOF) switch (ch) { /* User-visible flags. */...
2005 Jan 19
1
Fix for R-devel+Quartz
...ude AppKit as only that subset of Carbon is needed): Index: src/library/grDevices/src/Makefile.in =================================================================== --- src/library/grDevices/src/Makefile.in (revision 32713) +++ src/library/grDevices/src/Makefile.in (working copy) @@ -20,6 +20,8 @@ # need Defn.h etc, and config.h PKG_CPPFLAGS =-I../../../include -I$(top_srcdir)/src/include -DHAVE_CONFIG_H +# need AppKit framework for Quartz (only if Aqua is to be used) +@BUILD_AQUA_TRUE@PKG_LIBS =-framework AppKit all: Makefile Makedeps @$(MAKE) Makedeps Thanks,...
2012 Aug 28
2
Compile syslinux64.exe on ubuntu
...default ./find-mingw64.sh script failed to locate mingw64 on ubuntu, even after root at htpc:~# apt-get install gcc-mingw-w64 So I had to patch the script to let it find mingw64 on ubuntu as well. Patch is below, please apply to syslinux sources: --- syslinux-4.05/win64/find-mingw64.sh.orig 2012-08-28 12:49:17.023627307 +0200 +++ syslinux-4.05/win64/find-mingw64.sh 2012-08-28 12:49:04.167627212 +0200 @@ -20,6 +20,7 @@ amd64-mingw64msvc- \ amd64-mingw32- \ amd64-mingw32msvc- \ + x86_64-w64-mingw32- \ ; do if "${prefix}${cc}" -v > /dev/null 2>&am...
2004 Sep 10
2
-lm ordering
...thing less than stunning. On my 21164A/500 box, "ccc -fast" code is almost twice as fast as "gcc -O -mcpu=ev56", 1:11 vs. 2:03 for encoding a test track with default parameters. This may also be due to the Compaq math library. --- src/flac/Makefile.am.orig Tue Aug 28 15:58:11 2001 +++ src/flac/Makefile.am Tue Aug 28 15:58:19 2001 @@ -29,5 +29,4 @@ encode.h \ file.h -flac_LDFLAGS = -lm -flac_LDADD = $(top_builddir)/src/libFLAC/libFLAC.la +flac_LDADD = $(top_builddir)/src/libFLAC/libFLAC.la -lm --- src/test_streams/Makefile.am.orig Tue Aug 28 16:00:17 2001 +++ src/test...
2010 Apr 07
2
[PATCH] Target::LibVirt: Don't truncate a volume when opening it
...-- lib/Sys/VirtV2V/Target/LibVirt.pm | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/lib/Sys/VirtV2V/Target/LibVirt.pm b/lib/Sys/VirtV2V/Target/LibVirt.pm index c8802ac..99a1ad2 100644 --- a/lib/Sys/VirtV2V/Target/LibVirt.pm +++ b/lib/Sys/VirtV2V/Target/LibVirt.pm @@ -20,6 +20,8 @@ use warnings; package Sys::VirtV2V::Target::LibVirt::Vol; +use POSIX; + use Sys::VirtV2V::UserMessage qw(user_message); sub _new @@ -106,7 +108,9 @@ sub open my $self = shift; my $path = $self->get_path(); - open(my $fd, '>', $path) + + # We want...
2012 Nov 04
1
sample equal number of cases per class
...it into a learn and a test partition. However the learnset should be balanced, i.e. each class should have the same number of cases. I tried and searched a lot, without success so far. Maybe you can help? Some example code *# generate example data df <- data.frame(class = as.factor(sample(1:3, 20, replace = T)), var1 = rnorm(20,3), var2 = rnorm(20,6)) summary(df) # split into learn and test sets using the caret package require(caret) ind <- createDataPartition(df$class, p=.8, list = F, times = 1) # The problem is here: class sizes are not equal) learnset <- df[ind,] summary(learnset...
2006 Jan 26
0
[LLVMdev] VS2005 patch
Hi Morten, If you can make the VS2005 project files availiable on the net then I can test them as I have VS2005 now, so then with Chris'es okay then they could be distributed with LLVM. Thanks, Aaron ----- Original Message ----- From: "Morten Ofstad" <morten at hue.no> To: "LLVM Developers Mailing List&...
2005 Aug 27
3
SYSLINUX 3.11-pre5 -- release candidate -- release on Tuesday
SYSLINUX 3.11-pre5 is hereby a bug fix release candidate. If I don't receive any problem reports, I will release it as-is on Tuesday, August 30. http://www.kernel.org/pub/linux/utils/boot/syslinux/Testing/ -hpa
2010 Dec 14
1
embed Sweave driver in .Rnw file
...able to create the driver from some text included in the text of the .Rnw file: $ svn diff Index: src/library/utils/R/Sweave.R =================================================================== --- src/library/utils/R/Sweave.R (revision 53846) +++ src/library/utils/R/Sweave.R (working copy) @@ -20,6 +20,16 @@ # We don't need srclines for code, but we do need it for text, and it's easiest # to just keep it for everything. +SweaveGetDriver <- function(file){ + txt <- readLines(file) + line <- grep( "\\SweaveDriver", txt, value = TRUE ) + if( length(lin...