search for: _provided_

Displaying 8 results from an estimated 8 matches for "_provided_".

2010 Jun 04
2
Argument recycling in substring()
Hi, According to its man page substring() "expands (its) arguments cyclically to the length of the longest _provided_ none are of zero length". So, as expected, I get an error here: > substring("abcd", first=2L, last=integer(0)) Error in substring("abcd", first = 2L, last = integer(0)) : invalid substring argument(s) But I don't get one here: > substring(charact...
2013 Jun 20
10
Two identical copies of an image mounted result in changes to both images if only one is modified
Hi, I''ve observed a rather strange behaviour while trying to mount two identical copies of the same image to different mount points. Each modification to one image is also performed in the second one. Example: dd if=/dev/sda? of=image1 bs=1M cp image1 image2 mount -o loop image1 m1 mount -o loop image2 m2 touch m2/hello ls -la m1 //will now also include a file calles "hello"
2007 Oct 07
2
Trust p-values or not ?
Hi, First of all kudos to the creaters/contributors to R ! This is a great package and I am finding it very useful in my research, will love to contribute any modules and dataset which I develop to the project. While doing multiple regression I arrived at the following peculiar situation. Out of 8 variables only 4 have <0.04 p-values (of t-statistic), rest all have p-values between 0.1 and
2017 Oct 10
1
Unbalanced data in split-plot analysis with aov()
Dear all, I'm analysing a split-plot experiment, where there are sometimes one or two values missing. I realized that if the data is slightly unbalanced, the effect of the subplot-treatment will also appear and be tested against the mainplot-error term. I replicated this with the Oats dataset from Yates (1935), contained in the nlme package, where Variety is on mainplot, and nitro on
2003 Jun 23
4
Trouble with CUPS/SAMBA
Hi all, I'm new to this list, as to SAMBA, and I'm struggling with getting a printer to work as a shared printer in a Windows network with a redhat 9 server. The printer is a HP 4550 Color LaserJet, installed with CUPS to the server, via JetDirect (port 9100). It prints testpages fine from the Linux-server. It was installed with the install-printer-utility in RedHat9. I have then shared
2012 Mar 28
2
[PATCH v2] New APIs: mount-local and umount-local using FUSE
This version doesn't crash or cause hung processes or stuck mountpoints, so that's an improvement. Rich.
2012 Mar 27
3
[PATCH 0/3] Enable FUSE support in the API via 'mount-local' call.
This patch is just for review. It enables FUSE support in the API via two new calls, 'guestfs_mount_local' and 'guestfs_umount_local'. FUSE turns out to be very easy to deadlock (necessitating that the machine be rebooted). Running the test from the third patch is usually an effective way to demonstrate this. However I have not yet managed to produce a simple reproducer that
2012 Mar 29
3
[PATCH v3] New APIs: mount-local, mount-local-run and umount-local using FUSE
This changes the proposed API slightly. Previously 'mount-local' generating a 'mounted' event when the filesystem was ready, and from the 'mounted' event you had to effectively do a fork. Now, 'mount-local' just initializes the mountpoint and you have to call 'mount-local-run' to enter the FUSE main loop. Between these calls you can do a fork or whatever