search for: duff

Displaying 20 results from an estimated 71 matches for "duff".

Did you mean: diff
2009 Aug 05
2
[LLVMdev] ACATS
Andr? Tavares wrote: > Thanks for the link Duff. You're welcome. > I downloaded ACATS, but could not run it on LLVM. Could not find any > instructions that could lead me to do so. Do you know how can do it? Compiler vendors are expected to write their own scripts, which is not a trivial task. The "B Tests" have deliberat...
2006 Jul 31
3
Soapbox
...all, I thought y''all might be interested in seeing a newly released website named Soapbox which was written in Rails. Soapbox features reviews of products, businesses, services, and anything else you can think of written by the people *you* care about. http://soapboxit.com Thanks! Duff OMelia -- Posted via http://www.ruby-forum.com/.
2006 May 10
1
Mere chat on vectorisation matters
Hi, people. Allow me to chat a tiny bit on two vectorisation-related matters, in the context of R. I'm curious about if the following ideas have ever been considered, and rejected already. First is about using the so-called Duff's device for partially unrolling loops. I did not overly check in R sources, and am not familiar with them anyway, but the only usage I saw is within "src/gnuwin32/malloc.c". Maybe it could be put to good usage in "src/main/arithmetic.c" and elsewhere. Second is about...
2006 Feb 09
3
Draggables and Droppable performance (tips)
...olves hacking the prototype and scriptaculous core scripts. I''m not going to go into lengthy details about this, but it has to do with unrolling costly loops (namely all the checks that happen as you drag something around the screen). Basically, you can use the following implementation of Duff''s Device (http://www.websiteoptimization.com/speed/10/) to unroll loops instead of using the ".each" command. But like I said, this is advanced and modifying the core scripts is not recommended unless you know what you are doing. (I''m really only including this for those...
2008 Jan 16
1
Understanding the ARC - arc_buf_hdr and arc_buf_t
...multiple arc_buf_ts get inserted into this list? What is the relationship between arc_buf_hdr?s b_datacnt and b_refcnt? Is b_datacnt the number of arc_buf_ts in the list? Does the b_refcnt keep track of all users of all arc_buf_ts in the list? Thanks for any understanding that anyone can offer. Duff -- This messages posted from opensolaris.org
2008 Jun 20
3
Mounting Floppies
...h servers and they are enabled in the BIOS. I have formatted and tested the floppies on my desktop PC without problems. In the end, I gave up, stuck a USB floppy on one of the boxes and it mounted with no problems. So is it me, CentOS 5 or something else? (Ideas, anyone!?). It could be a set of duff floppies and three flaky drives (two brand new), but I thought I'd ask before I spend too much more time on it! Thanks Nigel Kendrick -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20080620/636d0...
2014 Sep 18
2
SIGSEGV on CentOS6
...r password database. We see a SIGSEGV every 24-48 hours or so in tcopy_passwd. I built a Samba 3.6.24 with debugging symbols and waited for a core file which we got this morning. Looking through the code we can see that there was a machine lookup for one of our Samba 4 servers which was handed a duff memory pointer from a memcache lookup. When it tried to dereference the memory pointer the SIGSEGV resulted. I'm working on the theory that the heap has been corrupted rather than a fault with memcache, but I thought I'd just check in here to make sure no-one else was seeing the same prob...
2007 Sep 14
9
Possible ZFS Bug - Causes OpenSolaris Crash
...FU (kernel has DEBUG enabled) SATA Drives ZFS Pool is four RAIDZ sets, two disks in each RAIDZ set (Please forgive me if I have posted in the wrong place. I am new to ZFS and this forum. However, this forum appears to be the best place to get good quality ZFS information. Thanks.) Duff ---------------------------------------------------------- Machine 1 Message Log: . . . Sep 13 14:13:22 cypress unix: [ID 836849 kern.notice] Sep 13 14:13:22 cypress ^Mpanic[cpu5]/thread=ffffff000840dc80: Sep 13 14:13:22 cypress genunix: [ID 683410 kern.notice] BAD TRAP: type=e (#pf Page fault...
2013 Nov 23
9
Sysinux 6 will not boot ISOs on BIOS (i.e. pre-UEFI) systems
...int 13, Windows 7, and Windows 8 all wrongly "see" blank discs). As a consequence, I am aware that the Manjaro Linux team have reverted to using syslinux 4 for their ISOs. This is certainly not an issue with corrupted downloads, burning, or dodgy computer disc-drives. Best Wishes, Carl Duff
2009 Aug 03
1
[LLVMdev] ACATS
Andre Tavares wrote: > Can someone tell me how to use ACATS? I have searched for documentation, > but found none. The ACATS is here: http://www.ada-auth.org/acats.html including various documentation. It stands for "Ada Conformity Assessment Test Suite". - Bob
2008 Jan 21
1
ZFS Internals Deep Dive - Where can I find it?
...ds/ZFS_Deep_Dive_Jan07.pdf, but this is more of a features and administration overview than an internals discussion. The best internals discussion I have found so far is the ZFS Source Tour at http://opensolaris.org/os/community/zfs/source/, but I was hoping to find even more detailed information. Duff This message posted from opensolaris.org
2003 Jun 03
2
tftp problems with VIA EPIA-M board
...TFTP aborted This is with tftpd-hpa. I've tried with atftpd, and I get much the same conversation -- an error code immediately after an option ack. The hardware is a VIA-Rhine II (VT6102), claiming "Intel UNDI, PXE-2.0 (build 082)" when the PEX boot sequence starts. Is this a duff PXE implementation, or something stupid I've done? Thanks, Hugo. PS. This mailing list seems to have "issues" with PGP/MIME signed emails. Is that the case? -- === Hugo Mills: hugo at ... carfax.org.uk | darksatanic.net | lug.org.uk === PGP key: 1C335860 from wwwkeys.eu.pg...
2005 Jul 21
1
Yum problem
Anyone tell me why I am suddenly getting this error, I did an RPM rebuild remove all the duff db files from /var/lib/rpm, uninstalled yum re-installed it from the CD, still doesn't work: yum -y update Setting up Update Process Setting up Repos addons 100% |=========================| 951 B 00:00 base 100% |=========================| 1.1 kB...
2008 Jul 24
0
[LLVMdev] Indirect Branch Representation
Actually, I am trying to implement a frontend for conversion from binary to LLVM. In binary, we would encounter branch indirect instructions like, Br Reg, where Reg would be an equivalent virtual register in LLVM. So, we can't directly implement Switch block method here to represent this instruction as we don't know how the values of Reg are mapped to basic blocks. I was going through
2008 Jul 24
2
[LLVMdev] Indirect Branch Representation
On Thursday 24 July 2008 01:47, Chris Lattner wrote: > On Jul 23, 2008, at 8:47 PM, kapil anand wrote: > > Specifically, I need a way to represent indirect branch instruction > > (in binary) as an equivalent LLVM instruction. With switch > > instruction , I would have to list all the possible targets and then > > initialize the corresponding instruction. I was just
2008 Sep 24
5
Re: save blob to file?
Frederick Cheung wrote: > On 14 Aug 2008, at 15:11, John Griffiths wrote: > >> >> hope someone can help with this, >> >> in my mysql table i''ve got a blob column storing images inside the >> database, it''s also got the filetype and filesize. >> >> now i can work out what the filename will be (e.g. 2002.jpg) but i >>
2006 Jul 19
3
Recommended testing approaches for new Mongrel handlers?
Okay, I got off my duff this week and have been finishing Mongrel support for IOWA. I now have two handlers that I need to test. One is similar to the Rails handler, passing request handling to IOWA threads in the same process, and the other allows one or more Mongrel processes to pass requests to one or more separate I...
2013 Nov 25
0
Sysinux 6 will not boot ISOs on BIOS (i.e. pre-UEFI) systems
On 11/23/2013 09:35 AM, Carl Duff wrote: > -- Re-sent as original may be stuck at awaiting "authorisation" (originally > sent before I joined the mailing list) > > Hi All, > > It is impossible to boot Linux-based ISOs that use Syslinux 6.02 via CD or > DVD on older - non-UEFI - systems. Any attempt...
2020 Jan 11
2
nut on armhf, r-pi4b IOW
On Jan 11, 2020, at 3:50 PM, Gene Heskett wrote: > >> The problem is further downstream. Even after you map HID names to NUT >> names, then you run into the fact that CPS and NUT are interpreting >> the HID Report Descriptor differently. (Some details here: >> https://github.com/networkupstools/nut/issues/439 ) > > Thats asking quite a bit of you. IMO TANSTAAFL
2013 Nov 23
4
Sysinux 6 will not boot ISOs on BIOS (i.e. pre-UEFI) systems
It occured with every BIOS system I tested on (none of them Dell): 1. HP G62 laptop (i3) 2. Samsung RV520 (i3) Don't know what system Philip Muller uses; have copied him in as he has far more technical knowledge than I do. Syslinux tested from Arch and Manjaro (an Arch derivative). Basically found then when creating latest ISO images. I may be missing something as well about the FMs. Just