Searched refs:lockFile (Results 1 – 9 of 9) sorted by relevance
/third_party/node/deps/npm/node_modules/lockfile/test/ |
D | basic.js | 2 var lockFile = require('../lockfile.js') variable 10 lockFile.filetime = 'mtime' 13 try { lockFile.unlockSync('basic-lock') } catch (er) {} 14 try { lockFile.unlockSync('sync-lock') } catch (er) {} 15 try { lockFile.unlockSync('never-forget') } catch (er) {} 16 try { lockFile.unlockSync('stale-lock') } catch (er) {} 17 try { lockFile.unlockSync('watch-lock') } catch (er) {} 18 try { lockFile.unlockSync('retry-lock') } catch (er) {} 19 try { lockFile.unlockSync('contentious-lock') } catch (er) {} 20 try { lockFile.unlockSync('stale-wait-lock') } catch (er) {} [all …]
|
D | stale-contention.js | 2 var lockFile = require('../') variable 13 lockFile.filetime = 'mtime' 35 lockFile.lock(lock, { stale: 100000 }, function (er) {
|
D | retry-time.js | 11 var lockFile = require('../') variable 41 lockFile.lock('file.lock', {
|
/third_party/node/deps/npm/node_modules/lockfile/ |
D | README.md | 9 var lockFile = require('lockfile') 12 lockFile.lock('some-file.lock', opts, function (er) { 19 lockFile.unlock('some-file.lock', function (er) { 34 ### lockFile.lock(path, [opts], cb) 38 ### lockFile.lockSync(path, [opts]) 42 ### lockFile.unlock(path, cb) 46 ### lockFile.unlockSync(path) 50 ### lockFile.check(path, [opts], cb) 56 ### lockFile.checkSync(path, [opts]) 67 Only used by lockFile.lock. Poll for `opts.wait` ms. If the lock is
|
/third_party/node/deps/npm/node_modules/lockfile/test/fixtures/ |
D | child.js | 1 var lockFile = require('../../lockfile.js') variable 3 lockFile.lock('never-forget', function () {})
|
D | bad-child.js | 1 var lockFile = require('../../lockfile.js') variable 3 lockFile.lockSync('never-forget')
|
/third_party/flutter/flutter/packages/flutter_goldens_client/lib/ |
D | client.dart | 181 final File lockFile = flutterRoot.childFile(fs.path.join('bin', 'cache', 'goldens.lockfile')); 182 await lockFile.create(recursive: true); 183 _lock = await lockFile.open(mode: io.FileMode.write);
|
/third_party/node/deps/npm/lib/ |
D | audit.js | 183 const lockFile = shrinkwrap ? 'npm-shrinkwrap.json' : 'package-lock.json' 184 …const err = new Error(`Errors were found in your ${lockFile}, run npm install to fix them.\n …
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/ |
D | cache.dart | 144 final File lockFile = 147 _lock = lockFile.openSync(mode: FileMode.write); 151 '${lockFile.path}');
|