search for: 1,216

Displaying 8 results from an estimated 8 matches for "1,216".

Did you mean: 1,126
2008 Nov 11
1
Multiple XY Lines Plot
...lot the lines I get a message saying the axis size or limits are wrong or different. I used in plot() x = 3-W and y = 2-H, once they are greater values…. There’s also another problem, the only line I was able to plot (with lines()) is a straight and I need lines passing by the x-y points. 1-H 1-W 2-H 2-W 3-H 3-W 4-H 4-W 0 0 0 0 0 0 0 0 -0,197 5,15 -0,345 3,83 -0,152 3,61 -0,085 3,2 -0,394 8,27 -0,48 8 -0,304 5,31 -0,23 4,1 -0,591 11,77 -0,685 12,41 -0,456 6,35 -0,285 4,65 -0,788 16,12 -0,905 16,82 -0,608 7,85 -0,38 6,35 -0,985 19,...
2007 Apr 18
0
[RFC, PATCH 13/24] i386 Vmi system header
...with the VMI inline assembler, and just call read_cr4() directly. Note that shutdown_halt is unused, but provided in case there is really a use for it. See arch/i386/kernel/smp.c for a potential call site during AP shutdown. Signed-off-by: Zachary Amsden <zach@vmware.com> Index: linux-2.6.16-rc5/include/asm-i386/system.h =================================================================== --- linux-2.6.16-rc5.orig/include/asm-i386/system.h 2006-03-10 12:55:08.000000000 -0800 +++ linux-2.6.16-rc5/include/asm-i386/system.h 2006-03-10 13:03:36.000000000 -0800 @@ -9,6 +9,8 @@ #ifdef __K...
2007 Apr 18
0
[RFC, PATCH 13/24] i386 Vmi system header
...with the VMI inline assembler, and just call read_cr4() directly. Note that shutdown_halt is unused, but provided in case there is really a use for it. See arch/i386/kernel/smp.c for a potential call site during AP shutdown. Signed-off-by: Zachary Amsden <zach@vmware.com> Index: linux-2.6.16-rc5/include/asm-i386/system.h =================================================================== --- linux-2.6.16-rc5.orig/include/asm-i386/system.h 2006-03-10 12:55:08.000000000 -0800 +++ linux-2.6.16-rc5/include/asm-i386/system.h 2006-03-10 13:03:36.000000000 -0800 @@ -9,6 +9,8 @@ #ifdef __K...
2010 Apr 19
1
[PATCH matahari] Removes all code for the previous CPUWrapper class.
This class has been replaced by the ProcessorsAgent. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- src/Makefile.am | 4 - src/cpu.cpp | 216 ------------------------------------------------------- src/cpu.h | 111 ---------------------------- src/host.cpp | 24 ------ src/host.h | 3 - src/schema.xml | 16 ---- 6 files changed, 0 insertions(+), 374 deletions(-) delete mode 100644 src/cpu.cpp delete mode 100644...
2007 Jun 20
9
[PATCH 0/9] x86 boot protocol updates
...quot;cli" is probably completely redundant anyway, since the bootloader would have to be completely mad to start the kernel with interrupts enabled.) - Change the format of bzImage to contain an ELF file. The initial part of the bzImage is still the boot_params header followed by the 16-bit setup code needed for booting from BIOS. But rather than having the self-decompressing kernel follow as a naked blob of code+data, its actually wrapped in a page-aligned ELF file. This allows the bootloader to extract it and parse it, and use that to know what memory the booting ke...
2007 Jun 20
9
[PATCH 0/9] x86 boot protocol updates
...quot;cli" is probably completely redundant anyway, since the bootloader would have to be completely mad to start the kernel with interrupts enabled.) - Change the format of bzImage to contain an ELF file. The initial part of the bzImage is still the boot_params header followed by the 16-bit setup code needed for booting from BIOS. But rather than having the self-decompressing kernel follow as a naked blob of code+data, its actually wrapped in a page-aligned ELF file. This allows the bootloader to extract it and parse it, and use that to know what memory the booting ke...
2017 Apr 27
4
[PATCH 0/4] common: Add a simple mini-library for handling qemu command and config files.
Currently we have an OCaml library for generating the qemu command line (used only by ‘virt-v2v -o qemu’). However we also generate a qemu command line in ‘lib/launch-direct.c’, and we might in future need to generate a ‘-readconfig’-compatible configuration file if we want to go beyond 10,000 drives for scalability testing. Therefore this patch series reimplements the qemu command line code as a small C library (common/qemuopts), extends it to support qemu config files, and then reimplements both ‘lib/launch-direct.c’ and ‘virt-v2v -o qemu’ to use it. It also fixes a few bugs. I...
2017 Aug 01
6
[PATCH v2 0/3] common: Add a lightweight OCaml binding for PCRE.
v2: - Change the OCaml code in the daemon to use PCRE instead of Str. - Call pcre_compile2 so we can capture the error code on failure. - Extend the test suite. - Some other cleanups, but very minor. Rich.