search for: _fail_

Displaying 4 results from an estimated 4 matches for "_fail_".

Did you mean: _fails_
2017 Dec 27
1
Rscript fails with some packages (for example, h5)
...lso want to know why. Steve Dirk Eddelbuettel <edd at debian.org>?2017?12?27? ??21:15??? > > Duncan, > > Very nice tutorial. However it does NOT take away from the fact that _very_ > simple_ scripts (like the one posted by Sun at the beginning of this > thread) > simply _fail_ in error under Rscript. > > Whereas they don't under R or r. > > The R environment ships an interpreter meant for command-line and scripting > use which fails on simple scripts that happen to use S4. But I am tired of > arguing for reversing this as I have gotten nowhere in al...
2017 Dec 27
3
Rscript fails with some packages (for example, h5)
On 26/12/2017 9:40 AM, Dirk Eddelbuettel wrote: > > On 26 December 2017 at 22:14, Sun Yijiang wrote: > | Thanks for the solution. Now I know the work-arounds, but still don't > | quite get it. Why does R_DEFAULT_PACKAGES has anything to do with > | library(methods)? > > Because it governs which packages are loaded by default. And while R also > loads
2004 Jul 26
0
FW: IA64 test report: 2.6.8-rc1 /tiger 2004-7-20: Boot Hang!
...1000 Software Configuration: 1.Bk pull form lia64.bkbits.net/linux-ia64-2.5 on 7/20(Shanghai time) 2.bk pull from linux-acpi.bkbits.net/linux-acpi-test-2.6.8 on 7/20(Shanghai time) Kernel Config file: arch/ia64/defconfig ACPI Features Tested: (prioritized). -------------------- 1. Boot _fail_ 2. serial console 3. ATI (run X window system) 4. usb keyboard 5. USB mouse 6. NIC (eg. Ping or ftp) 7. IDE (eg. r/w floppy or CDROM) 8. SCI (eg. Press power button) 9. Soft Power off Linux version 2.6.8-rc1 (root at acpi-tiger) (gcc version 3.2.3 20030502 (Red Hat Linux 3....
2009 Nov 10
12
[RFC] big fat transaction ioctl
...#include <linux/xattr.h> #include <linux/vmalloc.h> #include "compat.h" @@ -1303,6 +1304,190 @@ long btrfs_ioctl_trans_end(struct file *file) return 0; } +/* + * return number of successfully complete ops via @ops_completed + * (where success/failure is defined by the _FAIL_* flags). + */ +static long do_usertrans(struct btrfs_root *root, + struct btrfs_ioctl_usertrans *ut, + u64 *ops_completed) +{ + int i; + int *fds; + int err; + struct file *file; + struct btrfs_ioctl_usertrans_op *ops = (void *)ut->ops_ptr; + int fd1, fd2; + + fds = kcalloc(sizeof(int), ut...