search for: locker

Displaying 20 results from an estimated 104 matches for "locker".

Did you mean: locked
2013 Nov 10
1
light-locker 1.1.0 released
light-locker 1.1.0 is now available for download from https://github.com/the-cavalry/light-locker/releases/download/v1.1.0/light-locker-1.1.0.tar.bz2 SHA1: df4c542449f457710628d19f14148afd43034a94 MD5: 0e643658fdde4dc0aefdc3c9c10898ca What is light locker? ===================== light-locker is a simple l...
2008 Apr 18
2
synchronize mongrel cluster
...imistic and pessimistic locking. I don''t like using optimistic locking, because handling the conflict in my case is a real pain. I tried using pessimistic locking, and I can''t get it to work. This is my controller code: class DoerController < ApplicationController def do Locker.transaction do r = Locker.find(1, :lock => true) sleep 10 r.save! end redirect_to :action => :index end end If I start the do action at the same time on ports 8000, 8001 and 8002 (corresponding to my 3 mongrel servers), they will all finish at the same time. I exp...
2007 Aug 17
2
Help in starting spamassassin
...z9m9z spamd[13032]: spamd: processing message <461628246.59720704082024 at melitta.dk> for root:99 and: Aug 17 14:39:59 z9m9z spamd[13032]: mkdir /root/.spamassassin: Permission denied at /usr/lib/perl5/vendor_perl/5.8.8/Mail/SpamAssassin.pm line 1536 Aug 17 14:39:59 z9m9z spamd[13032]: locker: safe_lock: cannot create tmp lockfile /root/.spamassassin/auto-whitelist.lock.z9m9z.htt-consult.com.13032 for /root/.spamassassin/auto-whitelist.lock: Permission denied Aug 17 14:39:59 z9m9z spamd[13032]: auto-whitelist: open of auto-whitelist file failed: locker: safe_lock: cannot create tmp...
2014 May 12
3
[PATCH v10 03/19] qspinlock: Add pending bit
...an unwanted scenario on virtual machines: 1) VCPU sets the pending bit and start spinning. 2) Pending VCPU gets descheduled. - we have PLE and lock holder isn't running [1] - the hypervisor randomly preempts us 3) Lock holder unlocks while pending VCPU is waiting in queue. 4) Subsequent lockers will see free lock with set pending bit and will loop in trylock's 'for (;;)' - the worst-case is lock starving [2] - PLE can save us from wasting whole timeslice Retry threshold is the easiest solution, regardless of its ugliness [4]. Another minor design flaw is that for...
2014 May 12
3
[PATCH v10 03/19] qspinlock: Add pending bit
...an unwanted scenario on virtual machines: 1) VCPU sets the pending bit and start spinning. 2) Pending VCPU gets descheduled. - we have PLE and lock holder isn't running [1] - the hypervisor randomly preempts us 3) Lock holder unlocks while pending VCPU is waiting in queue. 4) Subsequent lockers will see free lock with set pending bit and will loop in trylock's 'for (;;)' - the worst-case is lock starving [2] - PLE can save us from wasting whole timeslice Retry threshold is the easiest solution, regardless of its ugliness [4]. Another minor design flaw is that for...
1999 Dec 13
3
Comments request to refute arguments about Samba...
...er security holes ? "Think small" is an unlikely reason that I can present to a VP. (not if I want to keep my job) ======================= There has been serious exploration of SAMBA as replacement for Netware by the Systems Group here at UK. Right now, they are testing a "Student Locker" system using SAMBA. It isn't widely in use yet, but results have been promising (I guess). One concern has been the amount of RAM needed for each SAMBA connection. On the test machine, SMB connections are using ~3MB/connection. At that rate, we'd need about 3GB of RAM to accomodate ou...
2023 Jun 05
0
[ANNOUNCE] xorgproto 2023.1
This release introduces a couple of new options for existing extensions: * A new option PresentOptionAsyncMayTear for the Present extension, * A new flag XFixesClientDisconnectFlagForceTerminate to the XFixes XFixesClientDisconnectFlags intended to be used by screen lockers, where the server must exit if the screen locker does. The other changes include various fixes, clarifications and keysym definitions updates: Alan Coopersmith (8): presentproto: Minor typo fixes Remove _X_NONNULL macro gitlab CI: run meson instead of ninja for test &amp...
2005 Mar 22
1
root authorization
...I was able to authorize R to run system command as root using login and password. But, I forgot to turn this function on before installing Bioconductor, so I terminated the process of the installation. Then, I tried to authorize R to run system command as root, I failed to do that because I saw the locker was not open. I am sure my login and password are correct. How can I recover this function? Thanks a lot, Senhua
2010 Jul 19
1
hola
Hola amor! Finalmente llegué a D.C. Ya estoy en el albergue pero el cuarto solo va a ser liberado a la una o tal vez dos de la tarde. Pero no importa al menos ya estoy aqui, ya tomé desayuno que por cierto es horrible. Voy a poder tomar baño y usar un locker por un dolar. Entonces voy a tomar baño guardar mis cosas y salir ya que aqui no hago nada. Cómo fue tu domingo? Cómo está Esteban? El viaje fue bastante tranquilo pero cansativo. Creo que dormí un poco en el aeropuerto. Llegué a eso de las 8:30 en el albergue pq yá estaba cansada del aeropuerto...
2010 Nov 16
23
[PATCH 00/14] PV ticket locks without expanding spinlock
...his allows the structure to remain the same size, but at the cost of halving the max number of CPUs (127 for a 8-bit ticket, and a hard max of 32767 overall). The extra bit (well, two, but one is unused) in indicates whether the lock has gone into "slowpath state", which means one of its lockers has entered its slowpath and has blocked in the hypervisor. This means the current lock-holder needs to make sure it gets kicked out of the hypervisor on unlock. The spinlock remains in slowpath state until the last unlock happens (ie there are no more queued lockers). This code survives for a...
2010 Nov 16
23
[PATCH 00/14] PV ticket locks without expanding spinlock
...his allows the structure to remain the same size, but at the cost of halving the max number of CPUs (127 for a 8-bit ticket, and a hard max of 32767 overall). The extra bit (well, two, but one is unused) in indicates whether the lock has gone into "slowpath state", which means one of its lockers has entered its slowpath and has blocked in the hypervisor. This means the current lock-holder needs to make sure it gets kicked out of the hypervisor on unlock. The spinlock remains in slowpath state until the last unlock happens (ie there are no more queued lockers). This code survives for a...
2010 Nov 16
23
[PATCH 00/14] PV ticket locks without expanding spinlock
...his allows the structure to remain the same size, but at the cost of halving the max number of CPUs (127 for a 8-bit ticket, and a hard max of 32767 overall). The extra bit (well, two, but one is unused) in indicates whether the lock has gone into "slowpath state", which means one of its lockers has entered its slowpath and has blocked in the hypervisor. This means the current lock-holder needs to make sure it gets kicked out of the hypervisor on unlock. The spinlock remains in slowpath state until the last unlock happens (ie there are no more queued lockers). This code survives for a...
2010 Oct 06
2
weird ELF error
...retrieve_new_catalog'' /usr/lib64/ruby/site_ruby/1.8/puppet/configurer.rb:104:in `retrieve_catalog'' /usr/lib64/ruby/site_ruby/1.8/puppet/configurer.rb:142:in `run'' /usr/lib64/ruby/site_ruby/1.8/puppet/agent.rb:53:in `run'' /usr/lib64/ruby/site_ruby/1.8/puppet/agent/locker.rb:21:in `lock'' /usr/lib64/ruby/site_ruby/1.8/puppet/agent.rb:53:in `run'' /usr/lib64/ruby/1.8/sync.rb:230:in `synchronize'' /usr/lib64/ruby/site_ruby/1.8/puppet/agent.rb:53:in `run'' /usr/lib64/ruby/site_ruby/1.8/puppet/agent.rb:134:in `with_client'' /usr/l...
2012 Mar 19
1
ABRT interpretation / guidance needed
...ckup abrt[19023]: saved core dump of pid 19022 (/bin/rpm) to /var/spool/abrt/ccpp-2012-03-19-15:07:10-19022.new/coredump (3825664 bytes) Mar 19 15:07:11 tempbackup abrtd: Directory 'ccpp-2012-03-19-15:07:10-19022' creation detected Mar 19 15:07:11 tempbackup abrtd: Freeing read locks for locker 0x167a: 19022/3079309088 Mar 19 15:07:11 tempbackup abrtd: Freeing read locks for locker 0x167b: 19022/3079309088 Mar 19 15:07:11 tempbackup abrtd: Freeing read locks for locker 0x167c: 19022/3079309088 Mar 19 15:07:20 tempbackup abrtd: Sending an email... Mar 19 15:07:20 tempbackup abrtd: Email...
2012 Feb 16
1
uncaught exception of type NoMethodError: undefined method `<=>'
...08:in `realtime'' /usr/lib/ruby/1.8/puppet/util.rb:179:in `benchmark'' /usr/lib/ruby/1.8/puppet/configurer.rb:120:in `retrieve_and_apply_catalog'' /usr/lib/ruby/1.8/puppet/configurer.rb:151:in `run'' /usr/lib/ruby/1.8/puppet/agent.rb:46 /usr/lib/ruby/1.8/puppet/agent/locker.rb:11:in `lock'' /usr/lib/ruby/1.8/puppet/agent.rb:46 /usr/lib/ruby/1.8/sync.rb:230:in `synchronize'' /usr/lib/ruby/1.8/puppet/agent.rb:46 /usr/lib/ruby/1.8/puppet/agent.rb:110:in `with_client'' /usr/lib/ruby/1.8/puppet/agent.rb:44 /usr/lib/ruby/1.8/puppet/application.rb:172...
2012 Dec 07
2
Help with PuppetDB
...etrieve_catalog'' /usr/lib/ruby/site_ruby/1.8/puppet/configurer.rb:107:in `prepare_and_retrieve_catalog'' /usr/lib/ruby/site_ruby/1.8/puppet/configurer.rb:159:in `run'' /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:45:in `run'' /usr/lib/ruby/site_ruby/1.8/puppet/agent/locker.rb:20:in `lock'' /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:45:in `run'' /usr/lib/ruby/1.8/sync.rb:230:in `synchronize'' /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:45:in `run'' /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:119:in `with_client'' /usr/lib/ruby/...
2013 Sep 09
1
Error 400 on SERVER: Could not find class pentaho for server.test.com
...67:in `retrieve_catalog'' /usr/lib/ruby/vendor_ruby/puppet/configurer.rb:107:in `prepare_and_retrieve_catalog'' /usr/lib/ruby/vendor_ruby/puppet/configurer.rb:159:in `run'' /usr/lib/ruby/vendor_ruby/puppet/agent.rb:45:in `run'' /usr/lib/ruby/vendor_ruby/puppet/agent/locker.rb:20:in `lock'' /usr/lib/ruby/vendor_ruby/puppet/agent.rb:45:in `run'' /usr/lib/ruby/1.8/sync.rb:230:in `synchronize'' /usr/lib/ruby/vendor_ruby/puppet/agent.rb:45:in `run'' /usr/lib/ruby/vendor_ruby/puppet/agent.rb:119:in `with_client'' /usr/lib/ruby/vendor...
2011 Nov 18
5
Puppet on windows: File resource problem
...#39; C:/Ruby187/lib/ruby/site_ruby/1.8/puppet/configurer.rb:120:in `retrieve_and_apply_catalog'' C:/Ruby187/lib/ruby/site_ruby/1.8/puppet/configurer.rb:151:in `run'' C:/Ruby187/lib/ruby/site_ruby/1.8/puppet/agent.rb:39:in `run'' C:/Ruby187/lib/ruby/site_ruby/1.8/puppet/agent/locker.rb:21:in `lock'' C:/Ruby187/lib/ruby/site_ruby/1.8/puppet/agent.rb:39:in `run'' C:/Ruby187/lib/ruby/1.8/sync.rb:230:in `synchronize'' C:/Ruby187/lib/ruby/site_ruby/1.8/puppet/agent.rb:39:in `run'' C:/Ruby187/lib/ruby/site_ruby/1.8/puppet/agent.rb:103:in `with_client&...
2009 Jul 03
1
ZFS / NFS with User and Group
Hi there, As very much a new convert top Opensolaris & similar environments - I''ve been trying to get my head around how ZFS relates to NFS when dealing with user/group permissions. In my case I have set up an Opensolaris system with a zfs pool with sharenfs on. Now, I would like several Linux client to be able to access this share depending on their username, as I''m
1998 May 29
0
Linux auto idle logout & vlock possible security problem
There''s a possible security problem using auto idle logout programs and vt lockers. Try the following: get the pid of your shell, (sleep 10s ; kill -HUP <pid-of-your-shell) & vlock -a after vlock -a, you can''t change the virtual console on a Linux terminal. But if you log in, start vlock -a, enter your password you can change vt... The same happens when an aut...