search for: shouldn

Displaying 20 results from an estimated 3550 matches for "shouldn".

Did you mean: should
2007 Oct 04
2
nested describe blocks
...ribe "foo" do describe "with no arguments" do before do puts "a" end it "should" do puts "SHOULD" end end describe "with invalid arguments" do before do puts "b" end it "shouldn''t" do puts "SHOULDN''T" end end end Here is the output in trunk (revision 2971): a b SHOULD a b SHOULDN''T Here is the output with 1.0.8: a SHOULD b SHOULDN''T The 1.0.8 output is what I expect. I don''t believe this is a *fea...
2011 Mar 14
8
pvops0 kernel 2.6.32.x still does not boot if x > 18, shouldn''t that be fixed for release of Xen 4.0.2/4.1
Hello Jeremy & Keir, sorry to be persistent, but the problem that pvops0 kernel 2.6.32.x still does not boot if x > 18 on my machines (and on many other machines, see this mailing list) is not solved yet. Shouldn''t this be a great focus of debugging and fixing? What is the point of having releases for 4.0.2 or 4.1 if I don''t have a dom0 kernel? The last time I tried it was with snapshot 892d2f052e97. Regards Andreas _______________________________________________ Xen-devel mailing li...
2007 Apr 11
0
Fwd: [ mocha-Bugs-6416 ] Mock objects shouldn''t define #to_s
---------- Forwarded message ---------- From: noreply at rubyforge.org <noreply at rubyforge.org> Date: 11-Apr-2007 15:07 Subject: [ mocha-Bugs-6416 ] Mock objects shouldn''t define #to_s To: noreply at rubyforge.org Bugs item #6416, was opened at 2006-10-31 15:34 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=7477&aid=6416&group_id=1917 Category: None Group: None Status: Open Resolution: None Priority: 3 Submitted B...
2006 Jul 18
9
Displaying HTML pulled directly from a database
How can I get RoR to display html pulled directly from a database, without converting the tags. (e.g. if "<h1>Hello</h1>" is stored (as text) in a database, how can I get RoR NOT to corvert it to "&lt;h1&gt;Hello</h1>", but instead to just pass the tags along so that "Hello" displays in bold. I''m sure it''s just a
2013 Jun 25
1
Quota errors
...nicely. But /var/log/kern.log on both nodes is constantly showing the errors below : Jun 25 10:46:46 serv-fs-adm1 kernel: [ 4910.713981] __quota_error: 2 callbacks suppressed Jun 25 10:46:46 serv-fs-adm1 kernel: [ 4910.713986] Quota error (device dm-6): find_free_dqentry: Data block full but it shouldn't Jun 25 10:46:46 serv-fs-adm1 kernel: [ 4910.737574] Quota error (device dm-6): qtree_write_dquot: Error -5 occurred while creating quota Jun 25 10:46:46 serv-fs-adm1 kernel: [ 4910.762525] (smbd,13494,2):ocfs2_acquire_dquot:811 ERROR: status = -5 Jun 25 10:46:46 serv-fs-adm1 kernel: [ 4910....
2007 Oct 18
4
error message: undefined method `parentof?''
Hi Puppet users, I occasionally see this error message in my logfiles, and was wondering what it could possibly mean. I found no mention of it in the wiki or list archives, and so I turn to you. Could not run Puppet::Network::Client::Master: undefined method `parentof?'' for nil:NilClass It appears in the log files at the end of a configuration run, like this: Oct 17 20:13:30
2010 Aug 21
6
oxenstored in stubdom ?
Hi, recently on irc channel (##xen) was some "discussion" about xen vs kvm... There was idea that it would be nice if domUs could survive dom0 restart, but this needs, for example, to have xenstored running in separate domain. In 2009 Alex Zeffertt posted some patches (http://lists.xensource.com/archives/html/xen-devel/2009-04/msg00696.html) to add this functionallity, but they
2007 Feb 18
1
Secure shared web hosting using MAC Framework
Hi all, I am looking at securing a web server using the FreeBSD MAC Framework. To make things clear I will call the hosted users "web users". Those are the issues I am dealing with: ** Network Security ** - Web users shouldn't be able to connect to reserved local ports apart from 25(smtp); 80(http); 443(https) and 3306(MySQL) Solution: run the web server and web users shell in a jail, use ipfw to limit the jail access to localhost Those are the rules I have set: ${fwcmd} add 60 pass ip from any to any dst-po...
2008 Jun 28
19
Stopping example execution?
Hello, I''m wondering If I am missing something here when creating an example that sets an expecation at the top or beginning of an action but requires you to stub / mock everything that follows. Example: I want to test that a certain controller is running a before_filter...thats easy: - controller.should_receive(:require_user) - do_get But now i''ve got to mock / stub
2012 Nov 13
5
Sending calls from behind NAT
Dears; It seems my service provider is requesting a complicated settings to allow me to send from behind NAT. What they said: "It shouldn't matter as long as you are handling the NAT correctly your end. We do not fix NAT so if you're sending internal addresses in your INVITEs or SDP then things will fail but if you're handling it correctly, we shouldn't tell the difference". Really, I did not understand what ex...
2006 Oct 31
0
6266620 mi2cv shouldn''t #include <note.h>
Author: wesolows Repository: /hg/zfs-crypto/gate Revision: 38b525e0deacf617b34ac0322921cb3424c11a0a Log message: 6266620 mi2cv shouldn''t #include <note.h> 6285975 nightly can lie about the compiler being used for amd64 compilation 6297567 cw is needed for compiler-independence on SPARC Files: update: usr/src/Makefile update: usr/src/Makefile.master update: usr/src/cmd/cfgadm/Makefile update: usr/src/cmd/cmd-ine...
2006 Oct 31
0
6390254 fpc shouldn''t clutter sun4v unix with specialized hypervisor definitions
Author: schwartz Repository: /hg/zfs-crypto/gate Revision: f5f3bfec5aa8a6e68f91ded399aa52be0424cd76 Log message: 6390254 fpc shouldn''t clutter sun4v unix with specialized hypervisor definitions 6390258 fpc should use hypervisor versioning APIs when available 6393704 pcitool dumps core with invalid options 6396857 fpc module causes boot-time panic on non-fire pcie hostbridge 6402441 sun4v px driver needs to verify diag g...
2008 Mar 17
1
Shouldn''t should return true?
...ialize(args) blag end def matches?(target) target.should r_f_t(''foo'', ''bar'', ''baz'') #Whoops! Matcher FAILS end end def r_l_t(args) RLT.new(args) end end -- View this message in context: http://www.nabble.com/Shouldn%27t-should-return-true--tp16100539p16100539.html Sent from the rspec-users mailing list archive at Nabble.com.
2005 May 03
2
problem with filters - packets ''slipping'' through them when they shouldn''t
...dev eth1 parent 1: protocol ip prio 2 u32 \ match ip dst 192.168.0.0/24 \ flowid 1:1002 class 1001 recievs the traffic generated by the server class 1002 gets incoming traffic from the internet class 1003 is the default And that''s where my problem is - 1003 shouldn''t get any traffic since (as I think) the above filters should in total match everything and direct it to 1001/2. But there are some packets that go to 1003 and if I delete it, most of the traffic dies (even ping 192.168.0.2 doesn''t work - whats even more wierd, not immediately...
2006 Jun 08
7
The Agile Book Messageboard?
Hello. Where is there an Agile Messageboard? On the first part of the Depot example, a price field shouldn''t be an integer right? (it should be more of a float since a price has decimals) Dominic Son -- Posted via http://www.ruby-forum.com/.
2006 Jan 24
6
[MacOSX] Firefox Not Diplaying Images
Forgive the random question, but for those of you Mac OS X users... Does anyone else have a problem with Firefox 1.5 not displaying pictures/graphics embedded on web pages. Safari doesn''t seem to have a problem with them. For example, my blog appears correctly in Safari, however Firefox drops background images. Clues? Thanks. -- ~~~~~~~~~~~~~~~~~~~ D''Andrew "Dave"
2006 May 26
4
shouldn''t this work? - session[:array_of_objects].delete_if {|x| x.id == params[:id]}
I am saving an array of active record objects (college courses) in the session as session[:course_list]. This is the cart for a registration controller. If a student chooses to delete the course from the list I get the :id as params[:id]. However if I do session[:course_list].delete_if {|x| x.id ==params[:id]} does not work. session[:course_list].delete_at(idx) works. Ocourse to do this I have
2006 Mar 28
11
setting widget attributes
...gets in subclasses like the following. class PersonTable < FXTable def initialize(owner) options = TABLE_COL_SIZEABLE super(owner, nil, 0, options) visibleRows = 5 ... end end visibleRows doesn''t get set. However, if I do this self.visibleRows = 5 then it does. Shouldn''t it work without "self."? -- R. Mark Volkmann Object Computing, Inc.
2013 Aug 27
2
[PATCH] AMD IOMMU: add missing checks
For one we shouldn''t accept IVHD tables specifying IO-APIC IDs beyond the limit we support (MAX_IO_APICS, currently 128). And then we shouldn''t memset() a pointer allocation of which failed. Signed-off-by: Jan Beulich <jbeulich@suse.com> --- a/xen/drivers/passthrough/amd/iommu_acpi.c +++ b/...
2006 Aug 11
2
Shouldn''t CRUD be CRUDS?
With most models, almost always I find myself writing Search/Find actions. When I view a Listing of a model, I want to look at another record or set of records. How nice it would be if I can do a query-by-example while viewing a Listing, or during Show/Edit/Create. Would be nice if Search becomes another act in the scaffolding magic. This wish has been expressed here before. Since then, has