search for: _up

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

Did you mean: _p
2005 May 03
0
R on Mac OS X: odd errors when doing install.packages()
...le module) definition of _xerbla_ ld: warning multiple definitions of symbol _BC /Library/Frameworks/R.framework/Versions/2.1.0/Resources/lib/libreadline.5.0.dyl ib(terminal.so) definition of _BC /usr/lib/libncurses.5.dylib(lib_termcap.o) definition of _BC ld: warning multiple definitions of symbol _UP /Library/Frameworks/R.framework/Versions/2.1.0/Resources/lib/libreadline.5.0.dyl ib(terminal.so) definition of _UP /usr/lib/libncurses.5.dylib(lib_termcap.o) definition of _UP ld: warning multiple definitions of symbol _PC /Library/Frameworks/R.framework/Versions/2.1.0/Resources/lib/libreadline.5.0...
2017 Jan 16
4
[RFC 0/2] Propose a new pointer trait.
Hi, I'm part of an engineering team doing research on persistent memory support and we have stumbled upon an interesting problem. The issue is, we would like to be able to use the standard library containers in a persistent memory context (think NVDIMM-N). What I mean is that you allocate a container from said memory, use it like you normally would. After the application terminates, expectedly
2004 Feb 05
1
Installing odesolve under MacOSX
Installing odesolve in Raqua 1.8.0 or 1.8.1 under MacOSX gives the following message: Warning message: Installation of package odesolve had non-zero exit status in: install.packages(ui.pkgs, CRAN = getOption(where), lib = .libPaths()[1]) Moreover, in the source of odesolve is no makefile. Does anyone know how to get a proper installation? Maartje
2005 May 18
0
Advice requested: installation failing for foreign_0.8-7, mgcv_1.2-4, rpart_3.1-23, VR_7.2-15
...module) definition of _xerbla_ ld: warning multiple definitions of symbol _BC /Library/Frameworks/R.framework/Versions/2.1.0/Resources/lib/ libreadline.5.0.dylib(terminal.so) definition of _BC /usr/lib/libncurses.5.dylib(lib_termcap.o) definition of _BC ld: warning multiple definitions of symbol _UP /Library/Frameworks/R.framework/Versions/2.1.0/Resources/lib/ libreadline.5.0.dylib(terminal.so) definition of _UP /usr/lib/libncurses.5.dylib(lib_termcap.o) definition of _UP ld: warning multiple definitions of symbol _PC /Library/Frameworks/R.framework/Versions/2.1.0/Resources/lib/ libreadline....
2013 Jul 01
3
Yum errors
Hi, I have a machine that recently had some file system corruption. fsck was able repair the file system but I am getting the following error when I try to do yum update: [Errno 21] Is a directory: '/var/lib/yum/yumdb/e/2f883c08e3b596b66fcc19c6b4d73b11c9aaa43e-e2fsprogs-1.41.12-14.el6_4.2-x86_64/checksum_type' In searching Google, some suggested renaming the yumdb but that just results
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...sizeof(num), float_data<Float>::spec, value); + s += string_ref(num, num + n); + } + } +}; + +template <std::size_t N> +class arena +{ + static const std::size_t alignment = 16; + alignas(alignment) char buf_[N]; + char* ptr_; + + std::size_t + align_up(std::size_t n) noexcept + {return (n + (alignment-1)) & ~(alignment-1);} + + bool + pointer_in_buffer(char* p) noexcept + {return buf_ <= p && p <= buf_ + N;} + +public: + arena() noexcept : ptr_(buf_) {} + ~arena() {ptr_ = nullptr;} + arena(const aren...