similar to: how to disable a select list

Displaying 20 results from an estimated 200000 matches similar to: "how to disable a select list"

2011 Nov 03
1
Select columns of a data.frame by name OR index in a function
Dear all, Sometimes I have the situation where a function takes a data.frame and an additional argument describing come columns. For greater flexibility I want to allow for either column names or column indices. What I usually do then is something like the following: -------------8<------------- f <- function(datf, cols) { nc <- seq_along(datf) cn <- colnames(datf) colOK <-
2020 Jan 30
2
Disabling select instructions
Hi, I would like to know if there's a way to avoid select instructions during the IR generation. What are the optimization passes that can result in a select instruction? i.e. I want to preserve branches in my code without disabling any other optimizations applicable. For example, void foo(int* x, int* y){ if(*x > 0){ *y = *x + 10; } else{ *y = *x + 20; } }
2020 May 15
2
Firmware auto-select limitation
Hi everyone and Martin I would like to confirm the conversation we had in regard the possible limitation of firmware auto-select feature that’s been released since v5.20. I recall you saying that there were a lot of issues with auto select and later they shipped it into a Json file , it still didn’t solve all the problems, did it? Is it better to explicitly specify the loader and nvram path
2006 Aug 03
3
HELP: multiple select list in ror
Hi Search doesn''t seem to be working so my apologies if this has come up before. I have some simple code in a view that generates a multiple select: <select name="menu_select" size="5" multiple="multiple"> <% for m in Menu.find(:all) %> <!-- this needs to be abstracted in ror fashion --> <option value="<%= m.id %>"
2006 Apr 30
1
Select Lists
Is there any way to trigger a controller action when the user picks an option from a selection list? -- Posted via http://www.ruby-forum.com/.
2020 Jan 31
2
Disabling select instructions
I agree with John; also, if you decide to go this route, you can reuse the code from CodeGenPrepare::optimizeSelectInst: https://github.com/llvm/llvm-project/blob/master/llvm/lib/CodeGen/CodeGenPrepare.cpp#L6065 Alexey On Thu, Jan 30, 2020 at 9:00 PM John Regehr via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Several different passes introduce select instructions, such as >
2006 Jun 08
5
AM/PM select
I have a customer that has a request that the select_datetime fields have AM/PM selectors instead of 24 hour time. The rails time and datetime selects seem to only support 24 hour time. I can''t seem to find any information on this. i was wondering if there is already a solution out there, or will i have to roll my own? Sean Wolfe master nerd of i heart squares, inc. 3711 N.
2005 Nov 08
0
LLVM 1.6 Release!
Hi Everyone, LLVM 1.6 is out! Get it here: http://llvm.org/releases/ or read about it here: http://llvm.org/releases/1.6/docs/ReleaseNotes.html#whatsnew This release is the culmination of a ton of great work by many people in the LLVM community. This release cycle has been much longer than any previous release cycle, and reflects that in its content. However, because we think that 3-4
2008 Nov 26
0
looking for a plugin that does multi-list/select managment
Hi I''m looking for a plugin that will take the pain out of constantly re-implementing a UI ''functionality'' (for lack of a better term) that I''m using often. This functionality consists of two select (listboxes) - side by side. The one on the left has a list of items that the user can choose from and then by clicking on a button - move the selected
2017 Jan 31
0
[GlobalISel] Questions about selection regions
On Tue, Jan 31, 2017 at 7:12 AM, Bekket McClane via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Hi, > I've been studying the global instruction selector introduced recently. One > of the properties of global instruction selectors is that they select > instructions across basic blocks such that they can get more information in > order to choose optimal patterns. >
2006 May 10
2
HABTM - How do I do a select box for this?
I''ve got several habtm''s working fine in my app but have been having trouble with a new twist: imagine an app that tracks students and courses that they''re taking. So there''s a student Class and a course Class, and the tables also, and a students_courses table. This stuff I have down cold. The problem was I wanted a form that allowed associating a student
2017 Jan 31
2
[GlobalISel] Questions about selection regions
Hi, I've been studying the global instruction selector introduced recently. One of the properties of global instruction selectors is that they select instructions across basic blocks such that they can get more information in order to choose optimal patterns. However, the current global isel implementation still iterates over BBs within functions, which is same as the original SelectionDAG
2007 Mar 23
4
how to select only some fields?
hi, how can i select only some fields when ferret do the query? like a :select => ''id'', for the find....i''ve tried to do it where i do the :include => [:something], but it doesn''t work...is it right or i''ve to put it in another place? -- Posted via http://www.ruby-forum.com/.
2006 Jun 26
2
How can I sort options in a select box?
Pretty much a newbie here, looking for help on select boxes in forms.... Is there any way in the view to sort the options of a drop-down select box? My current code (within a larger _form.rhtml file) is: <div class="form-element"> <label for="asset_location_id">Location</label> <%= select ''asset'', ''location_id'',
2008 Apr 29
6
Xen & SELINUX: how disable in guest?
Hello all! I try to boot the guest VM in native EL5.1 dom0. Kernel for guest domain I took from source compiled Xen distributions since native EL5.1 kernel being tired as guest did not see root partition at all. SELinux enforcing is disabled in the dom0: > [root@mbone ~]# getenforce > Permissive Configuration file for guest domain has parameter to disable selinux: > [root@mbone ~]#
2006 Jun 28
0
What''s the best way to select one in a big list?
Hi! I''m trying to convert our Windows application into web-based application. It''s a personal project to see if that''s feasible. There''s a table for patients. In a [new patient] window, you need to select a guarantor(responsible party for the patient, mostly father of family. It''s self-referential foreign key.). In the Windows application, it opens
2008 Dec 23
1
Adding to select list
I have several select lists on a form generated via collection_select pulling values from the database. What I would like to do is, if new components need to be added to a select list (new options), I am providing a link beside the select list which will pop-up a small form to add a new item to the list. Upon saving the new item, I would like the list on the form (parent window) to refresh, so
2017 Sep 13
0
Re: [PATCH v3 0/6] launch: direct: Disable qemu locking when opening drives readonly.
On Wed, Sep 13, 2017 at 12:40:29PM +0300, Roman Kagan wrote: > On Wed, Sep 13, 2017 at 09:47:52AM +0100, Richard W.M. Jones wrote: > > On Wed, Sep 13, 2017 at 11:25:32AM +0300, Roman Kagan wrote: > > > On Tue, Sep 12, 2017 at 06:04:18PM +0100, Richard W.M. Jones wrote: > > > > v2 -> v3: > > > > > > > > - I addressed everything that Pino
2006 Apr 27
4
select item based on previous select list selection?
So I have a select list with a list of items. When a user selects an item, another select list should have its default selected item set to a specific item (the default associated with the first select list). This is in a form to create a new task. The first select list is a list of parent tasks. When one selects the parent task, the clients select list must default to the same client as its
2005 Nov 03
0
[LLVMdev] [DRAFT] Announcement for LLVM 1.6 [DRAFT]
The vector LLVA extension will not be merged into the 1.6 release branch? It will make me have to merge twice: one for 1.6 and one for vector LLVA. When do you plan to merge the vector LLVA to the main trunk, please? On 26/10/05, Chris Lattner <sabre at nondot.org> wrote: > > Hi All, > > I'm putting together the announcement for the LLVM 1.6 release. Here is > what I