Displaying 20 results from an estimated 204 matches for "17,8".
Did you mean:
1,8
2016 Jun 07
0
[PATCH 2/2] ruby: tests: Give each test class and method a unique name.
...4 ++--
ruby/t/tc_810_rhbz664558c6.rb | 4 ++--
ruby/t/tc_820_rhbz1046509.rb | 4 ++--
14 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/ruby/t/tc_010_load.rb b/ruby/t/tc_010_load.rb
index 2ec0314..06922e1 100644
--- a/ruby/t/tc_010_load.rb
+++ b/ruby/t/tc_010_load.rb
@@ -17,7 +17,7 @@
require File::join(File::dirname(__FILE__), 'test_helper')
-class TestLoad < MiniTest::Unit::TestCase
- def test_load
+class Test010Load < MiniTest::Unit::TestCase
+ def test_010_load
end
end
diff --git a/ruby/t/tc_020_create.rb b/ruby/t/tc_020_create.rb
index a2...
2016 Jun 07
3
[PATCH 1/2] ruby: Print exceptions thrown by event callbacks.
---
generator/ruby.ml | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/generator/ruby.ml b/generator/ruby.ml
index 97ccfdc..0f71ccc 100644
--- a/generator/ruby.ml
+++ b/generator/ruby.ml
@@ -404,15 +404,17 @@ event_callback_wrapper_wrapper (VALUE argvv)
return Qnil;
}
+/* Callbacks aren't supposed to throw exceptions. We just print the
+ * exception on stderr and hope for the best.
+ */
static VALUE
event_callback_handle_exception (VALUE not_used, VALUE exn)
{
- /* Callbacks aren't...
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
...ude <linux/types.h>
@@ -80,4 +80,4 @@ struct compat_statfs64 {
__u32 f_spare[4];
} ARCH_PACK_COMPAT_STATFS64;
-#endif /* _UAPI_GENERIC_STATFS_H */
+#endif /* _UAPI_ASM_GENERIC_STATFS_H */
diff --git a/include/uapi/asm-generic/swab.h b/include/uapi/asm-generic/swab.h
index a8e9029..6850417 100644
--- a/include/uapi/asm-generic/swab.h
+++ b/include/uapi/asm-generic/swab.h
@@ -1,5 +1,5 @@
-#ifndef _ASM_GENERIC_SWAB_H
-#define _ASM_GENERIC_SWAB_H
+#ifndef _UAPI_ASM_GENERIC_SWAB_H
+#define _UAPI_ASM_GENERIC_SWAB_H
#include <asm/bitsperlong.h>
@@ -15,4 +15,4 @@
#endif
#endif...
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
...ude <linux/types.h>
@@ -80,4 +80,4 @@ struct compat_statfs64 {
__u32 f_spare[4];
} ARCH_PACK_COMPAT_STATFS64;
-#endif /* _UAPI_GENERIC_STATFS_H */
+#endif /* _UAPI_ASM_GENERIC_STATFS_H */
diff --git a/include/uapi/asm-generic/swab.h b/include/uapi/asm-generic/swab.h
index a8e9029..6850417 100644
--- a/include/uapi/asm-generic/swab.h
+++ b/include/uapi/asm-generic/swab.h
@@ -1,5 +1,5 @@
-#ifndef _ASM_GENERIC_SWAB_H
-#define _ASM_GENERIC_SWAB_H
+#ifndef _UAPI_ASM_GENERIC_SWAB_H
+#define _UAPI_ASM_GENERIC_SWAB_H
#include <asm/bitsperlong.h>
@@ -15,4 +15,4 @@
#endif
#endif...
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
...ude <linux/types.h>
@@ -80,4 +80,4 @@ struct compat_statfs64 {
__u32 f_spare[4];
} ARCH_PACK_COMPAT_STATFS64;
-#endif /* _UAPI_GENERIC_STATFS_H */
+#endif /* _UAPI_ASM_GENERIC_STATFS_H */
diff --git a/include/uapi/asm-generic/swab.h b/include/uapi/asm-generic/swab.h
index a8e9029..6850417 100644
--- a/include/uapi/asm-generic/swab.h
+++ b/include/uapi/asm-generic/swab.h
@@ -1,5 +1,5 @@
-#ifndef _ASM_GENERIC_SWAB_H
-#define _ASM_GENERIC_SWAB_H
+#ifndef _UAPI_ASM_GENERIC_SWAB_H
+#define _UAPI_ASM_GENERIC_SWAB_H
#include <asm/bitsperlong.h>
@@ -15,4 +15,4 @@
#endif
#endif...
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
J...
2018 Mar 20
1
[PATCH] ptr_ring: fix build
...lt;mst at redhat.com>
---
tools/virtio/ringtest/ptr_ring.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tools/virtio/ringtest/ptr_ring.c b/tools/virtio/ringtest/ptr_ring.c
index 477899c..2d566fb 100644
--- a/tools/virtio/ringtest/ptr_ring.c
+++ b/tools/virtio/ringtest/ptr_ring.c
@@ -17,6 +17,8 @@
#define likely(x) (__builtin_expect(!!(x), 1))
#define ALIGN(x, a) (((x) + (a) - 1) / (a) * (a))
#define SIZE_MAX (~(size_t)0)
+#define KMALLOC_MAX_SIZE SIZE_MAX
+#define BUG_ON(x) assert(x)
typedef pthread_spinlock_t spinlock_t;
@@ -57,6 +59,9 @@ static void kfree(voi...
2017 Jun 19
1
Re: [PATCH v7 12/13] utils: Rename ‘guestfs-internal-frontend.h’ to ‘guestfs-utils.h’.
On Monday, 19 June 2017 15:31:28 CEST Richard W.M. Jones wrote:
> The reason it's not just ‘utils.h’ is because Pino is worried that we
> might pick up /usr/include/utils.h from a rogue library.
> ---
> diff --git a/python/MANIFEST.in b/python/MANIFEST.in
> index 116367d16..69db7e5ce 100644
> --- a/p...
2012 Jan 04
1
[PATCH] build: Fix automake warnings
...AKE) -C $(top_builddir)/images
@@ -76,3 +74,5 @@ install-data-hook:
$(MAKE) -f Makefile-pl DESTDIR=$(DESTDIR) install
endif
+
+.PHONY: src_deps test_images
diff --git a/resize/Makefile.am b/resize/Makefile.am
index 5046a8c..3f33118 100644
--- a/resize/Makefile.am
+++ b/resize/Makefile.am
@@ -17,6 +17,8 @@
include $(top_srcdir)/subdir-rules.mk
+SOURCES =
+
EXTRA_DIST = \
$(SOURCES) \
virt-resize.pod \
@@ -27,7 +29,7 @@ CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o virt-resize test.img
if HAVE_OCAML
# Alphabetical order.
-SOURCES = \
+SOURCES += \
progress_c.c \
progress.ml...
2005 Dec 17
0
[patch] alpha grab errno from right register after syscall
...ndepent test boots that both patches fixes alpha klibc.
Signed-off-by: maximilian attems <janitor@sternwelten.at>
--- libc-1.1.1.orig/klibc/arch/alpha/syscall.S 2005-09-06 13:49:34.000000000 -0700
+++ klibc-1.1.1/klibc/arch/alpha/syscall.S 2005-12-15 23:42:02.000000000 -0800
@@ -17,8 +17,8 @@
2:
ldgp gp, 0(pv)
lda a1, errno
+ stl v0, 0(a1)
lda v0, -1(zero)
- stl a3, 0(a1)
1:
ret zero,(ra),1
2009 Aug 05
1
[PATCH server] associated nics w/ network base class as it is in the db
..._of :type,
:message => 'A type must be specified.'
validates_presence_of :name,
diff --git a/src/app/models/physical_network.rb b/src/app/models/physical_network.rb
index 52a748a..f50eeff 100644
--- a/src/app/models/physical_network.rb
+++ b/src/app/models/physical_network.rb
@@ -17,8 +17,6 @@
# also available at http://www.gnu.org/copyleft/gpl.html.
class PhysicalNetwork < Network
- has_many :nics
-
def is_destroyable?
nics.empty?
end
diff --git a/src/app/models/vlan.rb b/src/app/models/vlan.rb
index 217a89c..e34dddc 100644
--- a/src/app/models/vlan.rb
+++...
2016 Jul 28
2
[ORC JIT] Exposing IndirectStubsManager from CompileOnDemandLayer.h
...r(CalledFnName, FnBodyAddr)) {
+ return 0;
+ }
+ else
+ return FnBodyAddr;
+ }
+ }
+ return 0;
+ }
+
+private:
diff --git a/LogicalDylib.h b/LogicalDylib.h
index 84e3bf5..2e35cfd 100644
--- a/LogicalDylib.h
+++ b/LogicalDylib.h
@@ -17,6 +17,8 @@
#include "JITSymbol.h"
#include <string>
#include <vector>
+#include "llvm/IR/Mangler.h"
+#include "llvm/Support/raw_ostream.h"
namespace llvm {
namespace orc {
@@ -77,6 +79,24 @@ public:
return LMH->Resources;
}
+ static std::...
2009 Jun 04
1
[PATCH node] Hostname is now properly persisted between reboots. rhbz#504166
...2 13 15
+warn() { printf '%s\n' "$*" >&2; }
+
+if ! is_local_storage_configured; then
+ warn "Local storage must be configured prior to setting the hostname."
+ exit 99
+fi
+
HOSTNAME_FILE="/etc/sysconfig/network"
function set_hostname {
@@ -17,8 +24,9 @@ set /files$HOSTNAME_FILE/HOSTNAME "$1"
EOF
rc=$?
if [ $rc = 0 ]; then
- /bin/hostname "$1"
- rc=$?
+ /bin/hostname "$1"
+ rc=$?
+ if [ $rc -eq 0 ]; then /usr/sbin/persist $HOSTNAME_FILE; fi
fi
stop_log
ret...
2006 Dec 25
3
[patch] fix parallel building of tftp-hpa
if you try to build tftp-hpa in parallel, it may fail as the tftp and tftpd
subdirs may try to link before the libcommon.a has a chance to be generated
in the common subdir
trivial patch attached to address this
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 827 bytes
Desc: not available
URL:
2017 Jun 30
4
[PATCH v2 0/4] Allow cross-building of syslinux
Hi together,
this is the second version of my cross-compilation patch serie. I'm sending it in the hope to get an honest review, and possibly see the patches integrated upstream.
Those patches allow to build syslinux using a toolchain different from the host one by explicitely using the host toolchain for the utilities that are required at build-time / on the build machine.
I am using the
2016 Jul 29
0
[ORC JIT] Exposing IndirectStubsManager from CompileOnDemandLayer.h
...> + else
> + return FnBodyAddr;
> + }
> + }
> + return 0;
> + }
> +
> +private:
>
>
> diff --git a/LogicalDylib.h b/LogicalDylib.h
> index 84e3bf5..2e35cfd 100644
> --- a/LogicalDylib.h
> +++ b/LogicalDylib.h
> @@ -17,6 +17,8 @@
> #include "JITSymbol.h"
> #include <string>
> #include <vector>
> +#include "llvm/IR/Mangler.h"
> +#include "llvm/Support/raw_ostream.h"
>
> namespace llvm {
> namespace orc {
> @@ -77,6 +79,24 @@ public:
>...
2016 Jul 29
2
[ORC JIT] Exposing IndirectStubsManager from CompileOnDemandLayer.h
...FnBodyAddr;
>> + }
>> + }
>> + return 0;
>> + }
>> +
>> +private:
>>
>>
>> diff --git a/LogicalDylib.h b/LogicalDylib.h
>> index 84e3bf5..2e35cfd 100644
>> --- a/LogicalDylib.h
>> +++ b/LogicalDylib.h
>> @@ -17,6 +17,8 @@
>> #include "JITSymbol.h"
>> #include <string>
>> #include <vector>
>> +#include "llvm/IR/Mangler.h"
>> +#include "llvm/Support/raw_ostream.h"
>>
>> namespace llvm {
>> namespace orc {
>>...
2007 Apr 18
2
[PATCH RFC] Change softlockup watchdog to ignore stolen time
...rs? Mightn't it report lockups just because there
was no timer event?
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
diff -r b41fb9e70d72 kernel/softlockup.c
--- a/kernel/softlockup.c Thu Mar 22 16:25:15 2007 -0700
+++ b/kernel/softlockup.c Thu Mar 22 16:26:52 2007 -0700
@@ -17,9 +17,11 @@
static DEFINE_SPINLOCK(print_lock);
-static DEFINE_PER_CPU(unsigned long, touch_timestamp);
-static DEFINE_PER_CPU(unsigned long, print_timestamp);
+static DEFINE_PER_CPU(unsigned long long, touch_timestamp);
+static DEFINE_PER_CPU(unsigned long long, print_timestamp);
static DEFI...
2007 Apr 18
2
[PATCH RFC] Change softlockup watchdog to ignore stolen time
...rs? Mightn't it report lockups just because there
was no timer event?
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
diff -r b41fb9e70d72 kernel/softlockup.c
--- a/kernel/softlockup.c Thu Mar 22 16:25:15 2007 -0700
+++ b/kernel/softlockup.c Thu Mar 22 16:26:52 2007 -0700
@@ -17,9 +17,11 @@
static DEFINE_SPINLOCK(print_lock);
-static DEFINE_PER_CPU(unsigned long, touch_timestamp);
-static DEFINE_PER_CPU(unsigned long, print_timestamp);
+static DEFINE_PER_CPU(unsigned long long, touch_timestamp);
+static DEFINE_PER_CPU(unsigned long long, print_timestamp);
static DEFI...
2019 Jan 18
0
[klibc:master] Fix sparc assembly when compiled as PIC
....S b/usr/klibc/arch/sparc/pipe.S
index a8abf3c..e278bda 100644
--- a/usr/klibc/arch/sparc/pipe.S
+++ b/usr/klibc/arch/sparc/pipe.S
@@ -5,6 +5,7 @@
* they return the two file descriptors in %o0 and %o1.
*/
+#include <machine/asm.h>
#include <asm/unistd.h>
.globl pipe
@@ -16,8 +17,8 @@ pipe:
t 0x10
bcc 1f
nop
- sethi %hi(errno), %g4
- or %g4, %lo(errno), %g4
+ PIC_PROLOGUE(%g1,%g4)
+ SET(errno,%g1,%g4)
st %o0,[%g4]
retl
mov -1, %o0
diff --git a/usr/klibc/arch/sparc/syscall.S b/usr/klibc/arch/sparc/syscall.S
index c0273f7..52a8583 100644
--- a/usr/klibc/arch/s...