search for: _want_

Displaying 20 results from an estimated 39 matches for "_want_".

2003 Aug 13
2
What does m$... mean?
...m$"..." <- e? That's what it seems to do when I try it on some small data frames, but is that ALL there is to it, or is there some special magic going on? Is there any connection with the use of ... in formal and actual parameter lists, or is it just accidental? Why would anyone _want_ to use $... ?
2000 Sep 29
1
ao/
...39;t work, even though I added the EXTRA_libao_la_SOURCES files. Somebody who knows more please point out the error(s) in my ways. * src/*.c (not quite yet...) -- #include "audio_out.h" is now #include <ao/ao.h> Kenneth (_finally_ finding a spare moment to work on something I _want_ to work on) --- >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' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscr...
2006 Jul 12
6
Copying Records
This might seem like a silly quesiton but it''s been baffling me all day! I want to copy all records matching certain criteria from table A to table B. I know how to do his with SQL but not with RoR. -- Posted via http://www.ruby-forum.com/.
2001 Sep 28
3
OpenSSH (portable) and entropy gathering
...want to deprecate the built in entropy > collection in favor of the use of a daemon or subprocess. I can understand that desire, and I don't mean to be argumentative, but I'm looking at it from the standpoint of a sysadmin. Right now, my systems use the internal entropy gathering. I _want_ to move to PRNGD. However, I don't want my systems to stop working entirely if PRNGD isn't running or if its socket gets clobbered. For instance, I need the ability to run ssh *clients* from the console in single-user mode, before PRNGD has started up. By not having an option to fall back...
2016 Nov 08
2
[PATCH] drm/nouveau: fix LEDS_CLASS=m configuration
On Tuesday, November 8, 2016 5:07:01 PM CET Lukas Wunner wrote: > On Tue, Nov 08, 2016 at 04:52:49PM +0100, Arnd Bergmann wrote: > > The underlying problem is that we already have a number of other > > symbols that either have "depends on LEDS_CLASS" or > > "select LEDS_CLASS". To clean that up properly, we should either > > make the symbol itself
2020 Jan 09
2
[cfe-dev] Calling function from non-default floating-point environment
...ve these issues when > opting in to non-default FP behavior. > > And I say this from a company that always runs with traps enabled and > therefore has to deal with these FP issues. Sometimes we work around > traps in third party, default FP environment software. Sometimes we > _want_ that trap from default FP environment software because it > indicates a bug somewhere. We have to examine these cases individually > and determine what we need. It’s not the compiler’s job to protect > us from ourselves. > > Can we get a language lawyer to settle this once and for...
2009 Oct 10
2
[R-SIG-Mac] rnorm.halton
...6301 0.2685760 >> [9] 1.5767800 1.0864515 >> > rnorm(10) >> [1] -0.60400852 -0.06611533 1.00787048 1.48289305 0.54658888 >> -0.67630052 0.52664127 -0.36449997 >> [9] 0.88039397 0.56929333 >> >> I cannot imagine a situation where one would _want_ the output to be >> the same on repeated calls unless one reset a seed. Unless perhaps I >> am not understanding the meaning of "random" in the financial domain? >> >> -- >> David >> >>> Currently, Halton works fine when used to just get the...
2015 Dec 10
0
Fedora change announcements [was Re: wifi on servers and fedora [was Re: 7.2 kernel panic on boot]]
On Thu, Dec 10, 2015 at 04:56:34PM -0500, m.roth at 5-cent.us wrote: > Why not what was suggested, a summary every month or three? How about > sending announcements? Do people _want_ accepted Fedora change announcements posted to this list? That's pretty easy to arrange if it really helps. I don't see a big benefit over just following the annoucement list where they're posted (filtering out other topics if you want), but if people would really find that helpful, we...
2006 Jun 12
0
Good explanation somewhere of SIP security?
...quot;peer", to me this reads like "friend" is also obsolete and should never be used. You'd never want to use something that defines both a current, valid thingy ("user") and an obsolete POS ("user"), right? > The only benefit of type=user is when you _want_ to match on username > regardless of IP the calls originate from. If the peer is registering to > you, you don't need it. If they are on a fixed IP, you don't need it. > 'type=peer' is _never_ matched on username for incoming calls, only > matched on IP address/port...
2009 Aug 08
2
trying to get RegAlyzer working
RegAlyzer is in the AppDB but I can not get it to see the registry of another hard drive. I can browse to it, but I get an Access Denied error. I have read about issues running Wine as root, is there any other way? I eventually want to replace BartPE with an Ubuntu LiveCD, but I must be able to remove registry entries.
2012 Sep 05
1
How to effectively remove Outliers from a binary logistic regression in R
Hallo there, greetings from Germany. I have a simple question for you. I have run a binary logistic model, but there are lots of outliers distorting the real results. I have tried to get rid of the outliers using the following commands: remove = -c(56, 303, 365, 391, 512, 746, 859, 940, 1037, 1042, 1138, 1355) MIGRATION.rebuild <- glm(MIGRATION, subset=remove)
2005 May 19
0
[LLVMdev] Binary linux packages v1.5
Oleg Smolsky wrote: > Hey all, > > is anyone gonna make a debian package for stable or testing? It's just > that building llvm/cfrontend drives me crazy :) We don't have Debian packages for LLVM 1.5, but we do have a pre-compiled GCC frontend for i386/Linux. Does that not work on Debian? > > Best regards, > Oleg. > >
2016 Nov 08
0
[PATCH] drm/nouveau: fix LEDS_CLASS=m configuration
...ide is that now the nouveau_led_init() just won't be called > if CONFIG_LEDS_CLASS=m and CONFIG_DRM_NOUVEAU=y, which can be > surprising to users. yeah, it will. I guess it is fine to force LEDS to y if nouveau is set to y. The thinks I absolutely dislike is: 1. auto hiding of features I _want_ to have, because I would have to enable the dependencies first, which is like super annoying if there are somewhere else 2. preventing me from enabling something, cause the dependency is missing. We should clarify first if we actually want to enable those features optionally, because there isn'...
2006 Jun 21
26
Implementing a boolean "switch" in a Class
I need a single boolean which would be "globally" accessible to all instances of a class. Seems like the boolean should be in the class prototype, but I was troubled by the difficulty of setting the prototype boolean to true. Maybe I''m missing something? var MyObject = Class.create(); MyObject.prototype = { bSwitch: false, ... other methods and properties } var oMyOb1
2005 May 19
2
[LLVMdev] Binary linux packages v1.5
Hey all, is anyone gonna make a debian package for stable or testing? It's just that building llvm/cfrontend drives me crazy :) Best regards, Oleg.
2011 Jun 04
1
S4 class, passing argument names to function, modify original
Hello, an S4 class "Foo" is defined with a setter, $. For several reasons, the setter calls a function, .foo.update(). However, bypassing the argument names of the setter does not work. Question 1: Why not and how can I fix this? Question 2: What is the way to define either the function or the setter to modify the original object (not returning the modified copy of it an overwrite the
2005 May 19
1
[LLVMdev] Binary linux packages v1.5
...of packages from the CVS HEAD (sort of like the gcc-snapshot packages)? Sorry about the delay -- I've been traveling a lot the last few weeks and it's hard to work on stuff when the only time you have is between flights at the airport :). The stupid airlines _never_ delay flights when you _want_ them to... > > > > Best regards, > > Oleg. > > > > _______________________________________________ > > LLVM Developers mailing list > > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > > http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev >...
2000 Dec 17
1
bomb out on unknown rootflags?
Doing some debugging of my kernel build with ext3 and noticed something interesting. At the bottom of the rootflags options processing loop there is a return failure if there was an option that ext3 did not know about. Should this be the behaviour? Would it not be better to ignore options not recognized? Surely, some day, some other filesystem is going to want to use rootflags to have one of
2002 Feb 13
1
Need help with seeing samba server in Win98
Our office is trying to set up a samba server. But, we are having some difficulty with the installation. We have tried numerous things to no avail. I think we are getting closer to a solution, but I am unsure of where to go beyond this point. Our configuration is: Red Hat 7.2 IP address: 192.168.1.6 Samba Server: 2.2.1a Samba Server Name: SAMBASERVER Workgroup Name: ABOGEXAM etc/hosts file
2010 Nov 15
2
Problem When Using Polycom with 2 Lines
Hi, Has anyone had a problem setting up two registrations (on the same Asterisk server) on one Polycom phone? When the user tries to make a call on the 2nd line, it works fine. But when they try the first line, the CLI says:- Using INVITE request as basis request - 9f5fe9a5-215d0f3a-b2fbe6b7 at 192.168.1.138 Found peer client _202' <--- Which is incorrect, it should be client_201. And