Displaying 20 results from an estimated 39 matches for "getentri".
Did you mean:
getentry
2013 Aug 28
0
[LLVMdev] [polly] one more slow pretty printing in the default path
On 08/28/2013 10:08 AM, Sebastian Pop wrote:
> Hi,tic
>
> in lib/Analysis/RegionPass.cpp there are 3 occurrences of:
> CurrentRegion->getNameStr()
> These are slowing down compile times with polly.
> I would suggest to either remove these calls,
> or only turn on when the programmer asks for -debug.
>
> The reason for the slow pretty printing of types is the same as
2006 Mar 17
1
Autocompleter.Local problem/desparate plea for help...
I have been trying to write a selector function for Autocompleter.Local that
will show a predefined Array and will scroll automatically to the first
match. I have had success with with getting my list to populate and show
all of the choices, however I cannot get it to scroll to the first match.
Since I build the JS Array I can know exactly how many items are in the list
going into my selector,
2007 Nov 11
3
Scrollable selectbox for auto complete
Hi everyone,
I have used used scriptalicious for the autocomplete.
It works but with one problem.
When scrolling down the list, the values not visible are not scrolled
into focus.
eg I use the keyboard down or up key.
Here is my CSS
<style type="text/css">
div.auto_complete {
height: 100px;
width: 350px;
background:
2013 Aug 28
2
[LLVMdev] [polly] one more slow pretty printing in the default path
Hi,
in lib/Analysis/RegionPass.cpp there are 3 occurrences of:
CurrentRegion->getNameStr()
These are slowing down compile times with polly.
I would suggest to either remove these calls,
or only turn on when the programmer asks for -debug.
The reason for the slow pretty printing of types is the same as
previously discussed in:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2013-July/063755.html
2006 Jan 23
6
Performance Issues with Autocompleter
Hi All,
I am currently using script.aculo.us and Autocompleter for a project which I
am dealing now. I
faced a situation for which I couldnt find any solution and I could not see
any reference
regarding this issue in the enhancement/bug lists of script.aculo.us either.
Autocompleter component is working perfectly, if the information returned
from the server
does not exceed ~1000 LIs.
2012 Dec 28
0
How to apply XPath query on XML nodes separately?
...getNodeSet to just a XMLNode and not the whole
document it was retrieved from?
I use the XML and RCurl packages. The document I speak of is downloaded
from uniprot.org, a protein knowledge server well known to biologists.
The lamentably somewhat lengthy code follows:
library(XML)
library(RCurl)
getEntries <- function( uniprot.xml, uniprot.error.msg.regex='^ERROR' ) {
# Uniprot's dbfetch can be asked to return several entry tags in the same
XML
# document. This function uses XPath queries to extract all complete
uniprot
# tags.
#
# Args:
# uniprot.xml : The r...
2013 Nov 12
2
[LLVMdev] Implementing the ldr pseudo instruction in ARM integrated assembler
Hi David,
Thanks for your efforts here. I have a few comments on your patch, although
I realise it's still a work in progress.
+class ConstantPool {
+ MCSymbol *Label;
+ typedef std::vector<const MCExpr*> EntryVecTy;
Use a SmallVector here?
+ MCSymbol *getLabel() {return Label;}
+ size_t getNumEntries() {return Entries.size();}
+ const MCExpr *getEntry(size_t Num) {return
2013 Nov 16
2
[LLVMdev] Implementing the ldr pseudo instruction in ARM integrated assembler
Moving discussion to llvm-commits now that I have a more developed
implementation:
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20131111/195401.
html
> -----Original Message-----
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On
> Behalf Of David Peixotto
> Sent: Tuesday, November 12, 2013 11:09 AM
> To: 'Amara Emerson'
>
2013 Nov 12
0
[LLVMdev] Implementing the ldr pseudo instruction in ARM integrated assembler
Hi Amara,
Thanks for your suggestions. I have made the changes you suggested and added
a new test to check that we print an error when parsing a non-ldr mnemonic
with an operand containing `=`. The updated patch is attached.
-- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted
by The Linux Foundation
> -----Original Message-----
> From: Amara Emerson
2013 Dec 17
0
[LLVMdev] Implementing the ldr pseudo instruction in ARM integrated assembler
Hi David,
Maybe I’m just blind, but where’s the code to handle the .ltorg directive? Is that a separate patch, maybe? Without that, this is not going to be usable in any circumstance using subsections-via-symbols.
+typedef std::map<const MCSection *, ConstantPool> ConstantPoolMapTy;
This feels odd to me. Can you elaborate a bit more on the data structure choices?? I would have expected
2014 Jul 18
5
[PATCH 0/5] nvc0: fp64 preparation
Most of codegen is already FP64-ready. There are a few edge-cases that I ran
into, many of which can apply even to non-fp64-enabled programs (although the
double-wide registers are not very common without fp64).
I've yet to give this a full piglit run, but wanted to send these out in case
someone wanted to comment. They do not depend on the preliminary core fp64
work.
Ilia Mirkin (5):
2008 Feb 27
2
Winbind+ldap = core dump
Hi,
I use samba 3.0.26a on fedora 8 as a fileserver for a win 2k3 domain. This
has worked fine for about 2 months without any problems. However I came to
the server 3 days ago and the harddrive was 100% full. On checking I found
60gb of core dumps in the winbind folder. I did a lot of searching and
couldnt find anything relevent for this release. I tried upgrading samba to
3.0.28 (fc8
2004 Dec 21
2
X100P dead?
Hello,
I have X100P card but exten => _9X.,1,Dial(Zap/1/${EXTEN:1}) does not work.
The error is app_dial.c:803 dial_exec: Unable to create channel of type
'Zap' (cause 0)
Zap show channel, lspci etc show everything is normal.
Because X100P is Intel 537 modem, so can I use it as true modem for test?
Did any one use X100P as a modem?
Thank you very much.
-------------- next part
2006 May 23
0
RE: Autocompleter - up arrow moves cursor to startofinput box
The key up will make the page scroll to the top of the inputfield...
I''ve seen this myself and the reason is the changes applied in this patch:
http://dev.rubyonrails.org/ticket/4782
I am pretty sure it is because of this statement:
this.getEntry(this.index).scrollIntoView(true);
the "true"-makes the page scroll.... any working workinaround would be
great....
2013 Dec 17
2
[LLVMdev] Implementing the ldr pseudo instruction in ARM integrated assembler
Hi Jim,
Thanks for the review. It seems like you were looking at an old patch. I've
attached the latest patches to this email (and a squashed version of all
three for easy reading). I believe many of your concerns were addressed. See
below for a detailed response.
> Maybe I'm just blind, but where's the code to handle the .ltorg directive?
It is implemented in patch 0003 in this
2009 Aug 11
0
Winbind core dump issue
Greetings
We've moved from using NIS/SFU to using Samba/Winbind connecting to our
Windows 2003 AD domain with an Openldap idmap backend on our Redhat 4/5
servers. We managed to get this mostly working in that users can
authenticate using their domain accounts (thank you Samba team!!!). We do
however keep getting the same error in the log.winbindd-idmap log:
winbindd:
2005 Aug 05
2
Quick Question on Autocompleter Parameters
Hello,
Is it possible to send the current value of a second form element with
the AJAX request on the Autocompleter? At the moment, I initialise the
Autocompleter on page load, so any parameters passed in the constructor
are given the value set at page load time. I need to obviously pass in
the value of the second form element when the autocompleter is called.
Does this function already exist,
2013 Oct 17
1
[LLVMdev] [Debug Info PATCH] for support of ref_addr and removal of DIE duplication
On Wed, Oct 16, 2013 at 10:32 PM, David Blaikie <dblaikie at gmail.com> wrote:
>
>
>
> On Wed, Oct 16, 2013 at 9:10 PM, Manman Ren <manman.ren at gmail.com> wrote:
>
>>
>>
>>
>> On Wed, Oct 16, 2013 at 1:58 PM, David Blaikie <dblaikie at gmail.com>wrote:
>>
>>>
>>>
>>>
>>> On Wed, Oct 16, 2013 at
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
Note that this does not fix gettext for app,
that will be done separately in another patch
as F10/F11 require different setups for that.
In the meantime gettext works if manually changed
in environment.rb to gettext_rails instead of
gettext/rails
Signed-off-by: Jason Guiditta <jason.guiditt at gmail.com>
---
src/app/controllers/application.rb | 200 --------
2013 Nov 11
0
[LLVMdev] Implementing the ldr pseudo instruction in ARM integrated assembler
I have attached an initial patch that implements the ldr pseudo. It still
needs some clean up and more tests, but I would like some feedback on the
approach I used and if there are any objections to implementing it this way.
Here is my approach:
Add a finishParse() callback to the target asm parser
This callback is invoked when the parse has finished
successfully. It will be used to write out