search for: homegrown

Displaying 20 results from an estimated 71 matches for "homegrown".

2020 Aug 18
4
Adopting a third-party JSON library
Hi, I'm a new contributor. I'm considering the possibility of adopting a third-party JSON library instead of LLVM's homegrown `lib/Support/JSON.cpp`. The way I see it, this would bring several advantages as well as some downsides: + Slimmer codebase. + Benefit from upstream work and active contributions to another project. + Possibly improved performance and API ergonomics. - Likely compile times regression as many J...
2013 May 15
2
Designing libvirt client
Hi, I have a VMM application using a homegrown client for communicating with hypervisor. I am planning to migrate to libvirt because of the blocking nature of the calls. After going over the architecture, I would like to have a few doubts clarified 1) Should my application be necessarily multi-threaded in order to make use of the non-blocking c...
2008 Jan 11
2
Syslog timezone issue
...ent smoothly but we've encountered one confusing problem with syslog. Under CentOS-3, syslog entries were always dated in the host local timezone. With CentOS-5.1, they're dated in UTC *most* of the time, but occasionally in the local timezone. This has seriously confused a couple of our homegrown process monitoring scripts. The cron, secure, and maillog logs are all consistently in the local timezone ... it's only /var/log/messages that wanders around. It appears that any given process is consistent about which timezone it uses, but there's no obvious reason why any particular pro...
2002 Apr 22
1
symlinks?
I'm trying to switch to using rsync for updating a huge software library containing binaries, text files, symlinks, and so on. We've been using something homegrown which I'm not that happy with - it's a perl script that systems cp and chmod and such. The problem I'm seeing is: target computer: directories ctime-5 and ctime-5b3 are distinct directories source computer: ctime-5 is a symlink that points at ctime-5b3 When I do: /export/home/dcs...
2006 May 09
1
About "/usr/sbin/zfs" and ksh93/libshell.so ...
Hi! ---- Is there any interest to turn the "zfs" utility (to clarify: This is about a change in the "zfs" utility itself, not about any "language bindings" etc.) from it''s (currently) "homegrown" command-line parsing code over to ksh93/libshell.so (this has been proposed by Amersham/GE Healthcare staff a while ago for the original "ksh93-integration" project proposal, see http://www.opensolaris.org/os/project/ksh93-integration/ for the project''s home page) ? The id...
2018 Feb 27
7
RFC 8305 Happy Eyeballs in OpenSSH
>>> TL;DR: please try the patch out and report if it causes "Did not receive >>> identification string" log messages. I believe it does not. Aw crap. My homegrown anti-dos tool for ssh looks for either DNRIS or if logging is verbose enough a connection that didn't result in a login. I give the attacker a few tries and whitelist any successful candidate so I should be ok, but things are getting a bit riskier. I'm a big fan of happy eyeballs in gener...
2016 Dec 18
0
llvm (the middle-end) is getting slower, December edition
...code is that GCC seems to use far more sophisticated algorithms (e.g. lots of files with comments at the top citing different papers and things; not that counting citations means that much, but it's a rough proxy for keeping up with the literature). WIth LLVM, it seems like most of the stuff is homegrown or at least not frequently revisited with an eye to using an new algorithm. And once something starts picking up a bunch of special cases and things, it becomes harder and harder to replace with a new better thing, because nobody will want to throw the old thing away until the new thing covers the...
2009 Sep 01
0
[LLVMdev] accessing a bitcode library exported from C++ using the JIT
...andle parsing failures to getting detailed info reports on the entire processing process (of which you can do something like dump it to cout or something and you get this nice tree of everything that is tried, what passes, what fails, etc...). It is exceedingly detailed, so I am not sure what your homegrown one would have over it, if you have an example then I could add that functionality to Boost.Spirit2.1.
2012 Dec 11
1
Dispatching on a dgCMatrix does not work.
...check if the matrix defines and undirected graph, I have made the following functions/methods: is.UG <- function (object) { UseMethod("is.UG") } is.UG.dgCMatrix <- function (object) { is.adjMAT(object) && (max(abs(t(object) - object)) == 0) } Note: 1) is.adjMAT is homegrown and 2) I know there is an "isSymmetric" method, but I can't get that to work either. These functions are in a package and when I load the package I get: > is.UG(xx) Error in t.default(object) : argument is not a matrix > is.UG.dgCMatrix(xx) Error in t.default(object) : argumen...
2013 Sep 18
1
ENC paramater interpolation in ENC, and inline templates
I''m in the process of rolling out a new homegrown ENC (we''ve decided on using an ENC over hiera; I know it''s not the way a lot of you are going, but it''s right for us) and am running into some issues with variable interpolation in ENC data. To give a concrete example, I''m using modules to configure puppetdb, pu...
2010 Apr 05
1
[JOBS] Web Programmer at Reed College, Portland OR
Reed College is looking for a web programmer who''s interested in working in an enterprise setting but doesn''t want to be told not to bring your dog to the office. In the Web Support Services group, we work on web apps that are part of our homegrown campus portal and courseware systems. Most of our infrastructure is open source, but we also use commercial software for some key applications. Development is primarily in Ruby on Rails. We are looking for a web developer who has experience with Rails or other open source frameworks and experie...
2005 Nov 22
4
multiple rails apps on one lighttpd
.../typo mysite.com/rforums mysite.com/hieraki Is this correct?? I read on a thread in textdrive that this will be possbile in lighty 1.4.8 which is apparently out soon. Also, does anybody know if it''s possible to do several rails apps as above and also have the homne page and some other homegrown pages run by rails.. /(index.rhtml from rails) /typo /rfoums /hierarki /HomeGrownRailsPages Thank you. Matthew Bennett -- Posted via http://www.ruby-forum.com/.
2006 Sep 18
7
drbd using zfs send/receive?
hi everyone, I am planning on creating a local SAN via NFS(v4) and several redundant nodes. I have been using DRBD on linux before and now am asking whether some of you have experience on on-demand network filesystem mirrors. I have yet little Solaris sysadmin know how, but i am interesting whether there is an on-demand support for sending snapshots. I.e. not via a cron job, but via a
2008 Jun 16
2
simple rails login system
Hey All, Just started to play around with rails a bit today by creating a login system, but I''ve run into a glitch. ###user_controller.rb### class UserController < ApplicationController def login @title = "Log In" if request.post? and params[:user] @user = User.new(params[:user]) @userfind =
2017 Feb 17
3
Linking Linux kernel with LLD
>>That boot_params.hdr.code32_start field is probably either invalid (bad reloc or something else causing the bootloader to >>calculate the wrong address) or valid but the thing it thinks it is pointing to wasn't loaded (missing PT_LOAD etc.). >boot_params.hdr.code32_start field is valid :) It is 0x100000, like expected > >Then I suspect that that segment isn't being
1998 Jul 01
4
tcpd anomaly
....hol.ch.ibm.net to perl /usr/sbin/get_em.pl > 139.92.93.124 unknown slip139-92-93-124.hol.ch.ibm.net in.null 2>> > /var/log/get_em_err This is OK and has happend a dozen times a week in the last year. He comes from ch.ibm.net where only de.ibm.net is allowed and is routed to a little homegrown script that logs some stuff like traceroute and finger. > Jul 1 03:35:00 hades in.null[18324]: twist > slip139-92-93-124.hol.ch.ibm.net to perl /usr/sbin/get_em.pl > 139.92.93.124 unknown slip139-92-93-124.hol.ch.ibm.net in.null 2>> > /var/log/get_em_err And again, still OK....
2009 Jun 30
3
[LLVMdev] JIT allocates global data in function body memory
...;pathrev=72630&r1=58687&r2=58688 So what should the right long-term behavior be? It makes sense to me to use the JITMemoryManager for this so that clients of the JIT can customize allocation instead of using malloc or new char[]. On the other hand, that complicates the API and requires a homegrown malloc implementation in the DefaultMemoryManager. Reid
2006 Nov 16
7
Negating or removing classes
I have a situation where I''d like to perform some actions when a node is removed from a class. I have a few (homegrown) services that install ssh keys in authorized_keys and it''s possible that a node may have the service enabled and disabled during it''s lifetime. When disabled I''d like to clean up the ssh keys for security reasons. This brings up the broader question in my mind of what i...
2004 Nov 20
1
how to suppress whiskers in a bwplot?
...#### ### the error message is: Error in segments(x1 = structure(c(NA, NA, NA, NA), .Names = c("", "", : Argument "x0" is missing, with no default ### i don't know if the problem is this panel function, or how I am (mis)using it. (i've never used a homegrown lattice panel function before.) i realize that there is an excellent function in Hmisc that generates cool bwplots sans whiskers, but those plots are too fancy for my current needs. all i need are regular boxy bwplots without whiskers (or umbrellas, as i guess they're also called). as a quic...
2009 Sep 01
4
[LLVMdev] accessing a bitcode library exported from C++ using the JIT
----- Original Message ---- > From: Eli Friedman <eli.friedman at gmail.com> > To: Samuel Crow <samuraileumas at yahoo.com> > Cc: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> > Sent: Monday, August 31, 2009 3:49:01 PM > Subject: Re: [LLVMdev] accessing a bitcode library exported from C++ using the JIT > > On Mon, Aug 31, 2009 at 12:17 PM, Samuel