search for: leash

Displaying 11 results from an estimated 11 matches for "leash".

Did you mean: least
2005 May 11
6
Need help with GSSAPI authentication
Client: Windows XP pro, in an AD 2003 domain, running SecureCRT 4.1.11. I've also got MIT Kerberos for Windows installed on the client, and Leash shows that my tickets ARE forwardable. Server: Solaris 8 Sparc server, with MIT Kerberos (krb5-1.4.1), and OpenSSH 4.0p1. I've created two AD accounts, and extracted keys mapped to "host/hostname.domainname.com at REALM.COM" and "ssh/hostname.domainname.com at REALM.COM" a...
2006 Nov 02
11
ZFS and memory usage.
ZFS works really stable on FreeBSD, but I''m biggest problem is how to control ZFS memory usage. I''ve no idea how to leash that beast. FreeBSD has a backpresure mechanism. I can register my function so it will be called when there are memory problems, which I do. I using it for ARC layer. Even with this in place under heavy load the kernel panics, because memory with KM_SLEEP cannot be allocated. Here are some statis...
2005 Mar 09
0
Setup Help - Apache/FastCGI/subdirectory
...ing up a Rails app as I intend, using some combination of .htaccess rewrite rules and "routes.rb" entries. Problem is, I haven''t found two that are exactly alike and I''m not convinced I''m getting the whole picture. I feel like a dog tangled up in its own leash. Can anyone point me to instructions they have used successfully to set up a Rails app under Apache/FastCGI in a subdirectory? Thank you! Tom ------------------------------------------------------------------------ ---- Tom Donovan Hawthorn School District 73 M...
2004 Jul 12
1
Sort of OT: Recommended USB handset for use with iaxComm?
One of my coworkers needs to get a softphone set up to my Asterisk system; he's a Linux user, so it looks like about the only IAX2 option is iaxComm. For ease of use (he'll be using this a fair bit), I'm recommending that he get a USB handset; I'm just having trouble finding any US retailers for them. :) Could someone recommend a USB handset that's compatible with iaxComm
2008 Aug 22
0
acts_as_leashed, my first 'plug-in'
...p a front-end guy without your authorization? I do! So I wrote a (ridiculous) line of code that triggers an external ''alert'' application that "calls home" in case of need.. I put this in a tiny plug-in, what do you think? Probably a gem version would make sense.. http://leash.mekdigital.com/ ;) --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe fro...
2006 May 25
2
mongrel_cluster 0.1.3 prerelease
Hi y''all, A prerelease of mongrel_cluster 0.1.3 is available for testing with the Mongrel 0.3.13 prerelease. This release contains bug fixes and adds a Ruby script for managing all applications on a server with a single command. To install: gem install mongrel_cluster --source=http:// railsmachine.rubyforge.org/releases/ Changes: * Suppress output from mongrel_rails. * Added a
2013 Apr 26
0
[LLVMdev] Proposal for new Legalization framework
> To me, the expanding of regular IR will achieve nearly the same result as > building a lower level IR. Remember that we basically already have a lower level IR consisting of basic blocks of MachineInstrs at the moment.To an extent this has already proven itself capable of modelling targets, and making it a first-class IR might be a reasonable amount of work (certainly easier than
2013 Apr 26
2
[LLVMdev] Proposal for new Legalization framework
...r a long time. As Chris said, a stable high-level IR is very important for front-end and optimization developers, but back-end developers need to tweak it to make it work on their architectures. My conclusion is that we might need to formalize a low level IR, based on MIs, and allow it a very loose leash. Why formalize if we already have it working, you ask? I think that even a feeble formalization will improve how code is shared among different back-ends. It'll also be an easy route for a new legalization framework without having to deprecate much code, and without having to leave too much ol...
2007 Oct 12
13
How to maintain Form State between Postback ?
Hi all, I''ve trying to look for answers for my problem but so far couldn''t find one, hopefully you can tell me what to do. This problem is so ubiquitous to Web Development, pertaining the fact that the web is stateless, i.e. how to maintain form''s state between postback. Basically, I have a form with some validations run for some of the fields, whenever the user submit
2013 Apr 26
2
[LLVMdev] Proposal for new Legalization framework
Hi Evan, To me, the expanding of regular IR will achieve nearly the same result as building a lower level IR. I think it will be as good as the alternate proposals without any negatives but of course I can't prove that, it's just an opinion. The big advantage is that this work can proceed incrementally even today. A new low level IR and redesign can easily miss the mark; suffering from
2013 Jun 19
14
[PATCH 2/4] time: add a notifier chain for when the system time is stepped
From: David Vrabel <david.vrabel@citrix.com> The high resolution timer code gets notified of step changes to the system time with clock_was_set() or clock_was_set_delayed() calls. If other parts of the kernel require similar notification there is no clear place to hook into. Add a clock_was_set atomic notifier chain (clock_was_set_notifier_list) and call this in place of clock_was_set().