Displaying 20 results from an estimated 81 matches for "1,87".
Did you mean:
1,8
2003 Aug 01
1
shading in image()
...image plot look nicer. with image() it looks very
facetted, and I would like to make it look smoother.
I've tried with interp.surface() in fields package but it (obviously) makes
nan values at the borders and around nan.
Maybe an example would make me explain better:
data(volcano)
par(mfrow=c(1,2))
x <- 10*(1:nrow(volcano))
y <- 10*(1:ncol(volcano))
volcano[seq(1,87,by=10),seq(1,61,by=10)]<-NA;
image(x, y, volcano, col = terrain.colors(100))
## This is what I've tried with interp.surface()
library(fields)
newx<-seq(10,870,by=2);
newy<-seq(10,610,by=2);
volcano2<-inte...
2019 Feb 08
0
[PATCH v2 3/3] v2v: tests: test paths for installation of linux guest tools
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
---
v2v/Makefile.am | 1 +
v2v/test-v2v-copy-guest-tools.sh | 87 ++++++++++++++++++++++++++++++++
2 files changed, 88 insertions(+)
create mode 100755 v2v/test-v2v-copy-guest-tools.sh
diff --git a/v2v/Makefile.am b/v2v/Makefile.am
index 2312812fb..84667e11d 100644
--- a/v2v/Makefile.am
+++ b/v2v/Makefile.am
@@ -456,6 +...
2007 Nov 15
0
6 commits - libswfdec/compiler.c libswfdec/swfdec_as_date.h libswfdec/swfdec_text_format.c libswfdec/swfdec_xml.c test/dump.c test/render.c test/render-fast.c
libswfdec/compiler.c | 2
libswfdec/swfdec_as_date.h | 2
libswfdec/swfdec_text_format.c | 2
libswfdec/swfdec_xml.c | 2
test/dump.c | 1
test/render-fast.c | 102 -----------------------------------------
test/render.c | 87 ----------------------------------
7 files changed, 3 insertions(+), 195 deletions(-)
New commits:
commit 2c9d3fef226dd1ffee9548d2207ba07c8e2a6178
Author: Benjamin Otte <ott...
2019 Feb 08
6
[PATCH v2 0/3] allow alternative guest tools directories for distributions
...luded comments from Pino and Rich
- added test
Tomáš Golembiovský (3):
v2v: fix path to source when copying files from guest tools directory
v2v: allow alternative directories for distributions
v2v: tests: test paths for installation of linux guest tools
v2v/Makefile.am | 1 +
v2v/test-v2v-copy-guest-tools.sh | 87 ++++++++++++++++++++++++++++++++
v2v/windows_virtio.ml | 82 ++++++++++++++++++------------
3 files changed, 137 insertions(+), 33 deletions(-)
create mode 100755 v2v/test-v2v-copy-guest-tools.sh
--
2.20.1
2005 Jul 29
1
move kbuild files to reflect dir structure in kernel
...Kbuild
---
I assume cogito will see this as proper renames.
The file move was triggered by my secret objective to introduce kbuild
in klibc. But since it add clarity to the intent this patch should
be applied no matter what we decide on this matter.
Sam
diffstat:
b/cp-to-kernel.sh | 12 -
b/scripts/Kbuild.include | 52 ++++++++
b/scripts/Kbuild.klibc | 283 +++++++++++++++++++++++++++++++++++++++++++++++
b/usr/Kbuild | 87 ++++++++++++++
kernel/Kbuild | 87 --------------
kernel/Kbuild.include | 52 --------
kernel/Kbuild.klibc | 283 --...
2007 Jun 26
2
RFC: multiple address spaces for one process
...* You may want to do something with the stack as well.
*
* Do this *after* the clone to get the right sharing.
* We want to share with multiplexed address spaces, not
* with other virtualprocessors.
*/
{
extern char data[];
unsigned long sd = (unsigned long)data & ~(pagesize - 1);
long len = roundup((unsigned long)sbrk(0), pagesize)-sd;
char *p;
p = mmap((void *)NULL, len,
PROT_READ|PROT_WRITE,
MAP_SHARED|MAP_ANONYMOUS, 0, 0);
if (p == MAP_FAILED){
deal with it
}
memcpy(p, (char *)sd, len);
p = mremap(p, len, len, MREMAP_MAYMOVE|MREM...
2007 Jun 26
2
RFC: multiple address spaces for one process
...* You may want to do something with the stack as well.
*
* Do this *after* the clone to get the right sharing.
* We want to share with multiplexed address spaces, not
* with other virtualprocessors.
*/
{
extern char data[];
unsigned long sd = (unsigned long)data & ~(pagesize - 1);
long len = roundup((unsigned long)sbrk(0), pagesize)-sd;
char *p;
p = mmap((void *)NULL, len,
PROT_READ|PROT_WRITE,
MAP_SHARED|MAP_ANONYMOUS, 0, 0);
if (p == MAP_FAILED){
deal with it
}
memcpy(p, (char *)sd, len);
p = mremap(p, len, len, MREMAP_MAYMOVE|MREM...
2012 May 03
2
[PATCH 0/2] Don't fail if 'type' (disk format) attribute is missing from libvirt XML (RHBZ#701814).
https://bugzilla.redhat.com/show_bug.cgi?id=701814
2018 Jul 31
0
[PATCH nbdkit 1/4] Add truncate filter for truncating or extending the size of plugins.
This can truncate, extend, or round up/down to a multiple.
---
common-rules.mk | 3 +-
configure.ac | 1 +
filters/offset/nbdkit-offset-filter.pod | 7 +-
filters/partition/nbdkit-partition-filter.pod | 1 +
filters/truncate/Makefile.am | 60 ++++
filters/truncate/nbdkit-truncate-filter.pod | 87 ++++++
filters/truncate/truncate.c | 261 +++++++++++++++...
2010 May 13
0
[PATCH matahari] Moving QMF functionality into a transport layer.
...ansport - defines a type for talking to the Host
* Host - the public contract for the host APIs
* HostAgent - the QMF transport layer
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
.gitignore | 2 +-
src/Makefile.am | 8 +++-
src/host.cpp | 133 +++++++++++++++++++----------------------------
src/host.h | 62 ++++++++++++++--------
src/host_transport.cpp | 33 ++++++++++++
src/host_transport.h | 37 +++++++++++++
src/hostimpl.cpp | 135 ++++++++++++++++++++++++++++++++++++++++++++++++
src/hostimpl.h |...
2014 Jul 09
0
[PATCH 10/17] drm/qxl: rework to new fence interface
...nce because the hardware may never signal
anything, so don't use dma-buf with qxl, ever.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst at canonical.com>
---
drivers/gpu/drm/qxl/Makefile | 2
drivers/gpu/drm/qxl/qxl_cmd.c | 5 -
drivers/gpu/drm/qxl/qxl_debugfs.c | 12 ++-
drivers/gpu/drm/qxl/qxl_drv.h | 22 ++---
drivers/gpu/drm/qxl/qxl_fence.c | 87 -------------------
drivers/gpu/drm/qxl/qxl_kms.c | 2
drivers/gpu/drm/qxl/qxl_object.c | 2
drivers/gpu/drm/qxl/qxl_release.c | 166 ++++++++++++++++++++++++++++++++-----
drivers/gpu/drm/q...
2005 Jul 30
3
kbuild updates to klibc
Hi Peter & others.
Here are three patches that does the following:
#1 - Update kbuild part of klibc so make clean works
Adds gzip including a sample kbuild file
#2 - Factor out definition of usr/ to two variables
#3 - Move kbuild files to reflect location in the kernel
As requested in earlier mail I need a bit of guidiance of what you
expect from the kernel int...
2015 Oct 16
2
[PATCH v6 0/2] RFE: journal reader in guestfish
...ormat as virt-log has, since both
uses same code.
First patch moves get_journal_field around and renames it to journal_view
and the next one reimplements it a bit and brings it to guestfish.
Maros Zatko (2):
cat: move get_journal_field to fish/journal.c
fish: add journal-view command (RHBZ#988100)
.gnulib | 2 +-
cat/Makefile.am | 1 +
cat/log.c | 114 +---------------------------------
fish/Makefile.am | 1 +
fish/journal.c | 151 +++++++++++++++++++++++++++++++++++++++++++++
fish/journal.h | 26 +++...
2019 Jan 22
7
[PATCH nbdkit v3 0/5] partition filter: Support MBR logical partitions.
I think this addresses everything in Eric's v2 review.
Note that the first patch is best viewed using ‘-w’ to ignore
whitespaces changes.
Rich.
2018 Oct 30
2
Re: [PATCH nbdkit 4/4] Add floppy plugin.
On 10/28/18 5:13 AM, Richard W.M. Jones wrote:
> Create a virtual FAT-formatted floppy disk from a directory of files.
>
> For example:
>
> nbdkit floppy /path/to/directory
>
> The implementation of this is quite different from nbdkit-iso-plugin
> since we cannot use an ext...
2015 Dec 09
0
[PATCH v3 1/4] VSOCK: Introduce virtio-vsock-common.ko
...e mutex_lock(tx_lock) for write_space (fixes deadlock)
* Define VIRTIO_VSOCK_TYPE_STREAM/DGRAM hardware interface constants
* Define VIRTIO_VSOCK_SHUTDOWN_RCV/SEND hardware interface constants
---
include/linux/virtio_vsock.h | 203 ++++++++
include/uapi/linux/virtio_ids.h | 1 +
include/uapi/linux/virtio_vsock.h | 87 ++++
net/vmw_vsock/virtio_transport_common.c | 854 ++++++++++++++++++++++++++++++++
4 files changed, 1145 insertions(+)
create mode 100644 include/linux/virtio_vsock.h
create mode 100644 include/uapi/linux/virtio_vsock.h
create mode 100644 net/v...
2015 Dec 10
1
[PATCH v3 1/4] VSOCK: Introduce virtio-vsock-common.ko
...write_space (fixes deadlock)
> * Define VIRTIO_VSOCK_TYPE_STREAM/DGRAM hardware interface constants
> * Define VIRTIO_VSOCK_SHUTDOWN_RCV/SEND hardware interface constants
> ---
> include/linux/virtio_vsock.h | 203 ++++++++
> include/uapi/linux/virtio_ids.h | 1 +
> include/uapi/linux/virtio_vsock.h | 87 ++++
> net/vmw_vsock/virtio_transport_common.c | 854 ++++++++++++++++++++++++++++++++
> 4 files changed, 1145 insertions(+)
> create mode 100644 include/linux/virtio_vsock.h
> create mode 100644 include/uapi/linux/virtio_vsock.h...
2015 Dec 10
1
[PATCH v3 1/4] VSOCK: Introduce virtio-vsock-common.ko
...write_space (fixes deadlock)
> * Define VIRTIO_VSOCK_TYPE_STREAM/DGRAM hardware interface constants
> * Define VIRTIO_VSOCK_SHUTDOWN_RCV/SEND hardware interface constants
> ---
> include/linux/virtio_vsock.h | 203 ++++++++
> include/uapi/linux/virtio_ids.h | 1 +
> include/uapi/linux/virtio_vsock.h | 87 ++++
> net/vmw_vsock/virtio_transport_common.c | 854 ++++++++++++++++++++++++++++++++
> 4 files changed, 1145 insertions(+)
> create mode 100644 include/linux/virtio_vsock.h
> create mode 100644 include/uapi/linux/virtio_vsock.h...
2019 May 17
4
[nbdkit PATCH 0/3] Add noparallel filter
Being able to programmatically force nbdkit to be less parallel can be
useful during testing. I was less sure about patch 3, but if you like
it, I'm inclined to instead squash it into patch 1. This patch is
written to apply after my NBD_CMD_CACHE work (since I touched the
nocache filter); but can be rearranged if we think this series should
go in first while that one undergoes any adjustments from review.
Eric Blake (3):
server: Allow filters to reduce thread model dynamically
nopa...
2018 Oct 28
6
[PATCH nbdkit 0/4] Add floppy plugin.
...y complete, supporting FAT32, LFNs, volume
labels, timestamps, etc, and it passes both ‘make check’ and ‘make
check-valgrind’.
Usage is simple; to serve the current directory:
$ nbdkit floppy .
Then using guestfish (or any NBD client):
$ guestfish --ro --format=raw -a nbd://localhost -m /dev/sda1
Welcome to guestfish, the guest filesystem shell for
editing virtual machine filesystems and disk images.
Type: ‘help’ for help on commands
‘man’ to read the manual
‘quit’ to quit the shell
><fs> ll /
total 2420
drwxr-xr-x 14 root root 16384 Jan 1 1970 .
drwxr-xr-x 19 root...