search for: my_values

Displaying 15 results from an estimated 15 matches for "my_values".

Did you mean: py_values
2006 May 09
1
Reusing a model to form and link_to.
Hy guys, Inside my app I have a form which contains user information. Sometimes a have a form with a text_field as above: <%= form_remote_tag(:html => { :action => url_for(:controller => "my_controller", :action => "my_action") }) %> <%= text_field(''my_object'', ''my_parameter'', :maxlength =>
2012 May 08
4
Axes value format
Hi all, I have some graphs where the values on the X and Y axes are by default in exponent form like 2e+05 or 1.0e+07. Is it possible to make them in a more readable form like 10M for 1.0e+07 or 200K for 2e+05? Thanks and Regards, - vihan
2008 Jul 17
0
Re : float and double precision with C code
thank you for your quick answer, I'm far of the digits capacity and my values are not the result of a computation. I'm developping a R package to acces a specific data source. And I need precision a few better. How can I do ? When I try this In R console, this is correct and what I need : > my_value <- 29.958334 > my_value == 29.958334 [1] TRUE But I need to do the first
2008 Jul 17
0
Re : Re : float and double precision with C code
ok, sorry, my mistake was the C printf. Thank you for your good answer Regards ----- Message d'origine ---- De : JS Ubei <jsubei at yahoo.fr> ? : jim holtman <jholtman at gmail.com> Cc : r-help at r-project.org Envoy? le : Jeudi, 17 Juillet 2008, 15h25mn 07s Objet : [R] Re : float and double precision with C code thank you for your quick answer, I'm far of the digits
2012 Aug 17
1
[LLVMdev] Generate data16 assembly instruction for TLS with PIC
Hi all, System: x86-64 ubuntu 11.04 LLVM: 3.0 gcc: 4.5.2 I declare a thread_local global variable and access it in a function in llvm IR. for example, @my_value = linkonce thread_local global %dummy* null define void @test1() { entry: %load_my_value = load %dummy** @my_value .... } After that, I use the following command: bash$ llc -relocation-model=pic test.ll And I have test.s
2013 Dec 14
2
[LLVMdev] create load from a register in LLVM IR
Hi all, I have recently encountered a problem when creating LLVM IRs. I am wondering if there is a standard or easy way to create a load from a certain register? For example, CreateLoad(rbp, NAME). Thanks, Chen -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131213/ec277276/attachment.html>
2013 Dec 14
0
[LLVMdev] create load from a register in LLVM IR
Hi Chen, > I have recently encountered a problem when creating LLVM IRs. I am wondering > if there is a standard or easy way to create a load from a certain register? > For example, CreateLoad(rbp, NAME). LLVM doesn't directly provide access to any machine registers. If you want %rbp because it's the frame pointer then for that one case there is actually an @llvm.frameaddress
2011 Apr 29
0
Local channel scenario flushes CDR before dialplan end
Hi, There's a quite complex dialplan scenario and I found out that CDR of main channel is flushed right after hangup on Local channel. I will try to simplify my scenario: [incoming] exten => 555,1,Noop(do something before using local channel, fill some variables, play IVR menus and so on) same => n,Dial(Local/555 at office/n,,g) same => n,Noop(Notice the option "/n" and
2007 Jan 16
2
[LLVMdev] Indirect branch instruction
On Tue, 16 Jan 2007, Nicolas Geoffray wrote: >> Can you give a compilable C function as an example? >> >> > Well I'm not sure on how to do this in C, but in x86 assembly a simple > jmp %eax does it. I don't understand. You're making a claim that the C compiler isn't producing optimal code for some case. Can you give an example of a C function that llvm
2007 Jan 16
0
[LLVMdev] Indirect branch instruction
Chris Lattner wrote: > I don't understand. You're making a claim that the C compiler isn't > producing optimal code for some case. Can you give an example of a C > function that llvm compiles to something suboptimal? LLVM certainly does > generate stuff like "jmp %eax", but presumably not in the way you want. > Without an example to see what you mean, we
2012 Dec 17
0
[LLVMdev] LLVMdev Digest, Vol 98, Issue 33
Hey Cameron, Sorry to reply this mail so late. Recently, I tried to understand what's the impact of the warning message (Warning: stand-alone `data16' prefix) And in binutils (gas/config/tc-i386.c), I found: if (!quiet_warnings) { ..... if (t->opcode_modifier.isprefix && t->opcode_modifier.ignoresize) { /* Warn them that a data or address
2006 Jan 18
6
Autocomplete related fields
I have a table that has city, state and postal code. I want to auto-fill the city and state when a postal code is entered. The city and postal code are simple text fields, but the state is a drop-down list with abbreviations as the value, and the full state name as the option text. I assume with Ajax.Updater I could just return the HTML for both the city and state fields -- including the entire
2007 Jul 29
7
RDig and AAF playing together
I have a site with two indexes. Index A is created offline by RDig and queried from the web via RDig (specifically, RDig.searcher.search). Index B is managed by AAF with :remote => true. Simple enough. However, I need to query both indexes from RDig. Usually this is ok, as I modified RDig to accept an array of search_paths with an element for index A and index B. However, when Index
2013 Jan 21
15
Terrible exported resources performance
Hi, Since the below is a little long, I put my question at the top: how do I troubleshoot awful exported resources performance in puppet and is there anything I can tweak to get it to run under 10 minutes in larger environments? I have a fairly modest environment (118 nodes, but prod will be at least twice as large). I''m trying to move my distributed nagios setup to one based on
2005 Sep 08
0
First 8 bytes of the value of keys in group_mapping.tdb
I'm trying to build a hack to add/modify a groupmap entry in the group_mapping.tdb file by hand. What I'd like to do is to manually perform something like this: echo -e "open group_mapping.tdb\ninsert my_key my_value\nq" | tdbtool In this attempt, I expect to add a new group map entry in the tdb file. The key I'm using is the same as samba uses: domain_group/SID. I'm