search for: cheney

Displaying 20 results from an estimated 55 matches for "cheney".

2004 Apr 17
1
accessing log likelihood of poison model
...pol.gls.w + pol.rel.w + rac.gls.w + rac.pol.w + rac.rac.w + rac.rac.w + rac.rel.w, family = poisson, data = Complex2.freq, offset = lnoffset) summary(freq.mod) anova(freq.mod) <END R STUFF> And that's great; but I need the log likelihood. Anyone know? Thanks in advance? -- <Eric Cheney> cheney at soc.umass.edu http://sociostat.org/eric/
2008 Jun 06
1
simple data question
if I wanted to use a name for a column with two words say Dick Cheney and George Bush can I put these in quotes "Dick Cheney" and "George Bush" to get them to read into R using both read.table and read.zoo to recognize this. thanks Stephen -- Let's not spend our time and resources thinking about things that are so little or so large that al...
2007 Dec 08
14
Small updates and release plan
Hello Guys, I''ll like to suggest a small release fix before we start doing big changes: platform fixes. Current we''re setting MSWIN32 (mswin32) as platform for Windows gem, but we should be using Gem::Platform::CURRENT instead (i386-mswin32 as current Ruby windows implementation). Also, the jruby/java platform need to be defined. That change will ease the compatibility path
2007 Oct 27
7
load balancers and mongrel
We have a load balancer sending requests to one of X boxes and one of N mongrel processes on that box. Since each mongrel processes is multi-threaded but it has a mutex around the section that calls rails, we end up with several requests queued up waiting when they could have gone to another box with a free process. For example, boxA, and boxB. boxA has mongrels 1 through 10 boxB has
2003 Jan 06
4
Help denying request attempts at TCP ports 113, 135, 137 and 139 as well as UDP ports 137-139''.
...s me not to edit the file but rather to create a new one. Can anyone give me an idea on how to do this so that the above ports deny request attempts. I guess this must be a fairly common question on the list, but a search yielded nothing at the mailing list archive. Thanks for any help. Mark Cheney.
2003 Jan 07
4
some ports not stealthed?
I''ve installed this fine software on my home network and am very pleased with the ease of installation and especially the documentation. My firewall box masq''s a private net via dialup modem. Configuration is almost exactly as described in the two-interface example. My question regards the result of a "internet test scan" that I found via google search...when I run
2001 Jan 27
4
ogg123 oss plugin plays garbage
I tried to use the current cvs version of ogg123 with oss output and the ogg just sounds like static. I wanted to document it on the list in case anyone else is having the problem. I can make ogg123 write wav files fine. Also Vakor does not have any trouble playing oggs with ogg123, so I am not certain what the problem is. I have tried compiling all of ogg vorbis (ao,ogg,vorbis,vorbis-tools)
2003 Jan 08
0
Shorewall and NIS, Why Reject...
...a new one. > > Can anyone give me an idea on how to do this so that the above ports > deny request attempts. > > I guess this must be a fairly common question on the list, but a search > yielded nothing at the mailing list archive. > > Thanks for any help. > > Mark Cheney. > ********************************************************************* > Reply from Vincent Bernat: > > You mean "drop" ? Depending of your policy, I think an empty file will > just do the trick. > *********************************************************************...
2017 Nov 15
0
vcut(1) and its manpage
...Ogg Vorbis audio file and splits it at the given cutpoint, which is a -sample number. If the cutpoint is prefixed with '+', the cutpoint is an -integer number of seconds. - -.SH AUTHORS - -.TP -Program Author: -Michael Smith <msmith at xiph.org> - -.TP -Manpage Author: -Christoper L Cheney <ccheney at debian.org> +.Dd November 15, 2017 +.Dt VCUT 1 +.Os +.Sh NAME +.Nm vcut +.Nd cuts Ogg Vorbis files +.Sh SYNOPSIS +.Nm vcut +.Ar infile.ogg +.Ar outfile1.ogg +.Ar outfile2.ogg +.Op + Ns +.Ar cutpoint +.Sh DESCRIPTION +.Nm +reads an Ogg Vorbis audio file and splits it at the given +...
2003 Jan 22
0
RE: samba digest, Vol 1 #2098 - 22 msgs
If you go to http://hpux.cs.utah.edu/hppd/hpux/Networking/Misc/samba-2.2.3a/ you can at least get the precompiled version of 2.2.3a for 10.20 if that will work for you. Otherwise roll your own. Thanks, Mike -----Original Message----- From: CHENEY,JOHN (HP-Australia,ex3) [mailto:john.cheney@hp.com] Sent: Wednesday, January 22, 2003 2:44 PM To: 'twilson@stl-inc.com' Cc: 'samba@lists.samba.org' Subject: [Samba] RE: samba digest, Vol 1 #2098 - 22 msgs Tim Looks like you got a binary compiled for HP-UX 11.x, as that version of...
2001 Aug 08
1
attention vorbis maintainers
If you are responsible for a tool or package for Vorbis, you need to email me offlist ASAP. This means: Chris Cheney Michael Smith Stan Seibert If I've forgotten anyone, you still need to email me :) jack. --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containi...
2002 Jul 25
0
HPUX 11.00 & CIFS/9000 Server - Domain authenticatio n problem
can you post your smb.conf you should set encryption to yes and put wins,dc server name in password server paratmeter -----Original Message----- From: Cheney, Richard [mailto:Richard.Cheney@infores.com] Sent: Thursday, July 25, 2002 11:32 AM To: samba@lists.samba.org Subject: [Samba] HPUX 11.00 & CIFS/9000 Server - Domain authentication problem Hi, I have been using Samba and CIFS/9000 happily with security=user for some time now, for simple rea...
2013 Aug 28
1
[LLVMdev] Casting and intrinsic function calls
Hello, I am attempting to use llvm casting and intrinsic functions to do basic operations on Value pointers. I have read the online documentation and relevant portions of the source code and wrote the following code to do a Float to Double cast and then a log operation- Value *castFP(Value *i, Type *ty) const { return b->CreateFPCast(i, ty, n); } \\b is an IRBuilder and TheModule is an
2009 Dec 04
1
[LLVMdev] LLVM's GC support
...If you'd rather have me send to llvm-dev, please say so. You'll reach a wider audience with the list, though I haven't been able to keep up with it lately. > I'm trying to get a very simple copying collector to work with LLVM, basically your standard semi-space collector with Cheney scan, using the included shadow stack support to track roots. I'm writing everything in C, using llvm-gcc's gcroot attribute in a test app to mark GC roots where appropriate, which seems to work fine when translating to LLVM IR (and finally an executable). Be forewarned that this attribute...
2003 Oct 01
0
Ogg Traffic for September 30, 2003
...30, 2003 Author: Carsten "Purple" Haese Contact: [1]carsten@xiph.org Date: September 30, 2003 Table of Contents 1 Status Updates 1.1 Monty 1.2 Jean-Marc Valin 1.3 Stan Seibert 1.4 Brendan Cully 1.5 Chris Cheney 1.6 Timothy Terriberry 1.7 Ralph Giles 1.8 Jack Moffitt 1.9 Andrew Chatham 1.10 Manuel Lora 2 Recent Developments 2.1 A Technical Introduction to Vorbis 2.2 Speex Releases 2.3 Xiph.org IRC is m...
2005 Oct 07
1
[SPAM] Re: What Windows apps stand in the way of switc hing to Linuxat your shop?
...tems Engineer / 2CE2244 Software Distribution Team / Network / SOD / GEICO HQ Chevy Chase, MD. 20815 301-718-5260 Tie line 8-325-5260 ========================================= -----Original Message----- From: wine-users-bounces@winehq.org [mailto:wine-users-bounces@winehq.org] On Behalf Of Ken Cheney Sent: Friday, October 07, 2005 12:48 PM To: wine-users@winehq.org Subject: RE: [SPAM] [Wine] Re: What Windows apps stand in the way of switching to Linuxat your shop? I am using a software called Calyx Point. Runs on .NET... so .NET would be key. -----Original Message----- From: wine-users-bounc...
2003 Jun 03
1
Ogg Traffic for June 3, 2003
...Mike Smith 1.6 Brendan Cully 1.7 Mauricio Piacentini 1.8 Ralph Giles 1.9 Dan Miller 1.10 Timothy Terriberry 1.11 Andrew Chatham 1.12 Manuel Lora 1.13 Jack Moffitt 1.14 Chris Cheney 2 Recent Developments 2.1 Ogg is officially official 2.2 Positron goes Beta [2]Previous Issues of Ogg Traffic 1 Status Updates 1.1 Monty After finishing the lowmem-branch changes to Theora, Monty proceeded to implement the code on the Neuros. Th...
2003 Nov 20
0
Ogg Traffic / Release Announcements
...sten "Purple" Haese Contact: [1]carsten@xiph.org Date: November 19, 2003 Table of Contents 1 Status Updates 1.1 Monty 1.2 Jean-Marc Valin 1.3 Stan Seibert 1.4 Manuel Lora 1.5 Warren Dukes 1.6 Chris Cheney 1.7 Ed Zaleski 1.8 Brendan Cully 1.9 Karl Heyes 1.10 Ralph Giles 1.11 Timothy Terriberry 1.12 Arc Riley 2 News and Recent Developments 2.1 New Mailing List for Announcements 2.2 Xiph.org at SCALE...
2006 Feb 16
2
looping through tasks
...s "What's on your IPOD?" or "Who's your person of the year?" www.FosterFAQ.blogspot.com www.personal.psu.edu/emf10 "What do you mean, this jacket makes me look like John Kerry on a pheasant hunt. I'll fill your ass with bird shot, you old coot." -- Dick Cheney, just before shooting his homie. "But the one thing we can all agree, all faiths and ideologies, is that God is with the vulnerable and poor. God is in the slums, in the cardboard boxes where the poor play house? God is in the silence of a mother who has infected her child with a virus that...
2007 Oct 24
28
random cpu spikes, EBADF errors
In May I had problem with mongrels suddenly consuming huge cpu resources for a minute or two and then returning to normal (load average spikes up to 3.8and then back down to a regular 0.2 over the course of 5 minutes, then again 1/2 hour later. or 4 hours later, no predictable rhythm). I posted to Litespeed forums because I thought the problem was there but didn''t get far. And a week