search for: unittyp

Displaying 18 results from an estimated 18 matches for "unittyp".

Did you mean: unittype
2006 Mar 10
2
adding to has_many on create and edit
...tsController < ApplicationController #snip def create @unit = Unit.new(params[:unit]) @unit.prices.create("price" => params[:price]) @levels = Level.find(:all, :order => "LPAD (`levels`.`elevator_number`,5,\"0\") ASC") @unit_types = UnitType.find(:all, :order => "`unit_types`.`name` ASC") if @unit.save Unit.find(@unit.id).update_attributes(params[:unit]) flash[:notice] = ''Unit was successfully created.'' redirect_to :action => ''list'' else render...
2006 Mar 22
1
[LLVMdev] problem loading analysis results from Inliner pass
On Tue, 21 Mar 2006, Michael McCracken wrote: > opt: /home/mmccrack/lens/obj-llvm-darcslocal/../llvm-darcslocal/llvm/lib/VMCore/PassManagerT.h:426: > void llvm::PassManagerT<UnitType>::markPassUsed(const llvm::PassInfo*, > llvm::Pass*) [with UnitType = llvm::Module]: Assertion > `getAnalysisOrNullUp(P) && > dynamic_cast<ImmutablePass*>(getAnalysisOrNullUp(P)) && "Pass > available but not found! " "Perhaps this is a module pas...
2006 Mar 21
0
[LLVMdev] problem loading analysis results from Inliner pass
...un', my code needs modification to work. However, I thought that maybe I could just make them both ModulePasses instead, but that produces the following runtime error: opt: /home/mmccrack/lens/obj-llvm-darcslocal/../llvm-darcslocal/llvm/lib/VMCore/PassManagerT.h:426: void llvm::PassManagerT<UnitType>::markPassUsed(const llvm::PassInfo*, llvm::Pass*) [with UnitType = llvm::Module]: Assertion `getAnalysisOrNullUp(P) && dynamic_cast<ImmutablePass*>(getAnalysisOrNullUp(P)) && "Pass available but not found! " "Perhaps this is a module pass requiring a functi...
2011 Sep 01
2
CentOS 6.0 and 3ware 9650SE series RAID Performance
...256 Journal inode: 8 Default directory hash: tea Directory Hash Seed: 0b324311-93a9-4c23-bf15-40965792029b Journal backup: inode blocks =========================================================== =================== tw_cli info c2 ============================ Unit UnitType Status %RCmpl %V/I/M Stripe Size(GB) Cache AVrfy ------------------------------------------------------------------------------ u0 RAID-5 OK - - 64K 6519.19 OFF OFF Port Status Unit Size Blocks Serial --------------...
2006 Mar 21
3
[LLVMdev] problem loading analysis results from Inliner pass
On 3/21/06, Chris Lattner <sabre at nondot.org> wrote: > On Mon, 20 Mar 2006, Michael McCracken wrote: > > > Hi, I'm trying to access an analysis pass from the Inliner pass, and > > I'm having a lot of trouble getting that to work - I can verify that > > my pass is loaded and run (it is a dynamically loaded pass that is > > part of an analysisgroup),
2002 Oct 18
2
[LLVMdev] PassManager and dependencies
...t crash itself. Attached file is the simplest possible example of Passes A, B, and C, such that C's getAnalysisUsage(AU) method calls AU.addRequired<A>() and AU.addRequired<B>(). When I try to run opt -load ... -opt-c, it tells me: opt: PassManagerT.h:348: void PassManagerT<UnitType>::markPassUsed (const PassInfo *, Pass *) [with UnitType = Module]: Assertion `Parent != 0 && "Pass available but not found!"' failed. I don't grok this error message. Of course, -opt-a and -opt-b both work fine in isolation. -- Casey Carter Casey at Carter.net cca...
2020 Apr 22
0
slow performance on company production server I need help
...ller: Broadcom Limited NetXtreme BCM5721 Gigabit Ethernet PCI Express (rev 11) 05:00.0 RAID bus controller: 3ware Inc 9650SE SATA-II RAID PCIe (rev 01) There is no bbu phsyically present:? //daisy/c8> /c8/bbu show Error: (CLI:059) Battery Backup Unit is not present. //daisy/c8> show Unit? UnitType? Status???????? %RCmpl? %V/I/M? Stripe? Size(GB)? Cache? AVrfy ------------------------------------------------------------------------------ u0??? RAID-5??? OK???????????? -?????? -?????? 256K??? 11175.8?? Ri???? ON VPort Status???????? Unit Size????? Type? Phy Encl-Slot??? Model ---------------...
2020 Apr 22
3
slow performance on company production server I need help
...>> >> I rebooted the system day before yesterday, and that's when the timeout >> messages started pouring into the log.??? >> >> when I run tw_cli /c8 show, all four drives say they are ok >> [root at daisy cron.daily]# tw_cli /c8 show >> >> Unit? UnitType? Status???????? %RCmpl? %V/I/M? Stripe? Size(GB)? Cache? >> AVrfy >> ------------------------------------------------------------------------------ >> u0??? RAID-5??? OK???????????? -?????? -?????? 256K??? 11175.8?? Ri???? >> ON >> >> VPort Status???????? Unit S...
2005 Dec 07
1
Ext3 journal abort FC4+Updates
...ve recovered the problem. System details: Fedora Core 4 + all updates uname -a Linux <host>.strath.ac.uk 2.6.14-1.1644_FC4smp #1 SMP Sun Nov 27 03:39:31 EST 2005 i686 i686 i386 GNU/Linux Tyan S5150 Tomcat i7221 motherboard 3GHz P4 3ware 9500S 4 disks in raid5: //stams> info c0 Unit UnitType Status %Cmpl Stripe Size(GB) Cache AVerify IgnECC ------------------------------------------------------------------------------ u0 RAID-5 OK - 64K 1117.56 ON OFF OFF Port Status Unit Size Blocks Serial --------------...
2012 Apr 05
4
6.2 - How to check for a failed disk using LVM with a hardware RAID (3ware)
CentOS Community, What commands can I use to check the disk health of the system when LVM2 is being used on top of a RAID 10 using a HARDWARE 3ware raid card. The OS sees a hardware raid usually as one big drive. Is there a way to check the disks individually to see if any are failing, or throwing hard or scsi transport errors?
2006 Jan 10
0
[LLVMdev] passmanager, significant rework idea...
...t this from P->getAnalysisUsage(), likewise with the pass name. +public: + PassUnit(Traversal traversal = LINEAR, Pass *Pass) : + traversal(traversal), + + virtual const char *getPMName() const =0; + + virtual const char *getPassName() const =0; + + virtual bool runPass(PassClass *P, UnitType *M) =0; +}; + +class BBPassUnit : public PassUnit { + BasicBlockPass *BBPass; + +public: + BBPassUnit(Traversal traversal = LINEAR, BasicBlockPass *Pass) : + PassUnit::traversal(traversal), + PassUnit::Pass(static_cast<Pass*>(Pass)) + BBPassUnit::BBPass(Pass) {} +}; + +class LP...
2006 Jan 10
3
[LLVMdev] passmanager, significant rework idea...
The patch below basically hammers out some ideas as to where I'd like to take the passmanager in LLVM. I've tried thinking things through, but I'm still a n00b, so some criticism would be more than welcome. =) Starting from line 191 down. If you're wondering why I created a patch, well that's because I found thinking in passmanagert.h the most productive. -- Regards.
2020 Apr 22
3
slow performance on company production server I need help
...ID controller with RAID 5 set up with 4x 4TB Western Digital Drives. I rebooted the system day before yesterday, and that's when the timeout messages started pouring into the log.??? when I run tw_cli /c8 show, all four drives say they are ok [root at daisy cron.daily]# tw_cli /c8 show Unit? UnitType? Status???????? %RCmpl? %V/I/M? Stripe? Size(GB)? Cache? AVrfy ------------------------------------------------------------------------------ u0??? RAID-5??? OK???????????? -?????? -?????? 256K??? 11175.8?? Ri???? ON VPort Status???????? Unit Size????? Type? Phy Encl-Slot??? Model ---------------...
2006 Jan 10
1
[LLVMdev] Re: passmanager, significant rework idea...
...emented as a new > kind of "batcher" pass manager: You're the expert, so I gather you're right. I was thinking that a generic traversal facility would be nice, since basicblocks might get something in the future or what have you. But that can be fixed by putting this in the FUnitType and having that handle it behind the scenes. There is something about batchers that doesn't quite sit right with me, I think it stems from the fact that you can only batch one type. It doesn't seem like a huge problem, but it either paints you into a corner or forces you to riddle the cl...
2020 Apr 22
0
slow performance on company production server I need help
...4x 4TB Western Digital Drives. > > I rebooted the system day before yesterday, and that's when the timeout > messages started pouring into the log.??? > > when I run tw_cli /c8 show, all four drives say they are ok > [root at daisy cron.daily]# tw_cli /c8 show > > Unit? UnitType? Status???????? %RCmpl? %V/I/M? Stripe? Size(GB)? Cache? > AVrfy > ------------------------------------------------------------------------------ > u0??? RAID-5??? OK???????????? -?????? -?????? 256K??? 11175.8?? Ri???? ON > > VPort Status???????? Unit Size????? Type? Phy Encl-Slot?...
2020 Apr 24
0
R 4.0.0 is released
...The internal implementation of grid units has changed, but the only visible effects at user-level should be * a slightly different print format for some units (especially unit arithmetic), * faster performance (for unit operations) and * two new functions unitType() and unit.psum(). Based on code contributed by Thomas Lin Pedersen. * When internal dispatch for rep.int() and rep_len() fails, there is an attempt to dispatch on the equivalent call to rep(). * Object .Machine now contains new longdouble.* entries (when R uses long d...
2020 Apr 24
0
R 4.0.0 is released
...The internal implementation of grid units has changed, but the only visible effects at user-level should be * a slightly different print format for some units (especially unit arithmetic), * faster performance (for unit operations) and * two new functions unitType() and unit.psum(). Based on code contributed by Thomas Lin Pedersen. * When internal dispatch for rep.int() and rep_len() fails, there is an attempt to dispatch on the equivalent call to rep(). * Object .Machine now contains new longdouble.* entries (when R uses long d...
2020 Apr 24
0
R 4.0.0 is released
...The internal implementation of grid units has changed, but the only visible effects at user-level should be * a slightly different print format for some units (especially unit arithmetic), * faster performance (for unit operations) and * two new functions unitType() and unit.psum(). Based on code contributed by Thomas Lin Pedersen. * When internal dispatch for rep.int() and rep_len() fails, there is an attempt to dispatch on the equivalent call to rep(). * Object .Machine now contains new longdouble.* entries (when R uses long d...