search for: _right

Displaying 20 results from an estimated 21 matches for "_right".

Did you mean: wright
2010 Oct 21
1
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
Michael, Yes, while stepping through this VS2010 `std::swap` code, `_Move` did nothing, e.g. //////////////////////////////////////////////////// void swap(_Ty& _Left, _Ty& _Right) { // exchange values stored at _Left and _Right _Ty _Tmp = _Move(_Left); _Left = _Move(_Right); _Right = _Move(_Tmp); } //////////////////////////////////////////////////// was equivalent to: //////////////////////////////////////////////////// void swap(_Ty& _Left, _Ty& _Right) {...
2010 Oct 05
4
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
...gn iterators to two different blocks!"); idx = I.idx; return *this; } For copy construction, MS VS2010 std reserves the right, and sometimes calls, a method to reverse elements which does so by swap: template<class _Ty> inline void swap(_Ty& _Left, _Ty& _Right) { // exchange values stored at _Left and _Right _Ty _Tmp = _Move(_Left); _Left = _Move(_Right); <<<<<<<<<<<<< Needs FULL assignment operator!!!! _Right = _Move(_Tmp); } When `_Ty` is `SuccIterator const` the assert "Cannot...
2010 Oct 21
0
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
...    return *this; > >     } > > > > For copy construction, MS VS2010 std reserves the right, and sometimes > calls, > > a method to reverse elements which does so by swap: > > > >  template<class _Ty> inline > >  void swap(_Ty& _Left, _Ty& _Right) > >  {             // exchange values stored at _Left and _Right > >    _Ty _Tmp = _Move(_Left); This uses the compiler generated default copy constructor which does an element by element copy. >    _Left = _Move(_Right); <<<<<<<<<<<<< Needs...
2010 Oct 20
0
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
...); > > idx = I.idx; > > return *this; > > } > > For copy construction, MS VS2010 std reserves the right, and sometimes calls, > > a method to reverse elements which does so by swap: > > template<class _Ty> inline > > void swap(_Ty& _Left, _Ty& _Right) > > { // exchange values stored at _Left and _Right > > _Ty _Tmp = _Move(_Left); > > _Left = _Move(_Right); <<<<<<<<<<<<< Needs FULL assignment operator!!!! > > _Right = _Move(_Tmp); > > } > > When `_Ty` is `SuccIterator co...
2013 Jul 04
4
[LLVMdev] llvm (hence Clang) not compiling with Visual Studio 2008
...2008 relies on a checker provided by the file "xutility", which reads: template<class _Pr, class _Ty1, class _Ty2> inline bool __CLRCALL_OR_CDECL _Debug_lt_pred(_Pr _Pred, _Ty1& _Left, const _Ty2& _Right, const wchar_t *_Where, unsigned int _Line) { // test if _Pred(_Left, _Right) and _Pred is strict weak ordering if (!_Pred(_Left, _Right)) return (false); else if (_Pred(_Right, _Left)) _DEBUG_ERROR2("in...
2007 May 31
0
[LLVMdev] Advice on a VStudio specific patch
On Thu, 31 May 2007, Chuck Rose III wrote: > Our project is cross platform and on Windows we use VStudio 2005. > VStudio presents a couple of issues related around it's STL > implementation and also it's non-respect for the no-return semantic of > abort(). Ok. We want the source to be portable, so it's goodness to get these fixes into the main tree. > I've fixed
2013 Jul 04
0
[LLVMdev] [cfe-dev] llvm (hence Clang) not compiling with Visual Studio 2008
...provided by the file "xutility", which reads: > > template<class _Pr, class _Ty1, class _Ty2> inline > bool __CLRCALL_OR_CDECL _Debug_lt_pred(_Pr _Pred, > _Ty1& _Left, > const _Ty2& _Right, > const wchar_t *_Where, > unsigned int _Line) > { // test if _Pred(_Left, _Right) and _Pred is strict weak ordering > > if (!_Pred(_Left, _Right)) > return (false); > else if (_Pred(_Right,...
2007 May 31
2
[LLVMdev] Advice on a VStudio specific patch
Hola LLVMers, Our project is cross platform and on Windows we use VStudio 2005. VStudio presents a couple of issues related around it's STL implementation and also it's non-respect for the no-return semantic of abort(). I've fixed it locally, but I'd like to send a patch so I don't have to do this every time I update from the source repository. So.... if I'm
2007 May 31
4
[LLVMdev] Advice on a VStudio specific patch
...(I->Subtree)) return I; } return E; } The debug paths through VStudio's STL through the std::lower_bound function get to this template: template<class _Ty1, class _Ty2> inline bool __CLRCALL_OR_CDECL _Debug_lt(const _Ty1& _Left, const _Ty2& _Right, const wchar_t *_Where, unsigned int _Line) { // test if _Left < _Right and operator< is strict weak ordering if (!(_Left < _Right)) return (false); else if (_Right < _Left) _DEBUG_ERROR2("invalid operator<", _Where, _Line); return (true); } The critical feature...
2015 Aug 22
2
Russian wiki
.../action/show.py", > line 27, in execute > if not request.user.may.read(pagename): > File "/usr/lib/python2.6/site-packages/MoinMoin/security.py", line 111, in > _getPermission > allowed = self.request.cfg.acl_before.may(self.request, self.user.name, > self._right) > File "/usr/lib/python2.6/site-packages/MoinMoin/wikiacl.py", line 178, in > may > is_group_member = request.dicts.has_member > File "/usr/lib/python2.6/site-packages/MoinMoin/request.py", line 298, in > getDicts > dicts.scandicts() > File &q...
2009 Oct 19
6
Monitoring a remote server with Conky ?
Hi, I've been using Conky for some time, a nifty utility to monitor just about anything on the PC. Vital things like CPU, RAM, swap, disks, current song playing in MPD :o) Here's what it looks like : http://www.microlinux.fr/images/bureau_conky.png And with more detail : http://www.microlinux.fr/images/conky_zoom.png Now I wonder... I'd really like to use that to monitor my
2009 Oct 15
3
CentOS 5.4 and BitTorrent
If I remember correctly, when version 5.3 was released, about 95% was made available by BitTorrent before the official release date, so that the entire file would be available as soon as possible after the release. Could the same be done this time? -- Yves Bellefeuille <yan at storm.ca> "Yves Bellefeuille: Eterna malvenkanto en UEA" -- Heroldo Komunikas, n-ro 389
2015 Aug 22
2
Russian wiki
I am not sure, but ru section fails to load now. Last changes was translating SIG section. Please, help to fix this issue. 2015-08-22 21:24 GMT+06:00 Ilyas Arinov <arinov.ilyas at gmail.com>: > Thanks. Now I can do it by myself. > > 2015-08-22 19:43 GMT+06:00 Alan Bartlett <ajb at elrepo.org>: > >> On 22 August 2015 at 14:37, Akemi Yagi <amyagi at gmail.com>
2016 Mar 23
2
Fwd: Re: r-base installation fails on Ubuntu 14.04
-------- Forwarded Message -------- Subject: Re: [R-sig-Debian] r-base installation fails on Ubuntu 14.04 Date: Wed, 23 Mar 2016 13:07:44 -0700 From: Barnet Wagman <bdwgen at gmail.com> To: Dirk Eddelbuettel <edd at debian.org> > Lastly, and please don't take this the wrong way: I think I am helping way > more people like you who for one reason or other insist on older
2015 Aug 22
0
Russian wiki
..., in execute > > if not request.user.may.read(pagename): > > File "/usr/lib/python2.6/site-packages/MoinMoin/security.py", line > 111, in > > _getPermission > > allowed = self.request.cfg.acl_before.may(self.request, > self.user.name, > > self._right) > > File "/usr/lib/python2.6/site-packages/MoinMoin/wikiacl.py", line 178, > in > > may > > is_group_member = request.dicts.has_member > > File "/usr/lib/python2.6/site-packages/MoinMoin/request.py", line 298, > in > > getDicts > &...
2002 Nov 02
5
problem compiling R-1.6.1 on WinNT: pcre
Dear R-help, (This is the first time I tried compiling 1.6.x from source on WinNT4, so please bear with me...) I tried following the instruction in src/gnuwin32/INSTALL as closely as I could, but encounter the following errors at the make step. Can some kind soul please help? I'm using pcre-3.9 and MinGW-2.0.0-3. I checked and libRpcre.a _is_ in src/extra/pcre. TIA, Andy ... gcc
2015 Aug 22
0
Russian wiki
....org/wiki_instance/data/plugin/action/show.py", line 27, in execute if not request.user.may.read(pagename): File "/usr/lib/python2.6/site-packages/MoinMoin/security.py", line 111, in _getPermission allowed = self.request.cfg.acl_before.may(self.request, self.user.name, self._right) File "/usr/lib/python2.6/site-packages/MoinMoin/wikiacl.py", line 178, in may is_group_member = request.dicts.has_member File "/usr/lib/python2.6/site-packages/MoinMoin/request.py", line 298, in getDicts dicts.scandicts() File "/usr/lib/python2.6/site-package...
2015 Aug 23
2
Russian wiki
...if not request.user.may.read(pagename): >> > File "/usr/lib/python2.6/site-packages/MoinMoin/security.py", line >> 111, in >> > _getPermission >> > allowed = self.request.cfg.acl_before.may(self.request, >> self.user.name, >> > self._right) >> > File "/usr/lib/python2.6/site-packages/MoinMoin/wikiacl.py", line >> 178, in >> > may >> > is_group_member = request.dicts.has_member >> > File "/usr/lib/python2.6/site-packages/MoinMoin/request.py", line >> 298, in &...
2006 Aug 04
4
DRY DRY DRY
Hello everyone! Ive been on rails for the last month or so and really enjoyed this framework. However its very hard to find documentation on how to do things right! For example every beginner after a while realizes that having similar CRUD actions in every controller and views for them is not DRY at all! Few days ago I found http://dereksivers.com/rails-shared-controller.html I quite like his
2006 Jun 03
10
Gem versioning and auto installs
Gem drives me daft sometimes. It gives you this wonderful ability to specify a platform for a gem, but forgets to provide a command line switch to select the platform. Politely it asks you, which is all very well when you are installing on one machine interactively, but no good at all on a cluster of 15 machines from a Capistrano script. Is there any way to get gem to automatically select the