Displaying 20 results from an estimated 446 matches for "000000000".
Did you mean:
0x00000000
2017 Sep 18
0
[PATCH 2/5] Make sure every *.ml file has a corresponding *.mli file.
...I = \
ini_reader.mli \
languages.mli \
list_entries.mli \
+ paths.mli \
pxzcat.mli \
setlocale.mli \
sigchecker.mli \
simplestreams_parser.mli \
sources.mli \
+ utils.mli \
yajl.mli
SOURCES_ML = \
diff --git a/builder/builder.mli b/builder/builder.mli
new file mode 100644
index 000000000..fb2b9f8c1
--- /dev/null
+++ b/builder/builder.mli
@@ -0,0 +1,19 @@
+(* virt-builder
+ * Copyright (C) 2017 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Founda...
2018 Apr 10
0
[PATCH v2 5/5] daemon: autogenerate OCaml interfaces
...aemon/optgroups.ml
/daemon/optgroups.mli
+/daemon/parted.mli
+/daemon/realpath.mli
/daemon/stamp-guestfsd.pod
+/daemon/statvfs.mli
/daemon/structs-cleanups.c
/daemon/structs-cleanups.h
/daemon/structs.ml
diff --git a/daemon/blkid.mli b/daemon/blkid.mli
deleted file mode 100644
index 65a61def4..000000000
--- a/daemon/blkid.mli
+++ /dev/null
@@ -1,19 +0,0 @@
-(* guestfs-inspection
- * Copyright (C) 2009-2018 Red Hat Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundatio...
2017 Sep 18
6
[PATCH 0/5] Fix OCaml dependencies.
This works reliably for me ...
Rich.
2018 Apr 09
0
[PATCH 3/3] daemon: autogenerate most of OCaml interfaces
...aemon/optgroups.ml
/daemon/optgroups.mli
+/daemon/parted.mli
+/daemon/realpath.mli
/daemon/stamp-guestfsd.pod
+/daemon/statvfs.mli
/daemon/structs-cleanups.c
/daemon/structs-cleanups.h
/daemon/structs.ml
diff --git a/daemon/blkid.mli b/daemon/blkid.mli
deleted file mode 100644
index 65a61def4..000000000
--- a/daemon/blkid.mli
+++ /dev/null
@@ -1,19 +0,0 @@
-(* guestfs-inspection
- * Copyright (C) 2009-2018 Red Hat Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundatio...
2009 Nov 15
3
two MGE Ellipse 1500 ups via usb
...hrough the
"vendor", "product", "serial", "vendorid", "productid" and "bus"
regular expressions (see 'man 8 usbhid-ups' for an explanation how to
use these).
So I ran lsusb -v and got two different values for iSerial (1HCG4700J
and 000000000) and iManufacturer ('1 MGE UPS SYSTEMS' and '1 EATON').
Strangely, vendor is '0x0463 MGE UPS Systems' for both.
They're also on the same bus ('Bus 003 Device 063' and 'Bus 003 Device 064')
Since there is no flag for manufacturer, I had to go with serial....
2019 Jul 02
0
[PATCH 01/12] Rust bindings: Add Rust bindings
...s.generate_rust_bindtests;
+
(* Generate the list of files generated -- last. *)
printf "generated %d lines of code\n" (get_lines_generated ());
let files = List.sort compare (get_files_generated ()) in
diff --git a/generator/rust.ml b/generator/rust.ml
new file mode 100644
index 000000000..40ca8d198
--- /dev/null
+++ b/generator/rust.ml
@@ -0,0 +1,34 @@
+(* libguestfs
+ * Copyright (C) 2019 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation...
2010 Dec 07
2
Cannot install dcom98
...X"/env
$ export WINEDLLOVERRIDES="mshtml="
$ export WINEARCH="win32"
$ winetricks dcom98
in the log this part seems the most interesting:
Code:
Executing wine /home/paolo/.cache/winetricks/DCOM98.EXE
err:virtual:NtMapViewOfSection map_file_into_view 0x80000000 1000000 000000000 failed
err:heap:HEAP_CreateSystemHeap system heap base address 0x80000000 not available
err:virtual:NtMapViewOfSection map_file_into_view 0x80000000 1000000 000000000 failed
err:heap:HEAP_CreateSystemHeap system heap base address 0x80000000 not available
err:module:map_image Could not map shared se...
2019 Jun 27
2
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
...LAGS -C link-args=-L$b/lib/.libs"
> +fi
> +export RUSTFLAGS
> +
> # For GObject, Javascript and friends.
> export GJS="@GJS@"
> prepend GI_TYPELIB_PATH "$b/gobject"
> diff --git a/rust/Cargo.lock b/rust/Cargo.lock
> new file mode 100644
> index 000000000..c03586e3f
> --- /dev/null
> +++ b/rust/Cargo.lock
> @@ -0,0 +1,6 @@
> +# This file is automatically @generated by Cargo.
> +# It is not intended for manual editing.
> +[[package]]
> +name = "guestfs"
> +version = "0.1.0"
> +
> diff --git a/rust/Car...
2019 Jul 20
2
Re: [PATCH] Rust bindings: Add Rust bindings
...s/070_opt_args.rs
> > create mode 100644 rust/tests/080_version.rs
> > create mode 100644 rust/tests/090_ret_values.rs
> > create mode 100644 rust/tests/100_launch.rs
> >
> >diff --git a/generator/rust.ml b/generator/rust.ml
> >new file mode 100644
> >index 000000000..b7bc76da8
> >--- /dev/null
> >+++ b/generator/rust.ml
> >@@ -0,0 +1,806 @@
> >+(* libguestfs
> >+ * Copyright (C) 2019 Red Hat Inc.
> >+ *
> >+ * This program is free software; you can redistribute it and/or modify
> >+ * it under the terms of the GN...
2019 Jul 23
2
Re: [PATCH] Rust bindings: Add Rust bindings
...gt; (* Generate the list of files generated -- last. *)
> printf "generated %d lines of code\n" (get_lines_generated ());
> let files = List.sort compare (get_files_generated ()) in
> diff --git a/generator/rust.ml b/generator/rust.ml
> new file mode 100644
> index 000000000..09ca89982
> --- /dev/null
> +++ b/generator/rust.ml
> @@ -0,0 +1,564 @@
> +(* libguestfs
> + * Copyright (C) 2019 Red Hat Inc.
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as publ...
2019 Jul 17
2
[PATCH] Rust bindings: Add Rust bindings
...s.generate_rust_bindtests;
+
(* Generate the list of files generated -- last. *)
printf "generated %d lines of code\n" (get_lines_generated ());
let files = List.sort compare (get_files_generated ()) in
diff --git a/generator/rust.ml b/generator/rust.ml
new file mode 100644
index 000000000..b7bc76da8
--- /dev/null
+++ b/generator/rust.ml
@@ -0,0 +1,806 @@
+(* libguestfs
+ * Copyright (C) 2019 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundatio...
2019 Jul 20
0
[PATCH] Rust bindings: Add Rust bindings
...s.generate_rust_bindtests;
+
(* Generate the list of files generated -- last. *)
printf "generated %d lines of code\n" (get_lines_generated ());
let files = List.sort compare (get_files_generated ()) in
diff --git a/generator/rust.ml b/generator/rust.ml
new file mode 100644
index 000000000..09ca89982
--- /dev/null
+++ b/generator/rust.ml
@@ -0,0 +1,564 @@
+(* libguestfs
+ * Copyright (C) 2019 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundatio...
2019 Jul 23
0
Re: [PATCH] Rust bindings: Add Rust bindings
...s.generate_rust_bindtests;
+
(* Generate the list of files generated -- last. *)
printf "generated %d lines of code\n" (get_lines_generated ());
let files = List.sort compare (get_files_generated ()) in
diff --git a/generator/rust.ml b/generator/rust.ml
new file mode 100644
index 000000000..bd0e98e34
--- /dev/null
+++ b/generator/rust.ml
@@ -0,0 +1,558 @@
+(* libguestfs
+ * Copyright (C) 2019 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundatio...
2019 Jun 27
1
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
...> > > +
> > > # For GObject, Javascript and friends.
> > > export GJS="@GJS@"
> > > prepend GI_TYPELIB_PATH "$b/gobject"
> > > diff --git a/rust/Cargo.lock b/rust/Cargo.lock
> > > new file mode 100644
> > > index 000000000..c03586e3f
> > > --- /dev/null
> > > +++ b/rust/Cargo.lock
> > > @@ -0,0 +1,6 @@
> > > +# This file is automatically @generated by Cargo.
> > > +# It is not intended for manual editing.
> > > +[[package]]
> > > +name = "guestfs&quo...
2019 Jul 26
4
Re: [PATCH] Rust bindings: Add Rust bindings
...t parameter using
the function syntax.
OTOH, I think you can use List.exists here:
let contains_ptr =
List.exists (
function
| OString _
| OStringList _ -> true
| _ -> false
)
> diff --git a/rust/Cargo.toml.in b/rust/Cargo.toml.in
> new file mode 100644
> index 000000000..e25dfe768
> --- /dev/null
> +++ b/rust/Cargo.toml.in
> @@ -0,0 +1,6 @@
> +[package]
> +name = "guestfs"
> +version = "@VERSION@"
> +edition = "2018"
>From what I remember about the Rust naming conventions, maybe the name
should be guestfs-sys?...
2018 Apr 10
9
[PATCH v2 0/5] daemon: generate almall the API OCaml interfaces
Hi,
as a followup for the signature fix for mount_vfs [1], here it is a
patch series to generate automatically all the OCaml interfaces of
daemon actions.
[1] https://www.redhat.com/archives/libguestfs/2018-April/msg00059.html
Thanks,
Pino Toscano (5):
daemon: directly use Optgroups
daemon: use the structs from the Structs module
daemon: move Lvm.lv_canonical to new Lvm_utils module
2019 Jun 27
0
[PATCH 3/9] Rust bindings: Add 4 bindings tests
....libs"
+else
+ RUSTFLAGS="$RUSTFLAGS -C link-args=-L$b/lib/.libs"
+fi
+export RUSTFLAGS
+
# For GObject, Javascript and friends.
export GJS="@GJS@"
prepend GI_TYPELIB_PATH "$b/gobject"
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
new file mode 100644
index 000000000..c03586e3f
--- /dev/null
+++ b/rust/Cargo.lock
@@ -0,0 +1,6 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+[[package]]
+name = "guestfs"
+version = "0.1.0"
+
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 6cd94ce6a..4ea7c29...
2014 Jun 05
2
Question about voltage threshold setting in NUT
...ponse from upsd: ERR VAR-NOT-SUPPORTED
$ sudo upsrw -s overwrite.input.transfer.low=70 -u * -p * ups
Unexpected response from upsd: ERR VAR-NOT-SUPPORTED
battery.charge: 100
battery.charge.low: 20
battery.runtime: 1087
battery.type: PbAc
device.mfr: EATON
device.model: Eaton 3S 550
device.serial: 000000000
device.type: ups
driver.name: usbhid-ups
driver.parameter.offdelay: 90
driver.parameter.ondelay: 120
driver.parameter.pollfreq: 30
driver.parameter.pollinterval: 2
driver.parameter.port: auto
driver.parameter.vendorid: 0463
driver.version: 2.6.5
driver.version.data: MGE HID 1.31
driver.version.inte...
2018 Apr 09
5
[PATCH 0/3] daemon: generate almost all the API OCaml interfaces
Hi,
as a followup for the signature fix for mount_vfs [1], here it is a
patch series to generate automatically most of the OCaml interfaces of
daemon actions. Only the Lvm and Mount modules are left with
hand-written interfaces.
[1] https://www.redhat.com/archives/libguestfs/2018-April/msg00059.html
Thanks,
Pino Toscano (3):
daemon: directly use Optgroups
daemon: use the structs from the
2019 Jul 17
0
Re: [PATCH] Rust bindings: Add Rust bindings
...s
> create mode 100644 rust/tests/070_opt_args.rs
> create mode 100644 rust/tests/080_version.rs
> create mode 100644 rust/tests/090_ret_values.rs
> create mode 100644 rust/tests/100_launch.rs
>
>diff --git a/generator/rust.ml b/generator/rust.ml
>new file mode 100644
>index 000000000..b7bc76da8
>--- /dev/null
>+++ b/generator/rust.ml
>@@ -0,0 +1,806 @@
>+(* libguestfs
>+ * Copyright (C) 2019 Red Hat Inc.
>+ *
>+ * This program is free software; you can redistribute it and/or modify
>+ * it under the terms of the GNU General Public License as published by...