search for: steward

Displaying 20 results from an estimated 30 matches for "steward".

Did you mean: stewart
2003 Sep 09
6
3.6p2 build errors on buffer_get with latest portable/SNAP
Tried the user discussion list to no avail, can't get 3.6.p2 portable running due to buffer_get errors. Does the latest portable SNAP incorporate the latest patches? Running Red Hat 8.0 AS SHIPPED /usr/sbin/sshd ... cool, listens on 22 with 3.4p1 WITH 3.6.1p2 ./configure make make install ... /usr/local/sbin/sshd -t -f /usr/local/etc/sshd_config buffer_get: trying to get more bytes 1 than
2012 Jul 20
9
[LLVMdev] RFC: Staging area proposal for new backends
...backends will be in the main LLVM tree, with building of the backend being disabled by default. There will also be a TODO file in the backend's root directory, that contains a list of improvements that are required to promote the backend out of the staging area. The backend will be assigned a steward who's role will be to guide the backend through the staging process and help solicit feedback from other developers. There are several advantages to having the staging area be in the main tree as opposed to a separate branch: 1. It will be easier for LLVM developers to become familiar with th...
2012 Sep 06
0
[LLVMdev] RFC: Staging area proposal for new backends
...the main LLVM tree, with building of the backend being disabled > by default. There will also be a TODO file in the backend's root > directory, that contains a list of improvements that are required to > promote the backend out of the staging area. The backend will be > assigned a steward who's role will be to guide the backend through > the staging process and help solicit feedback from other developers. > > There are several advantages to having the staging area be in the main > tree as opposed to a separate branch: > > 1. It will be easier for LLVM developer...
2012 Jul 27
0
[LLVMdev] RFC: Staging area proposal for new backends
...the main LLVM tree, with building of the backend being disabled > by default. There will also be a TODO file in the backend's root > directory, that contains a list of improvements that are required to > promote the backend out of the staging area. The backend will be > assigned a steward who's role will be to guide the backend through > the staging process and help solicit feedback from other developers. > > There are several advantages to having the staging area be in the main > tree as opposed to a separate branch: > > 1. It will be easier for LLVM develop...
2012 Sep 08
1
[LLVMdev] RFC: Staging area proposal for new backends
...ee, with building of the backend being disabled >> by default. There will also be a TODO file in the backend's root >> directory, that contains a list of improvements that are required to >> promote the backend out of the staging area. The backend will be >> assigned a steward who's role will be to guide the backend through >> the staging process and help solicit feedback from other developers. >> >> There are several advantages to having the staging area be in the main >> tree as opposed to a separate branch: >> >> 1. It will be e...
2012 Jul 27
2
[LLVMdev] RFC: Staging area proposal for new backends
...ee, with building of the backend being disabled >> by default. There will also be a TODO file in the backend's root >> directory, that contains a list of improvements that are required to >> promote the backend out of the staging area. The backend will be >> assigned a steward who's role will be to guide the backend through >> the staging process and help solicit feedback from other developers. >> >> There are several advantages to having the staging area be in the main >> tree as opposed to a separate branch: >> >> 1. It will be e...
2008 Jan 10
14
Keeping Camping going
Hello all, I''m not sure who Camping''s steward is at this point(zimbatm? _why?), but I haven''t seen much activity in quite some time. I really like Camping, and I understand open source projects can fall by the wayside. So, I''d be willing to take over maintenance and releasing. I have experience maintaining my own open source...
2012 Jul 27
0
[LLVMdev] RFC: Staging area proposal for new backends
...g of the backend being disabled > >>by default. There will also be a TODO file in the backend's root > >>directory, that contains a list of improvements that are required to > >>promote the backend out of the staging area. The backend will be > >>assigned a steward who's role will be to guide the backend through > >>the staging process and help solicit feedback from other developers. > >> > >>There are several advantages to having the staging area be in the main > >>tree as opposed to a separate branch: > >> &g...
2012 Jul 22
0
[LLVMdev] RFC: Staging area proposal for new backends
...the code looking for > backends that make use of the feature that they have added or > changed. This makes sense, but it should not be a *requirement* that API changes don't break experimental backends. This would be the responsibility of the contributors/owner of that backend and/or steward to make sure it keeps building. Of course it's great for someone to update all the experimental backends if they want, but it shouldn't be a requirement. > If the backend were staged in a separate tree, this kind of > simple review would not be possible, and I would be concerned t...
2017 Oct 21
2
Why dup(), again and again?
On Fri, 20 Oct 2017, David Newall wrote: > WHAT CAN I DO TO HELP STEWARD THIS CHANGE INTO THE MASTER SOURCE? > What do I need to do? Stop yelling and go file a bug at https://bugzilla.mindrot.org/ As I mentioned previously, your suggested change is wrong and we'd (at least) need to replace fd 1 with /dev/null prior to assigning it to the channel. -d
2008 Mar 18
2
Server to server communication
Hi all, I have 2 servers online and wish them to communicate and exchange information with each other at times. I have been developing a web application which is extremely CPU-intensive, and since I don't want to overload the main server which deals with the apache/php/mysql stuff, I got a separate server (a phenom) to deal with it. I prefer the communication to be secure, low latency,
2017 Oct 20
3
Why dup()?
...- err = dup(STDERR_FILENO); + out = STDOUT_FILENO; + err = STDERR_FILENO; - if (in < 0 || out < 0 || err < 0) - fatal("dup() in/out/err failed"); + if (in < 0) + fatal("dup() in failed"); /* enable nonblocking unless tty */ if (!isatty(in)) WHAT CAN I DO TO HELP STEWARD THIS CHANGE INTO THE MASTER SOURCE? What do I need to do? David
2012 Jul 23
2
[LLVMdev] RFC: Staging area proposal for new backends
...t; backends that make use of the feature that they have added or > > changed. > > This makes sense, but it should not be a *requirement* that API changes > don't break experimental backends. This would be the responsibility of the > contributors/owner of that backend and/or steward to make sure it keeps > building. Of course it's great for someone to update all the experimental > backends if they want, but it shouldn't be a requirement. > > > If the backend were staged in a separate tree, this kind of > > simple review would not be possible, an...
2013 Apr 29
2
Sharing data between nodes with hiera
I have this, I think common, situation: - NodeDB VM with MySQL - NodeApp VM with an application that uses the MySQL DB Obivuously both needs to have information on the DB (like user, DB name, etc.) Since DB will be created in the NodeDB by the MySQL module from puppetlabs and the app will just connect to the DB and do its work, but need to set the configuration parameters. Now ... since App
2012 Jul 23
0
[LLVMdev] RFC: Staging area proposal for new backends
...e of the feature that they have added or > > > changed. > > > > This makes sense, but it should not be a *requirement* that API changes > > don't break experimental backends. This would be the responsibility of the > > contributors/owner of that backend and/or steward to make sure it keeps > > building. Of course it's great for someone to update all the experimental > > backends if they want, but it shouldn't be a requirement. > > > > > If the backend were staged in a separate tree, this kind of > > > simple review...
2005 Sep 12
13
Skype purchased by Ebay 2.6 Billion
Good news for service providers in my opinion, Ebay will likely start alienating Skype users like they did with Paypal users. "SkypeSucks.com" domain already taken, shucks.... http://www.kesq.com/Global/story.asp?S=3837895 -- Cory J Andrews Partner / Purchasing +++++++++++++++ VOIPSupply.com - Everything you need for VOIP 454 Sonwil Drive Buffalo, NY 14225 +++++++++++++++ tf voice
1999 May 11
0
Printing fails above a certain size
...that the client closed, but still no data. Any ideas why this is happening? The samba spool is on /var and there is about 80MB free which should be more than enough since none of the printers are actually connected to this machine. Thanks in advance. --John Gruenenfelder Research Assistant, Steward Observatory, U of Arizona Elrond, Duke of URL http://www.azstarnet.com/~elrond elrond@azstarnet.com johng@bach.as.arizona.edu "This is the most fun I've had without being drenched in the blood of my enemies!" --Sam of Sam & Max
2014 Jan 08
1
Extract PDF portfolio
Hi, I am searching for a command line tool to extract files from a pdf portfolio? Are there any capabilities to do this? Thanks in advance! Kind regards, Nicole
2011 Nov 01
3
CrossOver license
Hey guys, I have a question about CrossOver and the LGPL license. I'm looking into licensing some software of my own and I'm not sure if I can. >From what I've read the LGPL license doesn't allow any product to be sold if it's based on LGPL protected software, unless it uses the software simply as a plug-in: > A program that contains no derivative of any portion of the
2009 Dec 28
2
What might be the security issues from installing R?
.... This could be further complicated by the need for downloading additional open-source packages. At present, I am not aware of any open source software that has passed through the approval process, though I am also not aware of any policy against open-source. Thanks! --- Eric Peterson, Ph.D. Data Steward Trinity River Restoration Program (contracted through SAIC) 530-623-1810 http://www.trrp.net http://www.saic.com [[alternative HTML version deleted]]