search for: memo

Displaying 20 results from an estimated 175 matches for "memo".

Did you mean: mem
2008 Apr 18
5
show sum of textboxes
Hi all, I have multiple textboxes containing numbers. I want to add up all the numbers and show the sum. Can I select the textboxes by class and sum the content? This also has to happen realtime: when a number is changed ina textbox the sum should also change. can this be done? regards, Stijn --~--~---------~--~----~------------~-------~--~----~ You received this message because you are
2006 Apr 14
2
spot the error (I can''t, I''m new)
I have a form that I want to use to update multiple objects. In the controller, @grades = Grade.find(params[:grade].keys) @grades.each_with_index do |grade, i| grade.update_attribute(params[:grade][i]) end all_valid = @grades.inject(true) {|memo, c| c.valid? && memo } this doesn''t update the attributes as I would expect. (I would just use Grade.update(params[:grade].keys,params[:grade].values) but I can''t figure out how to validate the data using that method. Could someone please explain what I''m doing...
2010 Jan 21
2
Help with correct text file syntax EXCLUDE/INCLUDE + OPTION
...nd some files, see [1] in my /home dir to an external USB HD (Ext4). I want to use a text file for the purpose. [1] /home/user/Documents /home/user/Software /home/user/.evolution/addressbook/local/system/addressbook.db /home/user/.evolution/calendar/local/system/calendar.ics /home/user/.evolution/memos/local/system/journal.ics /home/user.evolution/tasks/local/system/tasks.ics First (1st) attempt [OPTION] --exclude-from=fileA [SYNTAX] fileA + Documents + Documents/** + Software + Software/** # .evolution/addressbook/local/system/addressbook.db .evolution/calendar/local/system/calendar.ics .e...
2008 Apr 22
1
Problem with Prototype 1.6.0.2, Opera 9 and Form.serialize()
...lly a non-object value used where an object is required) Backtrace: Line 3388 of linked script https://thomaskochit.dyndns.org/js/prototype/prototype.js key = element.name; value = $(element).getValue(); Line 701 of linked script https://thomaskochit.dyndns.org/js/prototype/prototype.js memo = iterator(memo, value, index); Line 595 of linked script https://thomaskochit.dyndns.org/js/prototype/prototype.js iterator(value, index++); Line 835 of linked script https://thomaskochit.dyndns.org/js/prototype/prototype.js iterator(this[i]); Line 596 of linked script https://thomas...
2015 Jun 02
2
did i miss the memo on asterisk devel ?
I usually lurk on the asterisk devel list to see what's going on. No posts for a week or two. Has the list moved ? sean
2015 Jun 02
0
did i miss the memo on asterisk devel ?
sean darcy wrote: > I usually lurk on the asterisk devel list to see what's going on. > > No posts for a week or two. Has the list moved ? Nope - it's just been a quiet time. -- Joshua Colp Digium, Inc. | Senior Software Developer 445 Jan Davis Drive NW - Huntsville, AL 35806 - US Check us out at: www.digium.com & www.asterisk.org
2020 Aug 14
2
Fwd: Deterministic function return attribute
...hat explains why I haven't been able > to find some things on the docs I've remembered...) Yeah, the docs,.. feel free to propose patches to improve them and put me as a reviewer ;) > Though one question interests me: what attributes can be given to a > lazy-init singleton or memoized function (which do access memory, but > does not change output and has no visible side-effects)? Short answer: None (right now). Long answer: There are optimizations that exploit such behavior (or at least similar behavior) already. IPSCCP and there is an Attributor patch that I lost trac...
2020 Aug 13
3
Deterministic function return attribute
...e in LLVM, (if I understood well, it's the same as GCC's __attribute__((pure)), but I'm not sure whether there are edgecases where the mergability is not equivalent. I've seen somewhere that maybe malloc has these attributes, but it surely cannot be merged. This is because there is memory read/written that cannot be seen by LLVM (which is accepted by readnone). This would be a counter-example. So my question is: Is mergability equivalent to the readnone+speculatable attribute? If not, is there some attribute that should help? And also, does malloc have (or rather, could malloc h...
2005 Aug 30
0
No subject
...ke_windows', 'Y:': '/home/justin', 'Z:': '/', } and recursively case-insensitively comparing each remaining part of the path with the folder contents. My 'solution', however, breaks down when given a path such as ex., 'C:\PROG~FBU\MICR~HFZ\TEMP~JWQ\MEMOS\Professional Memo.dot' where the linux path for this is '/home/justin/.cxoffice/dotwine/fake_windows/Program Files/Microsoft Office/Templates/Memos/Professional Memo.dot' as 'PROG~FBU' does not match 'Program Files' <CODE> Option Explicit Private Declare Functio...
2012 Dec 06
1
[PATCH] memop: adjust error checking in populate_physmap()
Checking that multi-page allocations are permitted is unnecessary for PoD population operations. Instead, the (loop invariant) check added for addressing XSA-31 can be moved here. Signed-off-by: Jan Beulich <jbeulich@suse.com> --- a/xen/common/memory.c +++ b/xen/common/memory.c @@ -99,7 +99,8 @@ static void populate_physmap(struct memo a->nr_extents-1) ) return; - if ( !multipage_allocation_permitted(current->domain, a->extent_order) ) + if ( a->memflags & MEMF_populate_on...
2006 Aug 24
4
extremely slow recursion in R?
I recently coded a recursion algorithm in R and ir ran a few days without returning any result. So I decided to try a simple case of computing binomial coefficient using recusrive relationship choose(n,k) = choose(n-1, k)+choose(n-1,k-1) I implemented in R and Fortran 90 the same algorithm (code follows). The R code finishes 31 minutes and the Fortran 90 program finishes in 6 seconds. So the
2007 Sep 21
1
Weird data from evalJSON
...(value) {if (value == object) {found = true;throw $break;}})); return found; } function (number, fillWith) { fillWith = fillWith === undefined ? null : fillWith; return this.eachSlice(number, (function (slice) {while (slice.length < number) {slice.push(fillWith);}return slice;})); } function (memo, iterator) { this.each((function (value, index) {memo = iterator(memo, value, index);})); return memo; } function (method) { var args = $A(arguments).slice(1); return this.map((function (value) {return value[method].apply(value, args);})); } function (iterator) { var result; this.each((function (...
2016 Apr 06
0
Memory problem
It is hard to tell from the information that you have provided. Do you have a list of the sizes of all the objects that you have in memory? Are you releasing large objects at the end of each simulation run? Are you using 'gc' to garbage collect any memory after deallocating objects? Collect some additional information with a simple function like below: f_mem_stats <- function(memo='') cat(memo, proc.time(), mem...
2002 Jun 26
0
Client connections seem to drop
...is the snippet of the log for one of such clients with problems. > > ###########cut-paste of log (only part of it)######### > > oplock_break: receive_smb timed out after 30 seconds. > oplock_break failed for file emikus/Nomura_Deals/Closed Deals/ASC 97 > D5/Reporting issues memo.doc (dev = 10c1770, inode = 26711). > [2002/06/25 17:25:27, 0, pid=28650, effective(14497, 5110), real(0, 0)] > smbd/oplock.c:oplock_break(859) > oplock_break: client failure in oplock break in file > emikus/Nomura_Deals/Closed Deals/ASC 97 D5/Reporting issues memo.doc > [2002/06/2...
2014 Apr 26
2
asterisk servers down ?
I can't reach digium.com or asterisk.org. Did I miss the memo? sean
2016 Apr 06
1
Memory problem
...d of each simulation, a large result is getting stored.? Regards Amelia On Wednesday, 6 April 2016 5:48 PM, jim holtman <jholtman at gmail.com> wrote: It is hard to tell from the information that you have provided.? Do you have a list of the sizes of all the objects that you have in memory?? Are you releasing large objects at the end of each simulation run?? Are you using 'gc' to garbage collect any memory after deallocating objects?? Collect some additional information with a simple function like below: f_mem_stats <- function(memo='') cat(memo, proc.time(), mem...
2019 Aug 13
5
[PATCH 0/3] generator: pod2text-related improvements
- refactor memoization code - pass pod as stdin rather than files Pino Toscano (3): generator: isolate memoized cache in own module generator: adjust variable names generator: improve pod2text invocation generator/Makefile.am | 3 ++ generator/memoized_cache.ml | 62 +++++++++++++++++++++ gener...
2011 Feb 25
3
Can the Sidekick PIM run in Wine?
...ing to move over to ubuntu(still fairly new) and after two weeks of searching i have yet to find a contact manager with the functionality and flexibility of sidekick so we are trying to get it working in Ubuntu. The program runs fine but then instantly crashes when i attempt to save a contact or a memo. Any help or insight would be greatly appreciated. Imo. Terminal Output: data-wrangler at WildHorses:~$ env WINEPREFIX="/home/data-wrangler/.wine" wine C:\\windows\\command\\start.exe /Unix /home/data-wrangler/.wine/dosdevices/c:/users/Public/Start\ Menu/Sidekick\ 98.lnk fixme:exec:SH...
2020 Apr 05
2
FMSO transfer gone wrong
...;samba-tool fsmo transfer --role=all' didn't work, I decided to use seize instead. There was no error output other than the expected error that the transfer didn't work and I shut the old FSMO master DC down. So, now nothing really works as expected: the other DCs didn't get the memo to change to the new FSMO master DC and I cant find any documentation on how to change that by hand. Also, drs showrepl request take forever to finish on the now disconnected DCs while they just timeout on the FSMO master. Not sure if that helps, but my smb.conf is attached :) Thanks Arne ---...
2005 May 26
3
Buidling R on Linux (Itanium) fails (PR#7897)
Full_Name: Reinhold Bader Version: 2.1.0 OS: SLES 9 Submission from: (NULL) (129.187.48.1) I tried to build R using the Intel compilers (icc, ifort) and the Math Kernel Libraries for BLAS/LAPACK Optimizations used were -O3, and the FPICFLAGS="-fpic" was exported. The build failed with the following error message: ... dumping R code in package 'methods' Saving namespace image