search for: example4

Displaying 20 results from an estimated 46 matches for "example4".

Did you mean: example
2020 Jun 28
5
[PATCH nbdkit 0/2] tar: Rewrite the tar plugin (again), this time in C.
For context see these threads: https://lists.gnu.org/archive/html/qemu-discuss/2020-06/threads.html#00053 https://lists.gnu.org/archive/html/qemu-block/2020-06/threads.html#01496 Rich.
2020 Jun 28
2
Re: [PATCH nbdkit 2/2] tar: Rewrite the tar plugin (again), this time in C.
.../tests/test-dump-plugin.sh > +++ b/tests/test-dump-plugin.sh > @@ -46,7 +46,7 @@ do_test () > python-valgrind | ruby-valgrind | tcl-valgrind) > echo "$0: skipping $1$vg because this language doesn't support valgrind" > ;; > - example4* | tar*) > + example4*) > # These tests are written in Perl so we have to check that > # the Perl plugin was compiled. > if nbdkit perl --version; then run_test $1; fi > diff --git a/tests/test-help-plugin.sh b/tests/test-help-plugin.sh &...
2018 Apr 06
3
[nbdkit PATCH v2] tests: Skip guestfs code on CentOS 6
CentOS 6 has libguestfs-devel 1.20.11, which predates the support in guestfs_add_drive_opts() for requesting an nbd drive instead of a local file (annoyingly, guestfs documentation merely states the function was available since 0.3, without saying which later releases added new options); causing a compilation failure during 'make check'. Maybe the guestfs plugin should still be built,
2020 Jun 28
0
[PATCH nbdkit 2/2] tar: Rewrite the tar plugin (again), this time in C.
...b4c1ce1..6eb25a65 100755 --- a/tests/test-dump-plugin.sh +++ b/tests/test-dump-plugin.sh @@ -46,7 +46,7 @@ do_test () python-valgrind | ruby-valgrind | tcl-valgrind) echo "$0: skipping $1$vg because this language doesn't support valgrind" ;; - example4* | tar*) + example4*) # These tests are written in Perl so we have to check that # the Perl plugin was compiled. if nbdkit perl --version; then run_test $1; fi diff --git a/tests/test-help-plugin.sh b/tests/test-help-plugin.sh index 7dc26ece..f0dfa7df 1...
2007 Sep 25
0
R lmer with problem of 'sd slot has negative entries'
...method = "Laplace", control = list (usePQL = TRUE)) fixef(example2) se.fixef(example2) example3 <- lmer(cbind( y, n - y) ~ 1 + ( 1 | center) , family = binomial, niter = 50, method = "PQL",control = list (usePQL = TRUE)) fixef(example3) se.fixef(example3) example4 <- lmer(cbind( y, n - y) ~ 1 + ( 1 | center) , family = binomial, niter = 50, method = "PQL",control = list (usePQL = FALSE)) fixef(example4) se.fixef(example4) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Emine Ozgur BAYMAN PhD Student Department of Bi...
2007 Sep 28
0
lmer giving negative, or no, estimated standard errors
...50, method = "Laplace", control = list (usePQL = TRUE)) fixef(example2) se.fixef(example2) example3 <- lmer(cbind( y, n - y) ~ 1 + ( 1 | center) , family = binomial, niter = 50, method = "PQL",control = list (usePQL = TRUE)) fixef(example3) se.fixef(example3) example4 <- lmer(cbind( y, n - y) ~ 1 + ( 1 | center) , family = binomial, niter = 50, method = "PQL",control = list (usePQL = FALSE)) fixef(example4) se.fixef(example4) [[alternative HTML version deleted]]
2018 Apr 09
0
[nbdkit PATCH 2/1] RFC: tests: Run tests that don't require libguestfs
...p), I now have 15/18 pass and 9 skip. Signed-off-by: Eric Blake <eblake@redhat.com> --- This one was more invasive than the previous, but may still be worth having on top of the configure change that disables HAVE_LIBGUESTFS on CentOS 7. The three test failures are now: ./test-dump-plugin-example4.sh: unexpected output from nbdkit example4 --dump-plugin path=/home/dummy/nbdkit/plugins/perl/.libs/nbdkit-perl-plugin.so name=perl version=1.3.0 ... has__zero_old=1 FAIL: test-dump-plugin-example4.sh nbd://?socket=cache.sock: No such file or directory ./test-cache.sh: line 64: kill: (32161) - No...
2011 Jun 28
13
[PATCH hivex 02/14] maint: remove unnecessary test-before-free
From: Jim Meyering <meyering at redhat.com> * lib/hivex.c (hivex_node_set_value): Remove unnecessary test-before-free. --- lib/hivex.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lib/hivex.c b/lib/hivex.c index d042f4f..a72fa77 100644 --- a/lib/hivex.c +++ b/lib/hivex.c @@ -2748,8 +2748,7 @@ hivex_node_set_value (hive_h *h, hive_node_h node, leave_partial:
2018 Aug 12
0
[PATCH nbdkit 08/10] freebsd: In scripts use 'env bash' instead of '/bin/bash'.
...| 2 +- tests/test-blocksize.sh | 2 +- tests/test-cache.sh | 2 +- tests/test-captive.sh | 2 +- tests/test-cow.sh | 2 +- tests/test-cxx.sh | 2 +- tests/test-dump-config.sh | 2 +- tests/test-dump-plugin-example4.sh | 2 +- tests/test-dump-plugin.sh | 2 +- tests/test-foreground.sh | 2 +- tests/test-fua.sh | 2 +- tests/test-help-plugin.sh | 2 +- tests/test-help.sh | 2 +- tests/test-ip.sh | 2 +- tests/test-layers.sh...
2018 Sep 11
0
[PATCH nbdkit 1/4] build: Move list of plugins and filters to the configure script.
...diff --git a/common-rules.mk b/common-rules.mk index 2c5609f..03e01e6 100644 --- a/common-rules.mk +++ b/common-rules.mk @@ -30,50 +30,6 @@ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. -plugins = \ - curl \ - data \ - example1 \ - example2 \ - example3 \ - example4 \ - ext2 \ - file \ - guestfs \ - gzip \ - libvirt \ - lua \ - memory \ - nbd \ - null \ - ocaml \ - pattern \ - perl \ - python \ - random \ - ruby \ - sh \ - split \ - streaming \ - tar \ - tcl \ - vddk \ - xz \ - zero - -filters = \ - blocksize \ - cache \ - cow \ - delay \ - error \ - fua \ - l...
2009 Nov 02
2
"object not found" within function
Hi, I am trying to write a function to compute many cross-tabulations with the -svytable- command. Here is a simplified example of the structure of my code (adapted from the -svytable- help file): data(api) func.example<-function(variable){ dclus1<-svydesign(id=~1, weights=~pw,data=apiclus1, fpc=~fpc) svytable(~ variable, dclus1) } When I call this function with:
2018 Apr 05
2
[nbdkit PATCH] tests: Skip guestfs tests on CentOS 6
...GnuTLS support nbdkit: /home/dummy/nbdkit/plugins/gzip/.libs/nbdkit-gzip-plugin.so: /home/dummy /nbdkit/plugins/gzip/.libs/nbdkit-gzip-plugin.so: undefined symbol: gzbuffer test-gzip FAILED: nbdkit exited before starting to serve files waitpid: No child processes FAIL: test-gzip ./test-dump-plugin-example4.sh: unexpected output from nbdkit example4 --dump-pl ugin path=/home/dummy/nbdkit/plugins/perl/.libs/nbdkit-perl-plugin.so ... has__zero_old=1 FAIL: test-dump-plugin-example4.sh libguestfs: trace: set_verbose true libguestfs: trace: set_verbose = 0 libguestfs: trace: set_attach_method "applia...
2012 Sep 24
4
samba4: samba-tool and (unix) uids
Hello, at my universities CS computer pools we're trying to migrate our samba3 based NT domain to AD with samba4-rc1. In the past we had a little script which our users could run on their own from their linux account which created a samba user with their own uid/gid and set their password (via smbpasswd). We're trying to recreate this behaviour with "samba-tool user create"
2020 Mar 04
0
[PATCH nbdkit 1/4] tests: Rename test-shutdown.sh to test-delay-shutdown.sh.
....am b/tests/Makefile.am index effe1857..2dc35309 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -101,6 +101,7 @@ EXTRA_DIST = \ test-data-file.sh \ test-data-raw.sh \ test-debug-flags.sh \ + test-delay-shutdown.sh \ test-dump-config.sh \ test-dump-plugin.sh \ test-dump-plugin-example4.sh \ @@ -181,7 +182,6 @@ EXTRA_DIST = \ test-retry-readonly.sh \ test-retry-reopen-fail.sh \ test-retry-zero-flags.sh \ - test-shutdown.sh \ test-ssh.sh \ test-swap.sh \ test.tcl \ @@ -1017,7 +1017,7 @@ endif TESTS += test-cow-null.sh # delay filter tests. -TESTS += test-shutdown.sh...
2009 Oct 19
0
Ohloh think's we're all XML now ...
...t/p/libguestfs/analyses/latest Which in one sense is true. We added some example XML output from virt-inspector to the repository: $ find -name '*.xml'|xargs wc -l 6822 ./inspector/example1.xml 7323 ./inspector/example2.xml 577 ./inspector/example3.xml 17 ./inspector/example4.xml 14739 total 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: http://et.redhat.com/~rjones...
2018 Nov 13
0
[PATCH 2/2] build: Replace ./nbdkit with a C program.
...in C. - if [ -x "$b/plugins/$1/.libs/nbdkit-$1-plugin.so" ]; then - args[$i]="$b/plugins/$1/.libs/nbdkit-$1-plugin.so" - done=1 - # Special plugins written in Perl. - elif [ "$1" = "example4" ] || [ "$1" = "tar" ]; then - args[$i]="$b/plugins/perl/.libs/nbdkit-perl-plugin.so" - ((++i)) - args[$i]="$b/plugins/$1/nbdkit-$1-plugin" - done=1 - else -...
2019 Jul 30
1
[PATCH nbdkit] nbd: Update for libnbd 0.9.6.
...ebug ("failed to join reader thread: %m"); diff --git a/README b/README index 26614d5..06c16dd 100644 --- a/README +++ b/README @@ -113,7 +113,7 @@ For the linuxdisk plugin: For the nbd plugin, to get URI and TLS support: - - libnbd >= 0.1.9 + - libnbd >= 0.9.6 For the Perl, example4 and tar plugins: -- 2.22.0
2018 Nov 14
0
[PATCH nbdkit v2 2/2] build: Replace ./nbdkit with a C program.
...in C. - if [ -x "$b/plugins/$1/.libs/nbdkit-$1-plugin.so" ]; then - args[$i]="$b/plugins/$1/.libs/nbdkit-$1-plugin.so" - done=1 - # Special plugins written in Perl. - elif [ "$1" = "example4" ] || [ "$1" = "tar" ]; then - args[$i]="$b/plugins/perl/.libs/nbdkit-perl-plugin.so" - ((++i)) - args[$i]="$b/plugins/$1/nbdkit-$1-plugin" - done=1 - else -...
2018 Aug 12
13
[PATCH nbdkit 00/10] FreeBSD support.
With these patches, a majority of tests pass. The notable things which are still broken: - Because FreeBSD links /home -> /usr/home, $(pwd) gives a different result from realpath(2). Therefore some tests which implicitly rely on (eg) a plugin which calls nbdkit_realpath internally and then checking that path against $(pwd) fail. - Shebangs (#!) don't seem to work the same way
2018 Jun 07
4
[PATCH nbdkit 0/4] plugins: Add new "ext2" plugin, for accessing ext2, ext3 or ext4 filesystems.
There is a small test provided. I tested this a lot more locally and it seems pretty robust. Rich.