search for: add_part

Displaying 2 results from an estimated 2 matches for "add_part".

Did you mean: add_parts
2013 Jan 27
0
[LLVMdev] SHL_PARTS and company
...S/SRA_PARTS/SRL_PARTS - These operators are used for expanded /// integer shift operations, just like ADD/SUB_PARTS. The operation /// ordering is: /// [Lo,Hi] = op [LoLHS,HiLHS], Amt SHL_PARTS, SRA_PARTS, SRL_PARTS " Okay, for one thing, I can't find a reference to ADD_PARTS or SUB_PARTS other than in diffs from about 8 years ago, so the doc comment appears to be highly out of step with current llvm facilities. It seems to me, after looking around a bit, that these nodes are intended to allow one to extend bit shifts to higher widths than the target would normally sup...
2006 Jan 30
0
Adding ActiveRecord objects to the session
...t the debugging statements; the first stament returns " - 0 - new" and the second statement returns "123 - 4 - DB" where 123 is whatever id was created and 4, as far as I can tell, is the id of the last Quote object that was instanciated (many method calls ago). Controller: def add_part part = Part.find(@params[''id''].split(''_'')[1]) if part qp = QuotePart.new_from_part(part, part.suppliers[0].id) session[''quote''] = [] unless session[''quote''] @debug = "#{qp.id} - #{qp.quote_id} - " + (qp.new_reco...