search for: preselected

Displaying 20 results from an estimated 68 matches for "preselected".

2002 Sep 30
2
[LLVMdev] PreSelection
Hello, My llvm tree doesn't compile; it exits after an error saying: /bin/sh: PreSelection: does not exist while in the lib/CodeGen directory. How can this error be overcome?
2006 Jun 05
0
Heads up: OpenBSM 1.0a6, per-auditpipe preselection imported to CVS (fwd)
FYI for those working with audit and intrusion detection on FreeBSD. Robert N M Watson ---------- Forwarded message ---------- Date: Mon, 5 Jun 2006 17:01:04 +0100 (BST) From: Robert Watson <rwatson@FreeBSD.org> To: current@FreeBSD.org Cc: trustedbsd-audit@TrustedBSD.org Subject: Heads up: OpenBSM 1.0a6, per-auditpipe preselection imported to CVS This is a heads up to current@ users
2002 Oct 27
0
[LLVMdev] Compile error in PreSelection.cpp
PreSelection.cpp uses the form "++(ConstantExpr*)->op_begin()" in a couple of places: gcc2 considers this to be an illegal use of a constant reference (the temporary iterator) as an lvalue. Fix is to use "(ConstantExpr*)->op_begin() + 1" instead. -- Casey Carter Casey at Carter.net ccarter at uiuc.edu AIM: cartec69 -------------- next part -------------- An
2005 Feb 22
4
[LLVMdev] Area for improvement
On Mon, 21 Feb 2005, Jeff Cohen wrote: > I figured getelementptr exists as it does to facilitate data flow analysis, > but it does need to be broken down before instruction selection. It's not > just the missed optimization opportunities. It also introduces a huge amount > of complexity into instruction selection as they deal with its complexity. > It would also take care
2005 Feb 22
0
[LLVMdev] Area for improvement
> The second issue is that we need to do redundancy elimination and > hoisting on operations that are only exposed once instruction > selection is performed. Getelementptr expansion is just ONE > particular case of this, but it can happen with any instructions > (including the use of large integer (or any FP) constants on RISC > machines, addressing globals with PIC code,
2007 Apr 26
2
XVideo vs OpenGL
Hi, I have a Pentium III PC with NVIDIA GeForce 7300GT on an AGP 8x and am running NVIDIA driver 9755 on CentOS 5.0 x86. What is the most efficient playback method for the various players, XVideo or OpenGL? RealPlayer has a "Use XVideo" tick box under the "Hardware" tab preselected, while MPlayer uses xv - X11/Xv, gl - X11(OpenGL) and other Video drivers. What is the most efficient between the two, given the configuration?
2009 Jun 08
2
Building a custom install CD
Greetings, I am looking for resources on how to build my own Centos install CD for a preselected package set that I want to install. I think Red Hat may have had this functionality at some point but it has been a while since I have needed to do this. I found this on how to build my own kernel - http://wiki.centos.org/HowTos/BuildingKernelModules - which I will need to exercise as well, but...
2019 Jul 18
2
ubuntu equivalent of ctrl-a on windows
Hi All: I'm using an old version of Ubuntu, 14.04, and I can't figure out a keyboard sequence that "selects all" analogously to what ctrl-a does on windows ? If anyone can be bothered running below and see if they have a way to select all four fruits at once, it's appreciated. I've spent quite a bit of time searching the net, going on AskUbuntu etc but no luck. Thanks.
2002 Sep 28
2
[LLVMdev] Directory and library rename:
By request, I've renamed lib/CodeGen/PreSelection to lib/CodeGen/PreOpts (admittedly this was my choice :-), and the corresponding archive from preselect to preopt. If you see linker errors saying preselect.o is not found, this is the reason. This shouldn't happen if you update your entire tree at once. --Vikram
2011 Jun 06
2
qplot fill and colour not working as expected
...ruck", "truck", "truck", "truck", "van", "van") qplot(z, main="Bar Graph Test", ylab="Vehichle Count", xlab="Vehicle Category", fill="blue") If I set fill=z, then I can get something different, i.e. three preselected colors are used, but what if I want all three bars to just be blue instead of the default? I am having the same issue if I try to use colour. How do I change the default color to blue instead of black. Second question what exactly is the difference between colour and fill? -- View this messag...
2007 May 03
7
How to create a drop-down list with Markaby?
Hi I couldn''t figure out, how to create a drop-down list with Markaby. How would I create something like this: <select name="character"> <option value="marvin">Marvin the paranoid Android</option> <option value="arthur">Arthur Dent</option> <option value="zaphod">Zaphod
2006 Aug 16
1
Warning: MFC of security event audit support RELENG_6 in the next 2-3 weeks
Dear 6-STABLE users, In the next 2-3 weeks, I plan to MFC support for CAPP security eventing auditing from 7-CURRENT to 6-STABLE. The implementation has been running quite nicely in -CURRENT for several months. Right now, I'm just waiting on a confirmation from Sun regarding formal allocation of a BSM header version number so as to avoid accidental version number conflicts in the
2006 Aug 16
1
Warning: MFC of security event audit support RELENG_6 in the next 2-3 weeks
Dear 6-STABLE users, In the next 2-3 weeks, I plan to MFC support for CAPP security eventing auditing from 7-CURRENT to 6-STABLE. The implementation has been running quite nicely in -CURRENT for several months. Right now, I'm just waiting on a confirmation from Sun regarding formal allocation of a BSM header version number so as to avoid accidental version number conflicts in the
2005 Feb 22
1
[LLVMdev] Area for improvement
On Feb 22, 2005, at 9:09 AM, Vikram S. Adve wrote: >> The only way to make preselection or lowermultidimrefs work is to >> duplication all of the knowledge of how the instruction selector will >> select the code (e.g. the advice about allowing constant indices to >> be grouped together). > > This is why you need a separate, low-level optimization framework - >
2019 Jul 18
2
ubuntu equivalent of ctrl-a on windows
thanks david. that worked for me too and I like your detective approach. I'll remember that the next time I need another equivalent. On Thu, Jul 18, 2019 at 4:13 PM David Winsemius <dwinsemius at comcast.net> wrote: > > On 7/18/19 1:02 PM, Mark Leeds wrote: > > Hi All: I'm using an old version of Ubuntu, 14.04, and I can't figure > out a > > keyboard
2005 Feb 22
3
[LLVMdev] Area for improvement
Vikram S. Adve wrote: >> The only way to make preselection or lowermultidimrefs work is to >> duplication all of the knowledge of how the instruction selector will >> select the code (e.g. the advice about allowing constant indices to >> be grouped together). > > > This is why you need a separate, low-level optimization framework - > the kind you were
2005 Feb 22
1
[LLVMdev] Area for improvement
On Tue, 22 Feb 2005, Vikram S. Adve wrote: >> The second issue is that we need to do redundancy elimination and hoisting >> on operations that are only exposed once instruction selection is >> performed. Getelementptr expansion is just ONE particular case of this, >> but it can happen with any instructions (including the use of large integer >> (or any FP)
2006 May 01
1
unable to set outgoing callerid
Hi *, now for a long time i am trying to set the outgoing callerid, without luck. I am here in Germany, my asterisk has a pri interface connected to a PMX installed by Telekom. All telephone calls are preselected to EcoVoice. I am using asterisk 1.2.7.1, zaptel 1.2.5 and libpri 1.2.2. A week ago we tried with a device able to simulate a telephone system so send out a callerid, and that worked as expected. When calling a mobile phone or making a far distance call, then normally the number starts with a 0...
2005 Feb 22
0
[LLVMdev] Area for improvement
I figured getelementptr exists as it does to facilitate data flow analysis, but it does need to be broken down before instruction selection. It's not just the missed optimization opportunities. It also introduces a huge amount of complexity into instruction selection as they deal with its complexity. It would also take care of many of the FIXMEs in LoopStrengthReduce. Vikram Adve
2006 Mar 01
4
another select_list question - bad bad booleans
I have a select list for a boolean column in postgresql in the ''model'' ... YES_NO = [ [ "Yes", "1" ], [ "No", "0" ] ].freeze in the ''view code'' ... <%= options = [[''Accepted?'', '''']] + Placement::YES_NO select("placement", "accepted",