similar to: OT: IBM and Dell rack

Displaying 20 results from an estimated 500 matches similar to: "OT: IBM and Dell rack"

2010 Feb 25
3
rack configurator?
Hey folks, Does anyone know of a rack configurator that runs on CentOS? It does not have to even be very fancy - immediately I'm just looking for an easy way to keep track of what is in my racks, and being able to have a visual of it. Maybe juggle stuff around. Bonus if it does power calculations based on model numbers and so on - or data I punch in for each model. But really right
2017 May 24
11
System Time Source
One of our STEM interns recently observed that there are inexpensive clocks that sync via radio to standard time services.? This begged a question about why every computer would not have a radio module to receive time.? Our senior staff did not have a good answer or if time from such a radio module would be supported by the operating system. When I was a student, such questions would have earned
2017 May 24
2
System Time Source
Warren, one slight correction on an other wise nicely written bit of info: The time transmitted from WWV is not Mountain Time. Even though the WWV transmitter farm is located in the Mountain time zone, the signals are transmitted as "Coordinated Universal time", UTC, or 'Zulu' time. Here, you can listen to a recording made at the transmitter site for the 5Mhz signal:
2013 Aug 12
2
Passenger-Rack error 500: no such file to load -- rack
I have a puppetmaster running within passenger+rack. It has been running properly for almost a year and decided to stop working on the weekend. Now I''m getting the Purple "Ruby (Rack) application could not be started" screen with Error: no such file to load -- rack Application: /data1/rack/puppetmaster The backtrace is uninspiring. Snippets include:
2012 Oct 18
4
Rack env rack.multiprocess true with single worker
Hi, unicorn unconditionally sets rack.multiprocess to true in the Rack environment. The Rack spec [0] says the following about the variable: "true if an equivalent application object may be simultaneously invoked by another process, false otherwise." When unicorn is running with a single worker this does not hold so what do you think about setting the variable to false when only a
2009 Mar 29
5
Rack::Lint::LintError with latest camping and rack
I''m trying to use Camping from Magnus'' repo (1.9.300) but running the blog.rb example (or anything for that matter) gives me Rack::Lint::LintError at / Content-Length header was 0, but should be 548 Ruby C:/ruby-1.8.7/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/lint.rb: in assert, line 16 Web GET localhost/ There are no errors on the camping output so I suspect something has
2011 Sep 02
4
You have already activated rack 1.3.2, but your Gemfile requires rack 1.2.3.
Hi, guys, I got the below error message when i typed this command in terminal "rackup config.ru" , the file config.ru is rails ''s configuration file. You have already activated rack 1.3.2, but your Gemfile requires rack 1.2.3. Consider using bundle exec. (Gem::LoadError) So, how should i do , thanks a lot. -- You received this message because you are subscribed to the
2006 Nov 24
2
[LLVMdev] Byte code portability (was Re: libstdc++ as bytecode, and compiling C++ to C)
Reid Spencer schrieb: > Hi Philipp, > > On Fri, 2006-11-24 at 20:09 +0100, Philipp Klaus Krause wrote: >> Reid Spencer schrieb: >> >>> Note that C and LLVM types are *not* the same things (despite the >>> similar names). We are in the process of making this abundantly clear. >>> The LLVM IR will soon use names like i8, i16, i32, and i64 (signless
2013 Apr 22
0
Using rack-offline with the asset pipeline (images not cached)
Hi, I''ve been trying to incorporate https://github.com/wycats/rack-offline into my app. I followed the example in the readme that shows how to cache application.css and application.js files and that works. When I go to my browser in production mode, though, and turn off my network connection, then reload the app, the app is reloaded successfully, except for the images. I think I
2013 Jul 22
0
How to handle exception that is generated in rack middleware before it reach rails app?
I know that we can use config.exception_app to set up custom exception handling and also use rescue_from. However, I have an issue that there is malformed request (testing generated request) that caused Rails Rack middleware to throw an exception when Rack''s parse_query method. Here is the detail of the problem:
2010 Nov 07
0
Getting Rack::Session::Abstract::SessionHash error with rails edge
I am getting Rack::Session::Abstract::SessionHash error with rails edge when I start server. Code works fine with rails 3.0.1 . What''s the fix? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from
2014 Mar 27
0
Rack middleware for shared connection pools?
I have a Rails app that makes connections to other DBs. There may be multiple users connecting to multiple DBs. The app makes a database connection as part of an action. However, I noticed a problem: there's too many DB connections remaining open, which is causing the DB to not have enough connections remaining for new connections. So the answer is using a shared connection pool.
2012 Aug 26
0
Undefined method `signed' for #<Rack::Test::CookieJar>
Hello, In my integration test, I want to simulate the user cookie is set. I store an authentication token as a stored cookie. So in my test. I write: cookies.signed[:authentication_token] = user.authentication_token Unforunately, it sends me a Undefined method `signed'' for #<Rack::Test::CookieJar> error. What should I do? -- You received this message because you are
2012 May 31
1
Rack Middleware or after filter
Hi All I need an solution that i should catch response and based on some conditions i have to modify response body and send back to client. I have tried with a Middleware and got a solution.Can i use a Middleware or simply one after_filter. On performance wise which is best.Or is there any other ways to do it. thanks in advance. -- You received this
2012 Feb 08
0
do I mount rack apps in Rails (3.1) for faster APIs?
Hey, I''m not sure I fully appreciate the best use(s) for Rack apps (e.g., Sinatra apps) in a Rails (3.1) application... Scenario: I have in mind a bunch of RESTful controller actions linked to models -- all for providing an API. Approach 1: handle each resource from its own mounted Rack app: + ''Rails 3 in Action'' advises mounted rack apps for Rails APIs because they
2009 May 28
0
Cross-Domain Data with Rack and Rails -- http://bit.ly/BNw6T
A big theme from RailsConf a few weeks ago was the arrival of Rack in Rails as of version 2.3. The first topic that seemed to pique developer interest was Rails Metal -- especially the speed bump of using a lighter stack for high volume URIs. While this is a useful upgrade to Rails, the architectural shift provided by Rack brings new flexibility. Read more about the value of mounting Rack
2012 Feb 01
0
How can I force Rails 3.2 to reload mounted rack app per request in development mode?
How can I force Rails 3.2 to reload mounted rack app per request in development mode? I have mounted grape <https://github.com/intridea/grape> app this way mount API2, :at => "/api2" However rails doesn''t reflect changes in app without web server restart. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk"
2009 Mar 23
0
OldRails Rack handler added to Unicorn
Hi all, I''ve committed support to Unicorn for old versions of Rails that didn''t support Rack. I think it could be useful for Mongrel 2 (or any other server) as well: http://git.bogomips.org/cgit/unicorn.git/commit/?id=0b095ea72 [1] or just fetch/clone git://git.bogomips.org/unicorn.git The bin/unicorn_rails code is itself a mess, but cleaning it up is on my ever growing
2010 Nov 08
2
Getting Rack::Session::Abstract::SessionHash error with rails edge
I am getting Rack::Session::Abstract::SessionHash error with rails edge when I start server. Code works fine with rails 3.0.1 . What''s the fix? Thank you all. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send email to rubyonrails-core@googlegroups.com. To unsubscribe from this group, send
2010 Sep 03
1
Rack gem in not getting unpacked
Hi All, my server is having rack gems as: rack (1.2.1, 1.1.0, 1.0.1, 1.0.0) when i run the following command in my project/vendor/gems folder: gem unpack rack-1.0.0 It shows the following error message: Error: Gem ''rack-1.0.0'' not installed. Any idea on this?? Thanks, Saurabh -- Posted via http://www.ruby-forum.com/. -- You received this message because you are