search for: status3

Displaying 6 results from an estimated 6 matches for "status3".

Did you mean: status
2010 Apr 18
4
[LLVMdev] create two Twine object
I need to generate variables like status1, status2, status3, ...... request1, request2, request3, ...... this is my code, other unrelated detail are eliminated. static int varNum; static const char *getVarNum() { ++varNum; std::stringstream ss; ss << varNum; std::string *varname = new std::string(ss.str()); return varname->c_str(); } const char...
2010 Apr 18
0
[LLVMdev] create two Twine object
...st); Instruction *sreqInst = new AllocaInst(ReqTy, Twine("request") + Twine(varNum), entry_inst); btw, your getVarNum() leaks. Eugene On Sun, Apr 18, 2010 at 5:55 AM, Yuanfang Chen <tabloid.adroit at gmail.com> wrote: > I need to generate variables like > status1, status2, status3, ...... > request1, request2, request3, ...... > this is my code, other unrelated detail are eliminated. > static int varNum; > static const char *getVarNum() { > ++varNum; > std::stringstream ss; > ss << varNum; > std::string *varname = new std::string(ss.str()); >...
2010 Apr 18
1
[LLVMdev] create two Twine object
...ReqTy, Twine("request") + > Twine(varNum), entry_inst); > > > btw, your getVarNum() leaks. > > Eugene > > On Sun, Apr 18, 2010 at 5:55 AM, Yuanfang Chen <tabloid.adroit at gmail.com> wrote: >> I need to generate variables like >> status1, status2, status3, ...... >> request1, request2, request3, ...... >> this is my code, other unrelated detail are eliminated. >> static int varNum; >> static const char *getVarNum() { >> ++varNum; >> std::stringstream ss; >> ss << varNum; >> std::string *varname =...
2006 May 31
1
Creating Multiple Child objects on a single form
...gt; [:day, :month, :year ] %> <label for="evaluation_comment"> Comments:</label> <%= text_area ''evaluation'', ''comment'' %> This produces a set of ''status'' objects like status1, status2, status3 in params, which I then loop through again in the create function in my evaluations controller: def create @evaluation = Evaluation.new(params[:evaluation]) @goal = Goal.find_by_id(params[:goal_id]) if @evaluation.save for objective in @goal.objectives @evaluation.sta...
2011 Feb 20
4
Need Help
Hi, We realized that there are certain parameters within icecast that request specific directory path address for the program to connect upon start up...we are now trying to find an icecast.pid file but we have not been able to find it in any of the directories. Do you know were we can find that file? Thank you, Luis Barrett -------------- next part -------------- An HTML attachment was
2008 Jan 02
6
problem when editing record in polymorphic relation
...| 2 | HardwareCi The table, software_cis ,contains the following records ===================================================== id | asset_tag | status | version ----+-------------------+---------+--------- 1 | AC Logix - AT1 | Status2 | 1.0 2 | RR Logix AT2 | Status3 | 2.3 The table, hardware_cis ,contains the following records ===================================================== id | asset_tag | status | version ----+-------------------+---------+--------- 1 | HCL - AT1 | Status1 | 1.0 2 | IBM - AT2 | Status1 | 2.3 The contro...