similar to: [UNFINISHED PATCHES] Make optional arguments work in Haskell

Displaying 20 results from an estimated 100000 matches similar to: "[UNFINISHED PATCHES] Make optional arguments work in Haskell"

2017 Jan 31
0
Re: [PATCH v6 2/3] mllib: modify nsplit to take optional noempty and count arguments
On Tue, 31 Jan 2017 11:35:01 +0000 "Richard W.M. Jones" <rjones@redhat.com> wrote: > On Mon, Jan 30, 2017 at 10:43:15PM +0100, Tomáš Golembiovský wrote: > > Added two new optional arguments to nsplit: > > > > * keep_empty: if set to false empty elements are not stored in the > > returned list. The default is to keep the empty elements > > The
2010 Dec 02
2
[PATCH 0/2] Add mkfs-opts API with optional arguments
This requires changing the generator so it can handle passing optional arguments all thr way through to the daemon, changing the protocol (see previous patch set), and implementing the new mkfs-opts call. At the moment there is just an optional blocksize argument, thus mimicking what you can already do with 'mkfs-b'. But this change will allow us in future to encode much of the rest of
2010 Dec 01
0
[PATCH] Protocol changes to support upload progress messages and optional arguments.
-- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://et.redhat.com/~rjones/libguestfs/ See what it can do: http://et.redhat.com/~rjones/libguestfs/recipes.html -------------- next part -------------- >From 4c7ca014212acfbe7800f5988cf9054b011f4273 Mon Sep 17
2017 Jan 31
3
Re: [PATCH v6 2/3] mllib: modify nsplit to take optional noempty and count arguments
On Mon, Jan 30, 2017 at 10:43:15PM +0100, Tomáš Golembiovský wrote: > Added two new optional arguments to nsplit: > > * keep_empty: if set to false empty elements are not stored in the > returned list. The default is to keep the empty elements The ?keep_empty flag is pointless. It's simpler and more clear to write: List.filter ((<>) "") (nsplit ...) when
2019 Jul 04
1
Re: [PATCH libnbd 0/2] Two patches to make libnbd work on FreeBSD.
On Thu, Jul 04, 2019 at 10:25:03AM +0200, Martin Kletzander wrote: > On Thu, Jul 04, 2019 at 09:14:13AM +0100, Richard W.M. Jones wrote: > >On Thu, Jul 04, 2019 at 09:45:26AM +0200, Martin Kletzander wrote: > >>On Wed, Jul 03, 2019 at 05:17:42PM +0100, Richard W.M. Jones wrote: > >>>Two simple patches which make libnbd compile on FreeBSD. > >>> >
2020 Apr 15
0
Re: [PATCH nbdkit UNFINISHED] Add the ability to write plugins in golang.
On Wed, Apr 15, 2020 at 05:27:07PM +0100, Daniel P. Berrangé wrote: > On Fri, Apr 10, 2020 at 02:51:52PM +0100, Richard W.M. Jones wrote: > > Similar to C, OCaml and Rust, this is not a plugin per se. Instead > > it's more of a method and set of tests around writing plugins in > > golang. They are standalone programs that compile into shared objects > > that nbdkit
2017 Feb 14
1
Re: [PATCH 06/10] copy-out: new 'excludes' optional argument
On Tue, Feb 14, 2017 at 09:12:07AM +0100, Pino Toscano wrote: > Add a new 'excludes' optional argument to copy-out, passing it straight > to tar-out: this way it is possible to exclude files when extracting a > directory from the guest. > --- > generator/actions.ml | 16 ++++++++++++++-- > gobject/Makefile.inc | 2 ++ > lib/copy-in-out.c | 13 ++++++++++--- > 3
2012 Sep 12
2
compile guestfsd
On Wed, Sep 12, 2012 at 04:39:48PM +0800, Richard Huang wrote: > Hi Richard, > > I want to compile guestfsd only for some guests, including centos, debian, > variable versions. But I didn't find scripts for it. Can you guide me how > to do this? I'm unclear exactly what the question is. You can compile guestfsd (just the daemon) this way: ./configure \
2010 Mar 19
1
[PATCH FOR DISCUSSION ONLY] virt-resize tool for resizing virtual machines.
Unfinished patch to implement virt-resize. The concept is solid. It just needs a little more thought as to exactly how containers [of containers] expand and shrink in response to user requests. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages.
2010 Nov 15
3
[PATCH 0/3] Make listing applications into a core API
After these three patches, virt-inspector is just a shell around the core API, left doing command line parsing. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://et.redhat.com/~rjones/libguestfs/ See what it can do:
2011 Jan 14
0
[PATCH INCOMPLETE] Add ability to inspect install disks and live CDs.
This patch is not complete yet because it needs to support Fedora, RHEL and Windows CDs. Some examples of the current output: $ virt-inspector ubuntu-10.10-desktop-amd64.iso <?xml version="1.0"?> <operatingsystems> <operatingsystem> <root>/dev/sda</root> <name>linux</name> <distro>ubuntu</distro>
2015 Aug 10
0
Re: FC22: virt-p2v-make-kickstart/livecd-creator doesn't build
On Mon, Aug 10, 2015 at 04:23:24PM -0400, Martin Breault wrote: > > > On 8/10/2015 4:20 PM, Richard W.M. Jones wrote: > >On Mon, Aug 10, 2015 at 04:01:40PM -0400, Martin Breault wrote: > >Yup, livecd-tools is broken junk. I'm building ISOs you can > >download here: http://oirase.annexia.org/virt-p2v The > >RHEL-7.2-preview/ directory contains the latest
2017 Jan 29
0
Re: virt-p2v-make-disk not making disk
On Sat, Jan 28, 2017 at 04:26:08PM -0800, Martin Lanner wrote: > I've used the following commands: > > ``` > # virt-p2v-make-disk -o /dev/sdb --inject-ssh-identity id_rsa_p2v > # virt-p2v-make-disk -o /dev/sdb centos-7.3 --inject-ssh-identity id_rsa_p2v > # virt-p2v-make-disk -o p2v/p2v.img centos-7.3 --inject-ssh-identity id_rsa_p2v > ``` > > ... on both CentOS
2014 Nov 03
0
Re: [PATCH] customize: firstboot: make sure to run Linux scripts only once
On Mon, Nov 03, 2014 at 08:49:08PM +0100, Pino Toscano wrote: > If a script does not finish, hangs, etc, it would be executed again at > the next boot, since the injected firstboot.sh helper removes it only > after it finished. > > Since firstboot.sh only runs executable files, then remove the > executable attributes before running it, so it will not run again. > Also, remove
2010 Mar 21
10
[PATCH 0/10] Miscellaneous patches to fix some compile problems on Mac OS X
Patches 1-6 are general code quality improvements. Note that Guido previously asked us for the ability to build libguestfs without building the appliance. Patches 7-10 are specific to Mac OS X, but shouldn't break the build for existing platforms. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports
2018 Mar 24
0
Re: Issue with libguestfs-test-tool on a guest hosted on VMWare ESXi
Thanks will write to VMWare forums. Btw, is there a way I can change the qemu default machine type? I mean when I specify *-machine pc *it picks up pc-i440fx-2.8 by default. Or is it tied to the underlying host hardware? *$> *qemu-system-x86_64* -machine help* Supported machines are: *pc* Standard PC (i440FX + PIIX, 1996) (alias of pc-i440fx-2.8) *pc-i440fx-2.8*
2020 Apr 15
1
Re: [PATCH nbdkit UNFINISHED] Add the ability to write plugins in golang.
On Wed, Apr 15, 2020 at 06:04:26PM +0100, Richard W.M. Jones wrote: > On Wed, Apr 15, 2020 at 05:27:07PM +0100, Daniel P. Berrangé wrote: > > On Fri, Apr 10, 2020 at 02:51:52PM +0100, Richard W.M. Jones wrote: > > > Similar to C, OCaml and Rust, this is not a plugin per se. Instead > > > it's more of a method and set of tests around writing plugins in > > >
2015 Sep 24
0
ANNOUNCE: libguestfs & virt-v2v RHEL 7.3 preview packages available
If you are running RHEL 7.2 betas or snapshots (or RHEL 7.2 when it comes out next month) then you may be interested in trying out the newer RHEL 7.3 preview versions of: - libguestfs - virt-v2v (Supported since RHEL 7.2) - virt-p2v (Technical Preview in RHEL 7.2, Supported in RHEL 7.3) I intend to release upstream 1.32 towards the end of this year, and rebase libguestfs to that version. For
2016 Jul 21
0
Re: How to debug supermin5 issue?
On Thu, Jul 21, 2016 at 07:31:51PM +0800, Chen Hanxiao wrote: > At 2016-07-21 19:04:07, "Richard W.M. Jones" <rjones@redhat.com> wrote: > >On Thu, Jul 21, 2016 at 06:50:52PM +0800, Chen Hanxiao wrote: > >> > >> > >> At 2016-07-21 18:43:04, "Richard W.M. Jones" <rjones@redhat.com> wrote: > >> >On Thu, Jul 21, 2016 at
2018 Nov 13
0
Re: Further nbdkit patches for Haiku
On Tue, Nov 13, 2018 at 03:09:16PM +0100, François Revol wrote: > Le 13/11/2018 à 14:40, Richard W.M. Jones a écrit : > > On Tue, Nov 06, 2018 at 09:02:17AM +0000, Richard W.M. Jones wrote: > >> Finally about the list of failing tests: > >> > >> https://pastebin.com/1PFG85DS > >> > >> Mostly these are because of the old qemu-io binary. The