Home
last modified time | relevance | path

Searched refs:_LOCKS (Results 1 – 5 of 5) sorted by relevance

/dports/devel/p5-File-Util/File-Util-4.161950/lib/File/Util/
H A DDefinitions.pm14 $EBCDIC $DIRSPLIT $_LOCKS $NEEDS_BINMODE
69 $_LOCKS = { };
123 $_LOCKS->{IGNORE} = sub { $_[2] };
124 $_LOCKS->{ZERO} = sub { 0 };
125 $_LOCKS->{UNDEF} = sub { };
126 $_LOCKS->{NOBLOCKEX} = sub {
129 $_LOCKS->{NOBLOCKSH} = sub {
132 $_LOCKS->{BLOCKEX} = sub {
135 $_LOCKS->{BLOCKSH} = sub {
138 $_LOCKS->{WARN} = sub {
[all …]
/dports/security/py-certbot/certbot-1.22.0/certbot/
H A Dutil.py68 _LOCKS: Dict[str, lock.LockFile] = {} variable
153 if not _LOCKS: # this is the first lock to be released at exit
156 if dir_path not in _LOCKS:
157 _LOCKS[dir_path] = lock.lock_dir(dir_path)
161 for dir_lock in _LOCKS.values():
167 _LOCKS.clear()
/dports/security/py-certbot/certbot-1.22.0/tests/
H A Dutil_test.py131 self.assertEqual(len(util._LOCKS), 2) # pylint: disable=protected-access
/dports/security/py-certbot-nginx/certbot-nginx-1.22.0/tests/
H A Dconfigurator_test.py71 certbot_util._LOCKS[server_root].release() # pylint: disable=protected-access
/dports/devel/p5-File-Util/File-Util-4.161950/lib/File/
H A DUtil.pm1680 my $fh = &{ $_LOCKS->{ shift @policy } }( $this, $file, $fh, $opts );