search for: whoa

Displaying 20 results from an estimated 158 matches for "whoa".

Did you mean: who
2005 Jul 18
1
Re: CentOS on Compaq Proliant Rackmount Servers -- whoa!
...gt; Compaqs are strong hardware they are old and frankly the performance > compared to modern (cheap or otherwise) hardware is not really that > impressive. A dual 1 gig P3 dl380 and ultra 3 scsi drives get significantly > out performed by a generic celeron with software raid SATA drives. Whoa! Who said U160 SCSI was faster than SATA? That's a common farce! In fact, it's the whole reason why SAS (Serial Attached SCSI) is coming about. SAS can even use SATA drives. I don't think that's is a good comparison at all. You're changing too many variables. Especially wh...
2006 Jun 05
0
Plugin Namespace Oddities?
...my log, the self.class.to_s is Datatype, which should load the Datatype class. IRB shows this: irb(main):001:0> class Foo irb(main):002:1> def hello irb(main):003:2> puts ''hello irb(main):004:2'' '' irb(main):005:2> end irb(main):006:1> def self.whoa irb(main):007:2> puts ''whoa'' irb(main):008:2> end irb(main):009:1> end => nil irb(main):010:0> a = Foo.new => #<Foo:0x402d862c> irb(main):011:0> a.send :hello hello => nil irb(main):012:0> a.send :whoa NoMethodError: undefined...
2004 Sep 25
1
Whoa.... I'm owned but found ??
I get this message at CLI. what does it mean? - shabanip -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040925/dbcd8d80/attachment.htm
2013 Nov 11
0
[LLVMdev] [cfe-dev] Goal for 3.5: Library-friendly headers
...ty/ > > The bulk edits are split out and noted. They were refactored with an internal tool, so it's not a big hassle to keep this up to date until 3.4 is out the door. > > A handful of fixes were needed to add support for Release+Assert builds and these are also separate commits. Whoa whoa whoa. Why are you introducing an llvm_assert() macro? The use of assert in header files is not a problem for "libraries", it is things like: #ifndef NDEBUG int SomeNewVariable; #endif in a class. -Chris -------------- next part -------------- An HTML attachment was scrubbed.....
2004 Aug 06
2
yp dir listing
...:40PM +0100, Karl Heyes wrote: > > > > Any ideas if this is a problem with my xml config in ices or a limitation > > of the program/server? > > Do you have the <yp>1</yp> tags in the instances you want listed? The > default is not to have them listed. > whoa whoa whoa, since when? We've been having a major problem with our icecast servers, some streams are being sent to the YP servers and others are not, and yes the public bit is set as confirmed by connecting to the streams directly and looking at the headers they send. -------------- next part...
2007 Feb 23
0
[OT] Whoa! Did Justin Palmer and Rick Olson Just Start a Company?
For a second I thought Active Reload was an exciting new Rails core framework. Just want to be the first to congratulate Rick and Justin on their new journey. A lot of us benefit from your code each and every day! http://activereload.net/2007/2/13/a-new-company-is-born http://digg.com/tech_news/Rails_Superstars_Rick_Olson_and_Justin_Palmer_Start_a_New_Company Sam
2013 Nov 11
2
[LLVMdev] [cfe-dev] Goal for 3.5: Library-friendly headers
On 11/11/2013 07:37, NAKAMURA Takumi wrote: > 2013/11/10 Alp Toker <alp at nuanti.com>: >> #ifndef NDEBUG >> >> This is the biggest violation. NDEBUG should only ever be used in source >> files. That way if something is crashing we can swap in a debug build >> without rebuilding every single dependent application. Win! > I wish; > > - NDEBUG may
2013 Nov 11
3
[LLVMdev] [cfe-dev] Goal for 3.5: Library-friendly headers
...and noted. They were refactored with an >> internal tool, so it's not a big hassle to keep this up to date until >> 3.4 is out the door. >> >> A handful of fixes were needed to add support for Release+Assert >> builds and these are also separate commits. > > Whoa whoa whoa. Why are you introducing an llvm_assert() macro? The > use of assert in header files is not a problem for "libraries", it is > things like: > > #ifndef NDEBUG > int SomeNewVariable; > #endif They're both are a problem. assert() is defined deep down in...
2004 Aug 06
0
yp dir listing
...> > > Any ideas if this is a problem with my xml config in ices or a limitation > > > of the program/server? > > > > Do you have the <yp>1</yp> tags in the instances you want listed? The > > default is not to have them listed. > > > > whoa whoa whoa, since when? ices2 never used to enable it, the yp tags now do, they were added around Jun/July time > We've been having a major problem with our icecast servers, some streams > are being sent to the YP servers and others are not, and yes the public > bit is set as confirme...
2013 Nov 11
0
[LLVMdev] [cfe-dev] Goal for 3.5: Library-friendly headers
...re refactored with an >>> internal tool, so it's not a big hassle to keep this up to date until >>> 3.4 is out the door. >>> >>> A handful of fixes were needed to add support for Release+Assert >>> builds and these are also separate commits. >> Whoa whoa whoa. Why are you introducing an llvm_assert() macro? The >> use of assert in header files is not a problem for "libraries", it is >> things like: >> >> #ifndef NDEBUG >> int SomeNewVariable; >> #endif > They're both are a problem. asser...
2006 Jul 13
5
Generic page element display initializer in a layout?
All, I''ve run into a snag. I need to handle the display of elements on my page and I want to use my Javascript event handlers on page load. However, my BODY tag is trapped in my generic layout. I''m thinking that I can put an onLoad on the BODY tag that will just call a Javascript method called initializePage() and then provide this initializePage() call in my specific page
2009 Jan 29
2
GTalk Channel
...bind error: Cannot assign requested address [Jan 29 10:37:51] WARNING[1303]: chan_gtalk.c:971 gtalk_alloc: Out of RTP sessions? [Jan 29 10:37:51] WARNING[1303]: chan_gtalk.c:1175 gtalk_newcall: Unable to allocate gtalk structure! [Jan 29 10:38:06] NOTICE[1303]: chan_gtalk.c:783 gtalk_hangup_farend: Whoa, didn't find call! Any idea? Thank you in advance. Regards, GNUbie
2017 Jan 26
2
Undefined behavior of head() and tail() with n = 0
...> > > Both GNU command-line utilities head and tail behave differently with +0 and -0: > > http://man7.org/linux/man-pages/man1/head.1.html > > http://man7.org/linux/man-pages/man1/tail.1.html > > > Since R supports signed zeros (1/+0 != 1/-0) > > whoa, whoa, .. slow down -- The above is misleading! > > Rather read in ?Arithmetic (*the* reference to consult for such issues), > where the 2nd part of the following section > > || Implementation limits: > || > || [..............] > || > || Another potential...
2003 Aug 03
5
yp dir listing
I've recently switched from Oddcast to ices2 under Linux, as my pro sound card unfortunately didn't work well under windows. Is there a problem with ices2 updating the yp dir, as my stream is not listing anymore - it seems that for some reason ices2 doesn't have the metadata code to list like oddcast does? Any ideas if this is a problem with my xml config in ices or a limitation of
2006 Jul 13
7
system unresponsive after issuing a zpool attach
Today I attempted to upgrade to S10_U2 and migrate some mirrored UFS SVM partitions to ZFS. I used Live Upgrade to migrate from U1 to U2 and that went without a hitch on my SunBlade 2000. And the initial conversion of one side of the UFS mirrors to a ZFS pool and subsequent data migration went fine. However, when I attempted to attach the second side mirrors as a mirror of the ZFS pool, all
2005 Sep 06
1
TDM 400p
Hi all, I have a Digium TDM 400P at several locations. Once and again I'll need to restart the drivers because there is no ringing. Does anyone know a fix for this problem? Greatings Johan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050906/66d9f13a/attachment.htm
2002 Aug 13
1
Migrating NT files (with users/groups) to Linux Samba with ACL kernel patch.
Whoa. Long subject - still, it basically says it all: I have an NT PDC and an NT fileserver. I've also got a Linux box compiled with the ACL patches from acl.bestbits.at and I've got Samba 2.2.5 (--with-acl-support) configured to be a PDC on that box. I've put all my machines and users i...
2018 Feb 21
4
Is there socksify script for dynamics forwardings to unix domain sockets?
...aminsky: > Date: Tue, 20 Feb 2018 23:13:16 -0800 > From: Dan Kaminsky <dan at doxpara.com> > To: J? Fahlke <jorrit at jorrit.de> > Cc: openssh-unix-dev at mindrot.org > Subject: Re: Is there socksify script for dynamics forwardings to unix > domain sockets? > > Whoa. That's pretty cool. > > Empirically, how well do LD_PRELOAD scripts work in grabbing all socket > calls? Good point, I did not check that before, so I tried now (with tsocks on Debian stretch and the "ssh -D" socks port on a random port on localhost) and got mixed results...
2008 May 22
1
Re: Need help with rsync. [solved]
..., 21 May 2008 10:22:19 -0700, MHR <mhullrich at gmail.com> wrote: >> On Wed, May 21, 2008 at 8:37 AM, James B. Byrne <byrnejb at harte-lyne.ca> >> wrote: >> >> This indeed turned out to be an SELinux policy problem which I have since >> resolved. > > Whoa, whoa, whoa, nice shooting, Tex! (Ghostbusters) > > Not so fast - please post the solution, too, for posterity (and those > of us who don't use SELinux but might, someday, in the not too distant > far future...). > > Thanks. > > mhr Dealings with SELinux issues typical...
2005 Jun 09
2
Sixtel is still alive?
Whoa, talk about flying under the radar. I got a few DIDs *months* ago from Sixtel (or iax.cc). Initial respone was great, but then it seemed that the only tech-support person had fled the country. No responses, bad responses, poor call-quality. I had a few $s left in the balance and kind-a just for...