search for: preselect

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

Did you mean: reselect
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)
...udit 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 regarding two moderate sized sets of changes that entered FreeBSD CVS today: (1) I imported OpenBSM 1.0 alpha 6. (2) I imported support for per-auditpipe preselection. Detailed commit messages are below. Robert N M Watson ---------- For...
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 Carte...
2005 Feb 22
4
[LLVMdev] Area for improvement
...appen with any instructions (including the use of large integer (or any FP) constants on RISC machines, addressing globals with PIC code, handling extended/truncated operations (for RISC machines with a single integer size), etc. Note that hacks like "LowerMultiDimRefs" and the sparc Preselection pass sorta-kinda work around SOME of this, but they really are just as bad as the problem: they solve some cases and make other cases worse. The only way to make preselection or lowermultidimrefs work is to duplication all of the knowledge of how the instruction selector will select the cod...
2005 Feb 22
0
[LLVMdev] Area for improvement
...s > (including the use of large integer (or any FP) constants on RISC > machines, addressing globals with PIC code, handling > extended/truncated operations (for RISC machines with a single integer > size), etc. Note that hacks like "LowerMultiDimRefs" and the sparc > Preselection pass sorta-kinda work around SOME of this, Actually, they are capable of working around much of this, and most such optimizations are actually quite architecture-independent, e.g., LowerMultiDimRefs, which is a major optimization for array-intensive languages. I don't claim such choices...
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, bu...
2019 Jul 18
2
ubuntu equivalent of ctrl-a on windows
...ect 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. library(tcltk) fruits <- c("pear", "apple", "banana", "peach") temp <- tk_select.list(choices = fruits, preselect = NULL, multiple = TRUE) print(temp) [[alternative HTML version deleted]]
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 mess...
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
...n -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 future, which I hope to get this week, as well as a bug fix in the handling of per-pipe preselection, which Christian Peron is currently working on. The audit implementation will be considered an experimental feature in 6.2-RELEASE, but in practice runs quite well, so is ready for more wide-spread deployment. For those who are unfamiliar with it, security event auditing ("audit")...
2006 Aug 16
1
Warning: MFC of security event audit support RELENG_6 in the next 2-3 weeks
...n -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 future, which I hope to get this week, as well as a bug fix in the handling of per-pipe preselection, which Christian Peron is currently working on. The audit implementation will be considered an experimental feature in 6.2-RELEASE, but in practice runs quite well, so is ready for more wide-spread deployment. For those who are unfamiliar with it, security event auditing ("audit")...
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 framewor...
2019 Jul 18
2
ubuntu equivalent of ctrl-a on windows
...t quite a bit > of > > time searching the net, going on AskUbuntu etc > > but no luck. Thanks. > > > > library(tcltk) > > fruits <- c("pear", "apple", "banana", "peach") > > temp <- tk_select.list(choices = fruits, preselect = NULL, multiple = > TRUE) > > > > print(temp) > Ctrl-/ picks all items on my setup. > > I'm in 18.04 inside Rstudio so my experience may be different. > > > I discovered this by holding the control key down and sliding my finger > across the lower tier of k...
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 fra...
2005 Feb 22
1
[LLVMdev] Area for improvement
...ng the use of large integer >> (or any FP) constants on RISC machines, addressing globals with PIC code, >> handling extended/truncated operations (for RISC machines with a single >> integer size), etc. Note that hacks like "LowerMultiDimRefs" and the sparc >> Preselection pass sorta-kinda work around SOME of this, > > Actually, they are capable of working around much of this, and most such > optimizations are actually quite architecture-independent, e.g., > LowerMultiDimRefs, which is a major optimization for array-intensive > languages. I obvi...
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...
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",