Displaying 20 results from an estimated 157 matches for "18,9".
Did you mean:
1,9
2003 Nov 29
1
[PATCH] ash not make -j safe, make spotless updates
...ss: clean
find . -name \*~ -not -type d -print0 | xargs -0rt rm -f
diff -p -purNx linux klibc-0.87.orig/ipconfig/Makefile klibc-0.87/ipconfig/Makefile
--- klibc-0.87.orig/ipconfig/Makefile 2003-05-01 21:10:35.000000000 +0200
+++ klibc-0.87/ipconfig/Makefile 2003-11-29 13:20:53.000000000 +0100
@@ -18,9 +18,9 @@ $(LIB): $(OBJS)
$(AR) cru $(LIB) $(OBJS)
clean:
- $(RM) *.o $(PROGS) core
+ $(RM) *.o $(PROG) $(LIB) core
-spotless:
+spotless: clean
$(RM) *~ .*.d
ifneq ($(wildcard .*.d),)
diff -p -purNx linux klibc-0.87.orig/kinit/Makefile klibc-0.87/kinit/Makefile
--- klibc-0.87.orig/kini...
2013 Mar 13
2
How to read a *.csv file in R?
...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 18 46,34 50,5 -20,6
May 87 18,6 32,86 52,3 -14,96
June 87 18,8 59,32 53,5 -10,54
Jul...
2009 Jul 03
1
[LLVMdev] Current SVN: Compile error on Fedora 11 Linux/x64-gcc 4.40
Hi,
I need to add a missing include to get current SVN to compile.
--- CodeGen/BinaryObject.h (revision 74762)
+++ CodeGen/BinaryObject.h (working copy)
@@ -18,6 +18,9 @@
#include <string>
#include <vector>
+#include <stdint.h>
+
+
namespace llvm {
My system does not know about uint8_t without this include file.
Kind regards,
Maurice
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ll...
2014 Sep 09
3
[PATCH] ppc64: ELFv2: Load TOC value in system call stub
...ibm.com>
---
usr/klibc/arch/ppc64/sysstub.ph | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/usr/klibc/arch/ppc64/sysstub.ph b/usr/klibc/arch/ppc64/sysstub.ph
index b3f6e38..a0c6d41 100644
--- a/usr/klibc/arch/ppc64/sysstub.ph
+++ b/usr/klibc/arch/ppc64/sysstub.ph
@@ -18,6 +18,9 @@ sub make_sysstub($$$$$@) {
#if _CALL_ELF == 2
.type ${fname},\@function
${fname}:
+0: addis 2,12,(.TOC.-0b)\@ha
+ addi 2,2,(.TOC.-0b)\@l
+ .localentry ${fname},.-${fname}
#else
.section ".opd","aw"
.balign 8
--
1.7.1
2019 Oct 12
2
[PATCH RFC v1 1/2] vhost: option to fetch descriptors through an independent struct
...vers/vhost/test.c | 17 ++-
> drivers/vhost/vhost.c | 299 +++++++++++++++++++++++++++++++++++++++++-
> drivers/vhost/vhost.h | 16 +++
> 3 files changed, 327 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c
> index 056308008288..39a018a7af2d 100644
> --- a/drivers/vhost/test.c
> +++ b/drivers/vhost/test.c
> @@ -18,6 +18,9 @@
> #include "test.h"
> #include "vhost.h"
>
> +static int newcode = 0;
> +module_param(newcode, int, 0644);
> +
> /* Max number of bytes transferred b...
2019 Oct 12
2
[PATCH RFC v1 1/2] vhost: option to fetch descriptors through an independent struct
...vers/vhost/test.c | 17 ++-
> drivers/vhost/vhost.c | 299 +++++++++++++++++++++++++++++++++++++++++-
> drivers/vhost/vhost.h | 16 +++
> 3 files changed, 327 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c
> index 056308008288..39a018a7af2d 100644
> --- a/drivers/vhost/test.c
> +++ b/drivers/vhost/test.c
> @@ -18,6 +18,9 @@
> #include "test.h"
> #include "vhost.h"
>
> +static int newcode = 0;
> +module_param(newcode, int, 0644);
> +
> /* Max number of bytes transferred b...
2007 Dec 14
1
segfault isoreg with NAs
...) { : missing value where
TRUE/FALSE needed
Please find below a (temporary) patch (against Revision 43692)
for both the R source and the help file.
Kind regards,
Tobias
### patch isoreg.R ###
--- isoreg.R 2007-12-14 19:07:47.000000000 +0100
+++ isoreg2.R 2007-12-14 19:11:20.000000000 +0100
@@ -18,6 +18,9 @@
##
isoreg <- function(x, y=NULL)
{
+ if (any(is.na(x))) stop("x may not contain NA values")
+ if (any(is.na(y))) stop("y may not contain NA values")
+
xy <- xy.coords(x,y)
x <- xy$x
isOrd <- (!is.null(xy$xlab) && xy$xl...
2015 Oct 21
1
[PATCH] v2v: move open_guestfs to Types
...es, so this avoids a circular
dependency.
---
v2v/types.ml | 10 ++++++++++
v2v/types.mli | 5 +++++
v2v/v2v.ml | 11 ++---------
3 files changed, 17 insertions(+), 9 deletions(-)
diff --git a/v2v/types.ml b/v2v/types.ml
index cc417bc..a295172 100644
--- a/v2v/types.ml
+++ b/v2v/types.ml
@@ -18,6 +18,9 @@
open Printf
+open Common_gettext.Gettext
+open Common_utils
+
(* Types. See types.mli for documentation. *)
type source = {
@@ -379,6 +382,13 @@ let string_of_target_buses buses =
string_of_target_bus_slots "ide" buses.target_ide_bus ^
string_of_target_bus_slots...
2019 Oct 14
2
[PATCH RFC v1 1/2] vhost: option to fetch descriptors through an independent struct
...s/vhost/vhost.c | 299 +++++++++++++++++++++++++++++++++++++++++-
>>> drivers/vhost/vhost.h | 16 +++
>>> 3 files changed, 327 insertions(+), 5 deletions(-)
>>>
>>> diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c
>>> index 056308008288..39a018a7af2d 100644
>>> --- a/drivers/vhost/test.c
>>> +++ b/drivers/vhost/test.c
>>> @@ -18,6 +18,9 @@
>>> #include "test.h"
>>> #include "vhost.h"
>>> +static int newcode = 0;
>>> +module_param(newcode, int, 0644);...
2019 Oct 14
2
[PATCH RFC v1 1/2] vhost: option to fetch descriptors through an independent struct
...s/vhost/vhost.c | 299 +++++++++++++++++++++++++++++++++++++++++-
>>> drivers/vhost/vhost.h | 16 +++
>>> 3 files changed, 327 insertions(+), 5 deletions(-)
>>>
>>> diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c
>>> index 056308008288..39a018a7af2d 100644
>>> --- a/drivers/vhost/test.c
>>> +++ b/drivers/vhost/test.c
>>> @@ -18,6 +18,9 @@
>>> #include "test.h"
>>> #include "vhost.h"
>>> +static int newcode = 0;
>>> +module_param(newcode, int, 0644);...
2017 Jun 15
0
[PATCH v6 04/41] mllib: Split ‘Common_utils’ into ‘Std_utils’ + ‘Common_utils’.
...t, Fifth Floor, Boston, MA 02110-1301 USA.
*)
-open Common_gettext.Gettext
+open Std_utils
open Common_utils
+open Common_gettext.Gettext
open Utils
diff --git a/builder/cmdline.ml b/builder/cmdline.ml
index f20c0936c..a1f901144 100644
--- a/builder/cmdline.ml
+++ b/builder/cmdline.ml
@@ -18,8 +18,9 @@
(* Command line argument parsing. *)
-open Common_gettext.Gettext
+open Std_utils
open Common_utils
+open Common_gettext.Gettext
open Getopt.OptionName
open Customize_cmdline
diff --git a/builder/downloader.ml b/builder/downloader.ml
index ef3cd67cb..d6b27c8c7 100644
--- a/buil...
2011 Mar 16
0
[GIT PULL] elflink compiler warning fixes
...module_load_dependencies(module_name, MODULES_DEP);
- spawn_load(module_name, argv);
+ spawn_load(module_name, (const char **)argv);
} else if (!strcmp(module_name + len_mn - 2, ".0")) {
execute(cmd, KT_PXE);
} else if (!strcmp(module_name + len_mn - 3, ".bs")) {
@@ -418,7 +418,6 @@ void process_command(const char *cmd, bool history)
else
execute(temp_cmd, KT_KERNEL);
-cleanup:
free(argv);
free(temp_cmd);
}
diff --git a/com32/elflink/ldlinux/colors.c b/com32/elflink/ldlinux/colors.c
index 68732bd..c1ef390 100644
--- a/com32/elflink/ldlinux/colors.c
+++...
2019 Apr 08
0
[PATCH 01/11] v2v: Move have_selinux to utils.
...*)
+let have_selinux =
+ 0 = Sys.command "getenforce 2>/dev/null | grep -isq Enforcing"
+
(* URI quoting. *)
let uri_quote str =
let len = String.length str in
diff --git a/v2v/utils.mli b/v2v/utils.mli
index 4635d4808..61cba1bbd 100644
--- a/v2v/utils.mli
+++ b/v2v/utils.mli
@@ -18,6 +18,9 @@
(** Utilities used in virt-v2v only. *)
+val have_selinux : bool
+(** True if SELinux is enabled and enforcing on the host. *)
+
val uri_quote : string -> string
(** Take a string and perform %xx escaping as used in some parts of URLs. *)
--
2.20.1
2017 Jan 13
0
[PATCH 3/4] Honor user's $(htmldir) and do not override GNU defaults for $(docdir)
...+ b/doc/Makefile.am
@@ -31,8 +31,6 @@ FLAC.tag:
mkdir -p html/api
endif
-docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)
-
doc_DATA = \
FLAC.tag
diff --git a/doc/html/Makefile.am b/doc/html/Makefile.am
index 813b55f2..ef4a12d8 100644
--- a/doc/html/Makefile.am
+++ b/doc/html/Makefile.am
@@ -18,9 +18,7 @@
SUBDIRS = images
-docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html
-
-doc_DATA = \
+html_DATA = \
changelog.html \
developers.html \
documentation.html \
@@ -46,10 +44,10 @@ if FLaC__HAS_DOXYGEN
# The install targets don't copy whole directories so we have to
# handle...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 05/13] asm-offsets update
...veira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/arch/x86_64/kernel/asm-offsets.c
===================================================================
--- work-pv.orig/arch/x86_64/kernel/asm-offsets.c
+++ work-pv/arch/x86_64/kernel/asm-offsets.c
@@ -18,6 +18,9 @@
#ifdef CONFIG_PARAVIRT
#include <asm/paravirt.h>
#endif
+#ifdef CONFIG_LGUEST_GUEST
+#include <asm/lguest.h>
+#endif
#define DEFINE(sym, val) \
asm volatile("\n->" #sym " %0 " #val : : "i" (val))
@@ -89,5 +92,51 @@ int main(void...
1998 Oct 28
1
Bug in 0.62.4
A non-text attachment was scrubbed...
Name: not available
Type: text
Size: 483 bytes
Desc: not available
Url : https://stat.ethz.ch/pipermail/r-help/attachments/19981028/1a6d806a/attachment.pl
2006 Jan 27
0
[PATCH] fentonups patch to make it work with some powercom ups's
...ting in the inline post.
I'm not in list, so please send me copy if/when replying.
--
Vladislav Bogdanov
-------------- next part --------------
--- nut-2.0.2/drivers/fentonups.c.orig 2005-05-26 15:22:27.000000000 +0300
+++ nut-2.0.2/drivers/fentonups.c 2006-01-27 14:20:07.000000000 +0200
@@ -18,6 +18,9 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#include <sys/ioctl.h>
+#include <sys/types.h>
+#include <sys/termios.h>
#include "main.h"
#include "serial.h"
@@ -176,11 +179,27 @@ static char *get_id(void)
re...
2012 Jan 27
1
[PATCH] Fix for udev >= 176
I've pushed this upstream already, since Fedora Rawhide doesn't work
without this patch. I'm posting here for the benefit of other distros
that might hit this problem.
Rich.
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 05/13] asm-offsets update
...veira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/arch/x86_64/kernel/asm-offsets.c
===================================================================
--- work-pv.orig/arch/x86_64/kernel/asm-offsets.c
+++ work-pv/arch/x86_64/kernel/asm-offsets.c
@@ -18,6 +18,9 @@
#ifdef CONFIG_PARAVIRT
#include <asm/paravirt.h>
#endif
+#ifdef CONFIG_LGUEST_GUEST
+#include <asm/lguest.h>
+#endif
#define DEFINE(sym, val) \
asm volatile("\n->" #sym " %0 " #val : : "i" (val))
@@ -89,5 +92,51 @@ int main(void...
2005 Feb 16
1
memmem broken?
We have a bad bug in udev if compiled with klibc. I seems that the needle
string can't have a strlen of 1. This test case illustrates it:
#include <stdio.h>
#include <string.h>
int main(int argc, char *argv[], char *envp[])
{
char *hay = "a/b";
char *needle = "/";
if (memmem(hay, strlen(hay), needle, strlen(needle)) == NULL)
printf("This uses the