search for: geoffrey

Displaying 20 results from an estimated 245 matches for "geoffrey".

Did you mean: geoffray
2015 Jun 02
2
GlusterFS 3.7 - slow/poor performances
hi Geoffrey, Since you are saying it happens on all types of volumes, lets do the following: 1) Create a dist-repl volume 2) Set the options etc you need. 3) enable gluster volume profile using "gluster volume profile <volname> start" 4) run the work load 5) give output of &quot...
2007 Sep 05
4
False Positives and Autotest on New Folders
...? again; and I''d hate it to mask a test failure. Autotest Out of curiosity, does anyone know how to get autotest to pick up new folders under spec/? Seems like I might have to modify rails_rspec.rb in lib/autotest. We were considering separating our acceptance tests from the rest. - Geoffrey -- Geoffrey Wiseman -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rspec-users/attachments/20070905/dd3f3b88/attachment.html
2013 Nov 06
2
[LLVMdev] configparser and ConfigParser are different
...hat configparser and ConfigParser apparently expose subtly different interfaces. Indeed, the attached patch fixes the problem for me (with python 2.7.4). I haven't yet investigated how the two modules are different, and obviously this isn't the right patch. More investigation coming up. Geoffrey -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-llvm-build-Fix-the-build-in-the-most-ridiculous-mann.patch Type: text/x-patch Size: 798 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131106/9b5d0565/attachment.bin&g...
2013 Nov 06
0
[LLVMdev] configparser and ConfigParser are different
Okay, I've traced it to a bug in configparser, which on my python 2.7.4 system is a backport of configparser from python 3. Here is a clean patch that works around the problem. Geoffrey On Wed, Nov 6, 2013 at 10:24 AM, Geoffrey Irving <irving at naml.us> wrote: > LLVM builds with me on the release_33 branch, but fails on trunk. I > bisected the problem to this commit: > > commit b49fb7bcd5001567d2da06f6a6e1c7ba79649e1b > Author: Daniel Dunbar <daniel at z...
2007 Jan 28
3
Inverse fuction of ecdf
Hi Everyone, I want to generate some random numbers according to some empirical distribution. Therefore I am looking for the inverse of an empirical cumulative distribution function. I haven't found any in R. Can anyone give a pointer? Thanks, Geoffrey _______________________________________________________=0A= =0A= =0A= The information in this email or in any file attached hereto...{{dropped}}
2007 Oct 05
4
have_xml_tag
Hi Was just using have_tag on an xml response and found the problem outlined and resolved here http://weblog.jamisbuck.org/2007/1/4/assert_xml_select Just wondered if there is any support in rspec? Cheers Shane Shane Mingins ELC Technologies (TM) PO Box 247 Santa Barbara, CA 93102 Phone: +64 4 568 6684 Mobile: +64 21 435 586 Email: smingins at elctech.com AIM: ShaneMingins Skype:
2007 Sep 07
4
fixtures in before(:all)
...c/models/customer_spec.rb:86: script/spec:4: If I convert it to before(:each) or simply before, it works just fine. describe "Customer", "xml" do fixtures :customers before do one = customers(:one) end # ... By design? bug? PEBKAC? Anyone else hit this? - Geoffrey -- Geoffrey Wiseman -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rspec-users/attachments/20070907/82661968/attachment.html
2015 Jun 01
1
GlusterFS 3.7 - slow/poor performances
...net) My volume settings: single: 1server 1 brick replicated: 2 servers 1 brick each distributed: 2 servers 2 bricks each dist-repl: 2 bricks in the same server and replica 2 All seems to be OK in gluster status command line. Do you have an idea why I obtain so bad results? Thanks in advance. Geoffrey ----------------------------------------------- Geoffrey Letessier Responsable informatique & ing?nieur syst?me CNRS - UPR 9080 - Laboratoire de Biochimie Th?orique Institut de Biologie Physico-Chimique 13, rue Pierre et Marie Curie - 75005 Paris Tel: 01 58 41 50 93 - eMail: geoffrey.letessier...
2007 Sep 09
11
Going beyond the default html formatter/report?
Hi! I wonder does anybody planning to go beyond the default html formatter/report? The current html report is nice and green but what about to go a little silly and enable also user input. For example to let customer to add a new pending spec, comments etc. I feel it might be mentally easier for some customers to jump into spec world when it is possible to give input at "the same
2010 Jan 05
5
mean for subset
...9 Clara 95 10 Clara 84 Is there a way to get the mean of the SCORE variable by NAME but only when the number of observations is equal to 3? In other words, is there a way to get the mean of the SCORE variable for Tom and James, but not for Dawn and Clara? Thank you. -- Geoffrey Smith Visiting Assistant Professor Department of Finance W. P. Carey School of Business Arizona State University [[alternative HTML version deleted]]
2007 Sep 04
16
Failure Messages in RSpec
...quot; This means that when the model validation fails, I know /why/. I don''t see an easy way to include these sorts of messages in RSpec, which seems likely to cause me to waste time on test failures. Am I missing something? How are experienced RSpec users resolving this? Thanks, - Geoffrey -- Geoffrey Wiseman -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rspec-users/attachments/20070904/558bcc38/attachment.html
2007 Oct 01
1
have_tag and line numbers
...c.rb:2. Has anyone else experienced this? I just spent a while tracking down what I assumed was a problem in my have_tag only to discover it was a problem with my with_tag. Just trying to determine if I''m mis-understanding something or if this is a bug I should file in the tracker? - Geoffrey -- Geoffrey Wiseman -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rspec-users/attachments/20071001/a578b8da/attachment.html
2007 Oct 05
1
Rake & Story Runner
...dn''t see any. As far as I can see, "rake spec" doesn''t run or report on my story in stories/filename.rb. I''m guessing that stuff is still pending, but wanted to confirm before deciding whether to build something myself or wait for something to come down. - Geoffrey -- Geoffrey Wiseman -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rspec-users/attachments/20071005/7181ed00/attachment.html
2006 Dec 26
4
vectorizing an iterative process.
...mple problem. Suppose I have a vector x, and I want to calculate y[i]=3Dx[i+1]-x[i], it is very easy. I just need to write y<-x[2:length(x)]-x[1:length(x)-1]. Now if I know y, and want to know the vector x defined by x[i]=3Dx[i-1]+y[i-1] for all i, how can I do this without a loop? Thanks, Geoffrey PS. Sorry if you see a duplicate message. The previous one was in a weird format that most people would not be able to read. _______________________________________________________=0A= =0A= =0A= The information in this email or in any file attached hereto is=0A= intended only for the personal and...
2006 Jul 20
2
Carrying model date from one page to the next
...the db before the order is completed, I have the possibility of a ton of unused addresses in the database. Is there a way to hold off on a database save for a page? If that happens, can I keep the validation from the model working on the first page (ie without a save)? Thanks for any help. -geoffrey
2014 Mar 26
3
[LLVMdev] [cfe-dev] computing a conservatively rounded square of a double
On 03/26/2014 11:36 AM, Geoffrey Irving wrote: > I am trying to compute conservative lower and upper bounds for the > square of a double. I have set the rounding mode to FE_UPWARDS > elsewhere, so the code is > > struct Interval { > double nlo, hi; > }; > > Interval inspect_singleton_sqr(const double...
2010 Oct 06
3
tapply output
...from the tapply function is fine, but I would; #really like the output to look like this; # class group name mean # 0 A Tom 62.5 # 0 B Jane 58.5 # 1 A Enzo 66.5 # 1 B Mary 70.5 -- Geoffrey Smith Visiting Assistant Professor Department of Finance W. P. Carey School of Business Arizona State University [[alternative HTML version deleted]]
2007 Sep 05
5
RSpec for dummies screencast?
Does anyone know of any RSpec screencasts for dummies, like me :) I have a Java background, but I have never written a java test in my life. I''ve never learned about TDD or BDD so I''m totally blank on everything that has anything to do with testing and stuff. Where should I start?!? ;) Christian... --~--~---------~--~----~------------~-------~--~----~ You received this
2019 Feb 05
1
Question about Sizing of Samba Linux Server
...This question because my RAM is all eated up in the buffer/cache (normal according to last chapter of : https://wiki.samba.org/index.php/Performance_Tuning). Users are not complaining but I don't know if the servers is needing more or less. Any advice will be greatly appreciated, thanks. *Geoffrey MEZERETTE* • Ingénieur Systèmes et Réseaux • Enovea • 16, rue Jacques Monod • 76130 Mont Saint Aignan • Standard +33 (0) 2 32 18 82 66 • geoffrey.mezerette at enovea.net • www.enovea.net <http://www.enovea.net/>• <http://www.enovea.net/>
2007 Oct 05
2
Rails, rSpec edge problems
Hi, Does the Story Runner work on edge rails? I thought that is what the example app was using but I am on the latest Rails and latest rSpec revisions and I am having problems. When I call ''render_template'' in a story I get the following: NoMethodError: undefined method `render_template'' for #<ActionController::Integration::Session:0x327d974> Do I need to