search for: celery

Displaying 20 results from an estimated 28 matches for "celery".

2018 Jun 14
2
Success: Bring-up of LLVM/clang-built Linux ARM(32-bit) kernel for Android - Nexus 5
> The main advantage of the clang-built Android ARM(32-bit) hammerhead kernel for my Nexus 5 has been the better battery usage when compared to that of gcc-built kernel, with the same kernel config and hardware(my Nexus 5 Android Smartphone). Details of the same can be found below. To be fair, the GCC version which comes with the android ndk has not been updated for four years, while the clang
2020 Oct 05
2
LLJIT: __{math}_finite symbols not resolved ?
Hello, here is a repro which runs in a docker image. https://we.tl/t-O1EhIAOeOF To see the issue, run repro.sh It will first download a (big, sorry) centos:7 docker image with my build of LLVM-11 and build a simple lljit-based example. This example is called with some trivial .cpp which calls `cos`. When ran from *within the container* it works. When the same example, with the same bitcode
2007 Jun 01
1
RFC: making the xen startup integrate better with distros
...le in /etc/sysconfig/xen allowing user to customize the startup options for individual daemons. * Drop a file in /etc/sysconfig/modules/xen.modules to trigger loading of the backend driver modules. So we have a config file in /etc/sysconfig/modules containing user config options [root@celery console]# cat /etc/sysconfig/xend #XENSTORED_PID="/var/run/xenstore.pid" #XENSTORED_ARGS= # Log all hypervisor messages (cf xm dmesg) #XENCONSOLED_LOG_HYPERVISOR=yes # Log all guest console output (cf xm console) #XENCONSOLED_LOG_GUESTS=yes # Location to store guest &...
2020 Oct 05
2
LLJIT: __{math}_finite symbols not resolved ?
Hello, Right now I am just using a Generator to look for symbols in my process (which links dynamically against libc / libm). It seems to have no trouble finding every other libc / libm / libc++ / ... symbol so I assumed that it was not necessary to specifically link against libm where these __finite symbols reside: $ nm -D /usr/lib/libm.so.6 | grep finite 0000000000050540 T
2018 Mar 17
1
MCJIT with LLVM >= 5.0 on Windows 64
Hello, I am using the Faust language which leverages LLVM's MCJIT for code generation (http://faust.grame.fr/). There are some problems[1] when generating code and executing it afterwards on Windows with a MSVC "host" (that is, LLVM itself and the software it is used in are built with MSVC). It works fine when building LLVM / Faust with Mingw. On MSVC the code is generated with
2008 Jul 22
2
Rsync job exiting with error "unexpected tag 3 [sender]"
...ignore errors = no ignore nonreadable = yes transfer logging = yes timeout = 600 refuse options = checksum dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz I appreciate any help. Thanks! Regards, Alex from Argentina -- Saludos, Alejandro Celery ADVANTEK SRL +5411-4586-2565
2007 Jul 02
2
Object Property Sorting - Hash?
...rrays instead of the property-value configuration that Hash uses? Here is an example object similar to the one I want to sort: var foodsByLetter = { ''B'': [''broccoli'', ''bread''], ''C'': [''carrots'', ''celery''], ''A'': [''alfalfa sprouts'', ''apple''] }; Then I want to sort by the object''s keys so I can create a nested list: <ul> <li>A<ul><li>alfalfa sprouts</li><li>apple</li></ul></...
2020 Oct 05
2
Clang API: any way to use a virtual filesystem ?
Hello, I am shipping my app (https://ossia.io) with an embedded clang to allow people to write extensions in C++ at run-time. For that to work I also ship a SDK with all the required headers, libc++, etc... which is downloaded & extracted in some folder. Problem is: while on my linux dev. machine this operation is fast, apparently on Windows and mac extracting a .zip with a few thousand
2018 Nov 06
2
Trying to cross-compile LLVM runtimes to Windows
I suspect mingw is going to be incompatible with Petr’s needs. Adding Nico as he probably does the most cross compiling. I did it a little several weeks ago, just not with libc++, and I don’t remember running into any problems. One thing that’s not clear to me is why the resource compiler is even being invoked at all On Tue, Nov 6, 2018 at 5:46 AM Martin Storsjö via llvm-dev < llvm-dev at
2016 Sep 06
1
Whether to use systemd to start services
I'm wondering if it's normally required to start services with systemd as opposed to sysv? I currently load a few services using the old init.d/service funtionality, which still works fine. Is this ok or is sysv going to be fully discontinued in the future? The service I load is celeryd via init.d but so far finding few pointers as to how to do this with a celery.service file. I can load the service with this line execStart=/etc/init.d/celeryd Thanks, Tim
2008 Jun 06
1
rsync daemon not answering
...the rsync port and i confirm that the request from deltacopy are coming through OK and checked my iptables OK too. But for some reason the daemon doesn?t answer the requests. Any idea what should I check? What should i post here to help you help me? Thanks! Regards, Alex -- Saludos, Alejandro Celery ADVANTEK SRL +5411-4586-2565
2010 Sep 16
5
DO NOT REPLY [Bug 7683] New: New rsync deletes destination files it shouldn't
...have just run the rsync command on its own to show the version number. Interestingly, I have copied an old version on the rsync program from a old Linux CD and it exhibits the same problem running under the new Ubuntu, so it may be an issue relating to the way rsync reads a VFAT filesystem. vb at celery:~$ sudo rsync --modify-window=2 -r -u -t -n --delete-during --progress /media/sda1/My\ Documents/Vaskor/Tasks /media/4BEF-DCDA/Vaskor sending incremental file list Tasks/ deleting Tasks/cleanvir.bat deleting Tasks/CPD Technical Updates 2011 - Topics nomination form.doc Tasks/Moringa-Brochure-Anstis...
2018 Nov 06
3
Trying to cross-compile LLVM runtimes to Windows
I have been using this project with great success to achieve this : https://github.com/mstorsjo/llvm-mingw It generates a linux-based windows cross-compiler with clang, libc++, etc. I was able to build a large part of Qt with it afterwards for instance. Best, Jean-Michaël On 06/11/2018 04:21, Petr Hosek via llvm-dev wrote: > I've tried building libc++ for Windows on Linux by setting
2020 Oct 05
2
LLJIT: __{math}_finite symbols not resolved ?
Hello, when building code with -Ofast -ffinite-math-only -ffast-math, clang generates calls to "finite" variants of math functions. This has been the source of a fair amount of issues in a "normal", non-JIT pipeline, which seem to have been fixed over time - a simple fix being recompiling the target app against the new glibc. - https://bugs.llvm.org/show_bug.cgi?id=44842 -
2020 Jul 15
4
Support for macOS feth devices
Hi, I am currently using the L2 tunnel feature of ssh between two Linux machines, and it works beautifully! As a result, I have come to prefer a workflow that uses an L2 tunnel, but I can't seem to find a long-term solution for this workflow on macOS. At the moment, tap devices on macOS can be generated using a kernel extension like tuntaposx <http://tuntaposx.sourceforge.net/>;
2018 Jun 13
4
Success: Bring-up of LLVM/clang-built Linux ARM(32-bit) kernel for Android - Nexus 5
Hello, I would like to share my successful bring-up of LLVM/clang-built Linux ARM(32-bit) hammerhead kernel for Android running on my Nexus 5 smartphone. After having successfully brought up LLVM/clang-built Linux kernel(since v4.15.7 to the most recent v4.17) on x86_64, I was interested in accomplishing the same on the ARM platform of my Nexus 5 - Android smartphone. So, here is the complete
2004 Dec 28
1
Meetme scalable to 300 people?
Hi everyone. I am looking at providing a conference for up to 300 people and was wondering if anyone has scaled meetme to 300 people. Here are some points: 1) I am using an IAX2 gateway hosted on a VOIP service provider. 2) The machine is hosted at the providers site so one has to assume that bandwidth is not going to be an issue. 3) Everything is coming in as ULAW so we won't need to
2020 Jul 15
2
Support for macOS feth devices
On Wed, 15 Jul 2020, Peter Stuge wrote: > is GPL-licensed, so a derivative of that can't be integrated into OpenSSH. A derivative of it, that exposes a general API to do tap-device-like things using stdio and command line options, could be called over its general API from OpenSSH though. Even be developed separately (this would, in fact, even help). bye, //mirabilos -- ?MyISAM tables
2002 Jun 24
2
Please Help FreeBSD 4.5 and XP
All I will try to keep this short but I can't get any of my windows boxes to join the domain they include winXP, win2k, win9x. Server FreeBSD 4.5 Samba from Ports 2.2.2 Celery 400 with 512 meg of ram 120gig of Raid 5 U2W drives I added the machine names to samba in freebsd you must use vipw because there is no adduser plus it has a hard time with the $ at the end of the machine name. Then I created the smbpasswd like such Smbpasswd -a -m machine_name Then I...
2004 Dec 13
3
CPU spikes with wcfxs loaded
I need to reopen this discussion because it's impossible to run spandsp (and VoIP) under these circumstances. With zaptel unloaded, I see the following "vmstat 1" output: no swapping, an occasional disk output, +/- 1003 interrupts/sec., less than 10 context switches/sec., CPU idle 100%. A very quiet system. I load modules zaptel and wcfxo, and the system utilization stays the