Displaying 20 results from an estimated 659 matches for "20,7".
Did you mean:
2,7
2012 Feb 14
1
Calculate mean between to classes for each ID
An embedded and charset-unspecified text was scrubbed...
Name: ikke tilgjengelig
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120214/4d7d2c92/attachment.pl>
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/...
2015 Dec 07
2
[libdrm v2 14/14] Bump version for release
You remove public functions... is this enough for a so version bump?
On Thu, Nov 26, 2015 at 8:02 PM, Ben Skeggs <skeggsb at gmail.com> wrote:
> From: Ben Skeggs <bskeggs at redhat.com>
>
> Signed-off-by: Ben Skeggs <bskeggs at redhat.com>
> ---
> configure.ac | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/configure....
2019 Jul 10
1
[p2v PATCH] Use List::MoreUtils instead of List::Util
...Utils, which is
available, and provides the same functionality.
---
generate-p2v-config.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/generate-p2v-config.pl b/generate-p2v-config.pl
index 01387e0..be98838 100755
--- a/generate-p2v-config.pl
+++ b/generate-p2v-config.pl
@@ -20,7 +20,7 @@ use warnings;
use Class::Struct;
use Getopt::Long;
-use List::Util qw(any);
+use List::MoreUtils qw(any);
struct ConfigSection =>
{
--
2.21.0
2023 Mar 07
1
[COMMON PATCH v2 2/4] inject_virtio_win: add Virtio_SCSI to block_type
...rtio_SCSI | IDE
and net_type = Virtio_net | E1000 | RTL8139
and machine_type = I440FX | Q35 | Virt
diff --git a/mlcustomize/inject_virtio_win.mli b/mlcustomize/inject_virtio_win.mli
index 0ced02e..58169e1 100644
--- a/mlcustomize/inject_virtio_win.mli
+++ b/mlcustomize/inject_virtio_win.mli
@@ -20,7 +20,7 @@
type t (** Handle *)
-type block_type = Virtio_blk | IDE
+type block_type = Virtio_blk | Virtio_SCSI | IDE
and net_type = Virtio_net | E1000 | RTL8139
and machine_type = I440FX | Q35 | Virt
--
2.31.1
2023 Mar 10
1
[COMMON PATCH v3 2/4] inject_virtio_win: add Virtio_SCSI to block_type
...rtio_SCSI | IDE
and net_type = Virtio_net | E1000 | RTL8139
and machine_type = I440FX | Q35 | Virt
diff --git a/mlcustomize/inject_virtio_win.mli b/mlcustomize/inject_virtio_win.mli
index 0ced02e..58169e1 100644
--- a/mlcustomize/inject_virtio_win.mli
+++ b/mlcustomize/inject_virtio_win.mli
@@ -20,7 +20,7 @@
type t (** Handle *)
-type block_type = Virtio_blk | IDE
+type block_type = Virtio_blk | Virtio_SCSI | IDE
and net_type = Virtio_net | E1000 | RTL8139
and machine_type = I440FX | Q35 | Virt
--
2.31.1
2010 Mar 08
1
[PATCH] ExecHelper: Use tmpfile() instead of File::Temp->new()
...works consistently.
---
lib/Sys/VirtV2V/ExecHelper.pm | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/Sys/VirtV2V/ExecHelper.pm b/lib/Sys/VirtV2V/ExecHelper.pm
index 110ae9f..f577ff6 100644
--- a/lib/Sys/VirtV2V/ExecHelper.pm
+++ b/lib/Sys/VirtV2V/ExecHelper.pm
@@ -20,7 +20,7 @@ package Sys::VirtV2V::ExecHelper;
use strict;
use warnings;
-use File::Temp;
+use File::Temp qw(:POSIX);
use IPC::Open3;
use POSIX ":sys_wait_h";
@@ -71,7 +71,7 @@ sub run
my $null;
open($null, '<', '/dev/null') or die("Failed to open /...
2010 May 05
1
[PATCH server] Upgrade rails gem version for F13
...r Cl?ment <aclement at linagora.com>
---
src/config/environment.rb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/config/environment.rb b/src/config/environment.rb
index 9c1a9fa..ca6ed03 100644
--- a/src/config/environment.rb
+++ b/src/config/environment.rb
@@ -20,7 +20,7 @@
# Be sure to restart your web server when you modify this file.
# Specifies gem version of Rails to use when vendor/rails is not present
-RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION
+RAILS_GEM_VERSION = '2.3.5' unless defined? RAILS_GEM_VERSION
#...
2010 Mar 31
1
[PATCH] Upgrading the server to work with Rails 2.3.4.
...er.rb | 2 +-
src/config/environment.rb | 2 +-
src/config/initializers/new_rails_defaults.rb | 6 +++++-
3 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/src/app/controllers/application_controller.rb b/src/app/controllers/application_controller.rb
index 7e2041f..4c4666e 100644
--- a/src/app/controllers/application_controller.rb
+++ b/src/app/controllers/application_controller.rb
@@ -25,7 +25,7 @@ class ApplicationController < ActionController::Base
# FIXME: once all controller classes include this, remove here
include ApplicationService
- i...
2005 Apr 15
2
Logwatch
...information
in the messages file, but it is easy to tweak. The patch below will
give you some statistics regarding POP3 and IMAP usage.
I believe I grabbed all of the differences in the unified diff below.
If I missed anything, please post. :)
-Rich
--- /etc/log.d/conf/services/imapd.conf 2005-04-15 14:24:52.000000000 -0400
+++ /etc/log.d/conf/services/imapd.conf 2005-04-15 14:51:52.073609243 -0400
@@ -20,7 +20,7 @@
# Only give lines pertaining to courier...
# I'm not sure if this is complete, especially for the new webmail
daemon in 0.44.1
#but you will get at least all curren...
2017 Jun 15
0
[PATCH v6 04/41] mllib: Split ‘Common_utils’ into ‘Std_utils’ + ‘Common_utils’.
...in
/mllib/common_utils_tests
/mllib/dummy
/mllib/getopt_tests
-/mllib/guestfs_config.ml
/mllib/JSON_tests
-/mllib/libdir.ml
/mllib/oUnit-*
/ocaml/bindtests.bc
/ocaml/bindtests.opt
diff --git a/Makefile.am b/Makefile.am
index 48f538475..64ac23f2e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -20,7 +20,7 @@ include $(top_srcdir)/common-rules.mk
ACLOCAL_AMFLAGS = -I m4
# The generator - must be before anything else.
-SUBDIRS = generator
+SUBDIRS = common/mlstdutils generator
# Must be the first tests that run.
if ENABLE_APPLIANCE
diff --git a/builder/Makefile.am b/builder/Makefile.am...
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());...
2005 Jun 05
2
pxelinux and DISPLAY
I've begun tinkering with syslinux v3 and have uncovered an anomoly with
the DISPLAY file when called by pxelinux.0.
If I have:
DISPLAY boot.msg
With an "^Xsplash.lss\n" in the file boot.msg (exactly: 18 73 70 6C 61
73 68 2E 6C 73 73 0A) file, it will fail to load the rle image. And
produce some goofy results in the tftpd log:
Jun 5 06:27:06 pxe in.tftpd[24649]: RRQ from
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...
2009 Jan 19
1
patch for textspecial and defaultfont in xfig
...XFigDeviceDriver */
error(_("unable to start device xfig"));
Index: src/library/grDevices/man/xfig.Rd
===================================================================
--- src/library/grDevices/man/xfig.Rd (revision 47637)
+++ src/library/grDevices/man/xfig.Rd (working copy)
@@ -20,7 +20,7 @@
paper = "default", horizontal = TRUE,
width = 0, height = 0, family = "Helvetica",
pointsize = 12, bg = "transparent", fg = "black",
- pagecentre = TRUE)
+ pagecentre = TRUE, defaultfont = FALSE, textspecial = FALSE)...
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...
2013 Aug 28
7
[PATCH] x86/apic: remove DMI checks in bigsmp driver for obsolete systems
...uot;, {
- DMI_MATCH(DMI_BIOS_VENDOR, "HP"),
- DMI_MATCH(DMI_BIOS_VERSION, "P47-"),
- }},
- { force_bigsmp, "UNISYS ES7000-ONE", {
- DMI_MATCH(DMI_PRODUCT_NAME, "ES7000-ONE")
- }},
-
- { }
-};
-
-
static __init int probe_bigsmp(void)
{
/*
@@ -47,8 +20,7 @@ static __init int probe_bigsmp(void)
if (acpi_gbl_FADT.flags &
(ACPI_FADT_APIC_CLUSTER | ACPI_FADT_APIC_PHYSICAL))
def_to_bigsmp = 1;
- else if (!def_to_bigsmp)
- dmi_check_system(bigsmp_dmi_table);
+
return def_to_bigsmp;
}
--
1.7.4.5
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...
2015 Nov 27
0
[libdrm v2 14/14] Bump version for release
From: Ben Skeggs <bskeggs at redhat.com>
Signed-off-by: Ben Skeggs <bskeggs at redhat.com>
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index b929d36..7678572 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@
AC_PREREQ([2.63])
AC_INIT([libdrm],
- [2.4.65],
+ [2.4.66],
[https://bugs.freedesktop.org/enter_bug.cgi?product=DRI],
[libdrm])
--
2.6.3