search for: opposed

Displaying 20 results from an estimated 5083 matches for "opposed".

2005 May 06
1
Routing by interface as opposed to ip address?
Hello all, Does anyone know of a methodology to build a route based on the inbound and outbound interfaces as opposed to ip addresses? We are essentially trying to forward packets from one interface to another without looking at the ip address. Bridging (brctl, br2684ctl) will not work in this case as the interfaces use different layer 2 encapsulation (e.g., atm0<=>eth0, or ppp0<=>eth0). We could buil...
2006 Jan 19
1
Rationale behind render opposed to render_action
Guys, What was the rationale behind moving to the swiss army-ish method of render(:X), as opposed to the various render_X methods that existed before? I find it easier to keep the render_X style in my brain, rather than trying to remember what the valid parameters to render() are. It''s also more code completion friendly. Just curious. Thanks, John -- Posted via http://www.ruby-...
2019 Nov 01
2
Is it possible to record 2-4 party call audio in stereo quality as opposed to mono?
We have a customer who wants us to record anywhere from 2-4 participants on a call in stereo (as opposed to mono) quality audio. Some background.. We are using asterisk 16.6.1 We are also currently using AMI/AsyncAGI and ConfBridge to bring the parties together. I believe recording in the various file formats (based on extension), it's always recording in mono quality. My one thought is to tran...
2011 May 02
1
Retrieving sound files from DB as opposed to filesystem
Hello All, Probably a silly question, but we're wondering if people have had any experience and have data to demonstrate if the performance of the Asterisk system might suffer in terms of latency etc. if we're to have it retrieve sound files from a database using odbc as opposed to storing them locally on the filesystem. Note, these are not prompts...these are sound files that are being created through a web-app and being stored in the DB as BLOB or similar datatype that's good/efficient to store audio/video files in a DB. We need these be made available through the as...
2012 Oct 25
6
[LLVMdev] Poll: LLVM test-suite project usage
...est-suite repository, and in what ways. I am talking specifically about the "test-suite" SVN project, e.g.: http://llvm.org/svn/llvm-project/test-suite/trunk/ not about the "test (no-dash) suite" that is part of LLVM. If you are using the LLVM test-suite project directly (as opposed to via LNT), I'd appreciate it if you could reply to me personally with the following information: 1. What facilities of the project do you use: [ ] User defined test functionality [ ] Ability to execute two compilers (baseline, modified) [ ] Ability to use Makefile's to modify and rerun s...
2019 Dec 30
2
RFC: Refactor SubclassData
...ingle static_assert for the size of the union in Stmt [1] and the same could be done for the union in DeclBase. > * *[_|_|X] runtime assert* - that a new value set, fits into the the bitfield (without truncation). This is true, I agree here that this is useful. > * *[_|_|X] typed* - as opposed to using a representative type (like `int`) and then cast to the actual required type (like `bool` or `enum`). Typed (ordinary) bitfields cannot be implemented correctly in MSVC, as the types of all the bitfields must be of the same type. Using typed bitfields also saves us the need to synchronize...
2009 Sep 11
3
redhat spacewalk
Anyone here use spacewalk as opposed other foss apps to accomplish the same thing? Any opinions? Thanks, jlc
2001 Mar 10
0
Opposing Force
I have installed Half-Life and updated it with the latest patch (1.1.0.4). It runs fine. I installed Opposing Force and updated it with the latest patch (1.1.0.4) and can 'activiate' it from the Half-Life 'Custom' menu, but as soon as I try to customise it or play it, it gives an error and crashes :-( Am I doing something wrong? -- .
2010 Jan 28
1
Recoding Variables in R
VAR 980490 Some people have suggested placing new limits on foreign imports in order to protect American jobs. Others say that such limits would raise consumer prices and hurt American exports. Do you FAVOR or OPPOSE placing new limits on imports, or haven't you thought much about this? 1. Favor 5. Oppose 8. DK 9. NA; RF 0. Haven't thought much about this I am trying to
2001 Nov 06
1
ext3/kjournald overhead
Hi, I've recently installed ext3 on an 800MB RAID5 (software) array. I am running RedHat Linux 7.1 with the Linux kernel 2.4.12-ac3 on a 1GHz Pentium system with 128MB RAM. I am seeing a significant amount of write operation slowdown when running ext3 (and kjournald), as opposed to my old ext2. The problem seems to be associated with the times that kjournald is accessing the disk. At those moments, my CPU utilization peaks, and network transfer is nearly halted until kjournald is finished. I read in an archive of a Linux Symposium on 20 July, 2000 by Dr. Stephen Tweedi...
2017 Apr 09
22
OT: systemd Poll
According to "Arthur Schopenhauer": "All truth passes through three stages. First, it is ridiculed. Second, it is violently opposed. Third, it is accepted as being self-evident." I must admit that I skipped through the first and second stages - I never found creating init scripts a joy and instead opted to write my own scripts that I launched via inittab. As such, I welcomed the simplicity systemd's service f...
2004 May 28
9
* as pri_net?
If you have used * to support a pri as pri_net (as opposed to pri_cpe), either to talk to another * system or a PBX of some sort, I would be very interested in hearing about your experiences. Imparticular, I would like to know that it works before I invest in the extra hardware. TIA Bruce Komito High Sierra Networks, Inc. www.servers-r-us.com (775) 284-...
2006 Mar 23
3
Newbie: ''find'' across multiple relationships
For security purposes, I often want to find objects that are ''visible''. e.g. class Person < ActiveRecord::Base has_many :x end ... @person.x.find(params[:id]) as opposed to X.find([params[:id]). Simple enough for me. My question: Say we have - class Person < ActiveRecord::Base has_many :x, :class_name ''Z'', .... has_many :y, :class_name ''Z'', ... end In other words, two different associations for the same type of model....
2010 Jun 10
4
[LLVMdev] Win32 COFF Support
On Wed, Jun 9, 2010 at 11:11 PM, Nathan Jeffords <blunted2night at gmail.com> wrote: > This is cool, I was looking into something like this, but hit a little bit > of a wall, and then got sidetracked on another project. I was going to use > llc to generate COFF object files as opposed to clang. Seems to me llc would > give better control over what was generated and would also not require clang > to be in the tree. > Is there any documentation on how to run these tests from windows? I just tried to actually run the tests in llvm/test (as opposed to llvm/tools/clang/test...
2019 Dec 27
2
RFC: Refactor SubclassData
Ehud, can you elaborate on which classes you're trying to change. I know some of the classes already use methods like getSubclassDataFromInstruction() to hide bits from the subclasses. They could probably shift the data too. ~Craig On Fri, Dec 27, 2019 at 9:35 AM Bruno Ricci via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi, > > On 26/12/2019 20:53, Ehud Katz via
2008 Jun 20
2
The Green Book and its relevance to R
I bogged down about half way through reading the Green Book, in part because it became increasingly difficult to understand how some of the ideas related to R, as opposed to S (which I have not used). Does any reader know whether there is a document that points out differences between S and R that would be helpful in reading the Green Book? Ideally, perhaps, I need a "crib sheet" to help relate "Programming with data" to R, as opposed to S. And...
2010 Aug 10
1
Identifying integers (as opposed to real #s) in matrix
Is there a way to identify (for subsequent replacement) which rows in a matrix are comprised entirely of *integers*? I have a large set of *nx3 *matrices where each row either consists of a set of 3 integers or a set of 3 real numbers. A given matrix might looks something like this: [ ,1] [ ,2] [ ,3] [1, ] 121.0000 -98.0000 276.0000 [2,
2003 Jul 10
1
Why mp3 (licensing issues) as opposed to Open Source OGG
Just wondering. http://www.vorbis.com/ Regards...martin -- Maslow's Maxim: If the only tool you have is a hammer, you treat everything like a nail.
2007 Dec 20
1
indexing tuples (example: "frog" => 123) as opposed to words
Hi, I need to map words in a document back to there original word id''s in my database. For example, if I had the sentence "I eat food" and I was searching for "food" I would obviously get the document back as a result. For my particular problem I need to not only get the document id but also the id of the match. Suppose my original sentence was actually
2017 Apr 10
4
OT: systemd Poll
...d appeared in RHEL. > > Having consistent device names is helpful when you've got more than > one NIC and you don't want to rely on the order in which the network > driver is loaded to define the interface name. In what universe are those "consistant" device names, as opposed to eth[0...]? And how could it help automated scripts that you can run on *any* system you're administering? mark