search for: nonmut

Displaying 7 results from an estimated 7 matches for "nonmut".

Did you mean: nondot
2012 Apr 23
3
Selecting columns whose names contain "mutated" except when they also contain "non" or "un"
...ot; using code like: names(KRASyn)[grep("muta", names(KRASyn))] The idea then would be to add together the various columns using code like: KRASyn$Mutant_comb <- rowSums(KRASyn[grep("muta", names(KRASyn))]) What I discovered though, is that this selects columns like "nonmutated" and "unmutated" as well as columns like "mutated", "mutation", and "mutational". So I'd like to know how to select columns that have some variation of the word "mutant" without the "non" or the "un". I've been...
2008 Dec 31
2
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
...with >> _HAS_ITERATOR_DEBUGGING fails. >> >> > What is the assertion message? > > -bw > "vector subscript out of range" This is the asserting code from <vector> : const_reference operator[](size_type _Pos) const { // subscript nonmutable sequence #if _HAS_ITERATOR_DEBUGGING if (size() <= _Pos) { _DEBUG_ERROR("vector subscript out of range"); _SCL_SECURE_OUT_OF_RANGE; } #endif /* _HAS_ITERATOR_DEBUGGING */ _SCL_SECURE_VALIDATE_RANGE(_Pos < size())...
2008 Dec 31
0
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
...GGING fails. >>> >>> >> What is the assertion message? >> >> > "vector subscript out of range" > > This is the asserting code from <vector> : > > > const_reference operator[](size_type _Pos) const > { // subscript nonmutable sequence > > #if _HAS_ITERATOR_DEBUGGING > if (size() <= _Pos) > { > _DEBUG_ERROR("vector subscript out of range"); > _SCL_SECURE_OUT_OF_RANGE; > } > #endif /* _HAS_ITERATOR_DEBUGGING */ > _SCL_SEC...
2008 Dec 31
0
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
On Dec 30, 2008, at 4:51 PM, srs wrote: > 2. There seems to be an issue in ScheduleDAGSDNodes.h when in debug > mode. The problem is the evaluation of "&SUnits[0];" which ASSERT's in > VC++'s vector[] implementation (when _HAS_ITERATOR_DEBUGGING is on). > > As a work-around, I commented out the debug code (see "patch" below.) > > What would the
2009 Jan 01
1
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
...>>> What is the assertion message? >>> >> "vector subscript out of range" >> >> This is the asserting code from <vector> : >> >> >> const_reference operator[](size_type _Pos) const >> { // subscript nonmutable sequence >> >> #if _HAS_ITERATOR_DEBUGGING >> if (size() <= _Pos) >> { >> _DEBUG_ERROR("vector subscript out of range"); >> _SCL_SECURE_OUT_OF_RANGE; >> } >> #endif /* _HAS_ITERATOR_D...
2005 May 24
6
echo problem
...ion on SIP clients, but cant find anything and echocancel=y doesnt seem to have any effect. Configuration: CVS-HEAD from last month iPAQ h5500 with SJPhone (gsm/ulaw/alaw) Problem description: When I place or receive a call I hear a faint delayed echo of myself. The other party hears a really bad nonmuted echo that makes the call unusable. Aside from the voip-info page on echo cancelation, can anyone suggest directives for sip.conf or similar to play with for echo cancelation. I have looked into sjphone as the cause, after speaking with developers there it was suggested to see if my asterisk bo...
2008 Dec 31
4
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
Hi all, While testing my compiler on win32 in JIT mode, I ran into a couple of issues: 1. I linked the compiler with the lib files resulting from the cmake created VS.NET build. While everything built just fine, the ExecutionEngine::create call always returned NULL. The fix was to also link with JIT.obj (thanks aKor for pointing me in the right direction). I would have thought that linking