Home
last modified time | relevance | path

Searched refs:cwd (Results 1 – 25 of 111) sorted by relevance

12345

/plugin/shell/
DP0wnyShell.js3 cwd = null; field in P0wnyShell
65 this.cwd = this.getAttribute('cwd');
67 this.updateCwd(this.cwd);
71 this.makeRequest('?feature=userhost', {cwd: this.cwd}, function (response) { property
74 this.updateCwd(atob(response.cwd));
88 this.updatePrompt(this.cwd, promptSpan);
137 this.makeRequest("?feature=shell", {cmd: command, cwd: this.cwd}, function (response) { property
142 this.updateCwd(atob(response.cwd));
163 cwd: this.cwd, property
222 {path: path, file: file, cwd: this.cwd}, property
[all …]
DP0wnyShell.php100 * @param string $cwd The current working directory
103 public function featureShell($cmd, $cwd) argument
110 chdir($cwd);
114 chdir($cwd);
118 chdir($cwd);
142 * @param string $cwd The current working directory
146 public function featureHint($fileName, $cwd, $type) argument
148 chdir($cwd);
191 * @param string $cwd current working directory
194 public function featureUpload($path, $file, $cwd) argument
[all …]
Dadmin.php16 $cwd = hsc(realpath(DOKU_INC));
20 printf('<p0wny-shell cwd="%s" backend="%s"></p0wny-shell>',$cwd, $backend);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
DProcessHandler.php44 private $cwd; variable in Monolog\\Handler\\ProcessHandler
63 …* @param string|null $cwd "Current working directory" (CWD) for the process to …
66 …tion __construct(string $command, $level = Logger::DEBUG, bool $bubble = true, ?string $cwd = null) argument
71 if ($cwd === '') {
78 $this->cwd = $cwd;
116 … $this->process = proc_open($this->command, static::DESCRIPTOR_SPEC, $this->pipes, $this->cwd);
/plugin/jplayer/vendor/symfony/process/
DProcessBuilder.php27 private $cwd; variable in Symfony\\Component\\Process\\ProcessBuilder
106 * @param string|null $cwd The working directory
110 public function setWorkingDirectory($cwd) argument
112 $this->cwd = $cwd;
266 …$process = new Process($arguments, $this->cwd, $this->env, $this->input, $this->timeout, $this->op…
DPhpProcess.php29 …* @param string|null $cwd The working directory or null to use the working dir of the current …
34 …public function __construct($script, $cwd = null, array $env = null, $timeout = 60, array $options… argument
53 parent::__construct($php, $cwd, $env, $script, $timeout, $options);
DProcess.php54 private $cwd; variable in Symfony\\Component\\Process\\Process
136 …* @param string|null $cwd The working directory or null to use the working dir of the c…
144 …public function __construct($commandline, $cwd = null, array $env = null, $input = null, $timeout … argument
151 $this->cwd = $cwd;
157 … if (null === $this->cwd && (\defined('ZEND_THREAD_SAFE') || '\\' === \DIRECTORY_SEPARATOR)) {
158 $this->cwd = getcwd();
335 if (!is_dir($this->cwd)) {
339 … @proc_open($commandline, $descriptors, $this->processPipes->pipes, $this->cwd, $envPairs, $this->…
1087 if (null === $this->cwd) {
1093 return $this->cwd;
[all …]
/plugin/asciidocjs/node_modules/jake/lib/
Dloader.js93 let cwd = process.cwd();
116 if (cwd === process.cwd()) {
125 let origCwd = process.cwd();
/plugin/combo/vendor/symfony/process/
H A DPhpProcess.php30 …* @param string|null $cwd The working directory or null to use the working dir of the current …
35 …public function __construct(string $script, ?string $cwd = null, ?array $env = null, int $timeout … argument
50 parent::__construct($php, $cwd, $env, $script, $timeout);
56 …public static function fromShellCommandline(string $command, ?string $cwd = null, ?array $env = nu… argument
H A DProcess.php57 private $cwd; variable in Symfony\\Component\\Process\\Process
137 …* @param string|null $cwd The working directory or null to use the working dir of the curre…
144 …public function __construct(array $command, ?string $cwd = null, ?array $env = null, $input = null… argument
151 $this->cwd = $cwd;
157 … if (null === $this->cwd && (\defined('ZEND_THREAD_SAFE') || '\\' === \DIRECTORY_SEPARATOR)) {
158 $this->cwd = getcwd();
184 …* @param string|null $cwd The working directory or null to use the working dir of the curre…
193 …public static function fromShellCommandline(string $command, ?string $cwd = null, ?array $env = nu… argument
195 $process = new static([], $cwd, $env, $input, $timeout);
349 if (!is_dir($this->cwd)) {
[all …]
/plugin/asciidocjs/node_modules/resolve/test/resolver/nested_symlinks/mylib/
Dsync.js1 var a = require.resolve('buffer/').replace(process.cwd(), '$CWD');
2 var b = require('resolve').sync('buffer/', { preserveSymlinks: true }).replace(process.cwd(), '$CWD…
3 var c = require('resolve').sync('buffer/', { preserveSymlinks: false }).replace(process.cwd(), '$CW…
Dasync.js1 var a = require.resolve('buffer/').replace(process.cwd(), '$CWD');
18 b = result.replace(process.cwd(), '$CWD');
23 c = result.replace(process.cwd(), '$CWD');
/plugin/asciidocjs/node_modules/yargs/build/lib/utils/
Dapply-extends.js4 export function applyExtends(config, cwd, mergeExtends, _shim) { argument
21 pathToDefault = getPathToDefaultConfig(cwd, config.extends);
41 function getPathToDefaultConfig(cwd, pathToExtend) { argument
42 return shim.path.resolve(cwd, pathToExtend);
/plugin/asciidocjs/node_modules/jake/test/integration/
Dfile_task.js58 let data = fs.readFileSync(process.cwd() + '/foo/concat.txt');
96 let data = fs.readFileSync(process.cwd() + '/foo/from-prereq.txt');
111 let data = fs.readFileSync(process.cwd() + '/foo/from-prereq.txt');
120 let data = fs.readFileSync(process.cwd() + '/foo/bar/baz/bamf.txt');
136 let data = fs.readFileSync(process.cwd() + '/foo/output3.txt');
Drule.js86 let data = fs.readFileSync(process.cwd() + '/tmp');
101 data = fs.readFileSync(process.cwd() + '/tmp_p');
116 data = fs.readFileSync(process.cwd() + '/tmp_pf');
133 data = fs.readFileSync(process.cwd() + '/tmp_ns');
149 data = fs.readFileSync(process.cwd() + '/tmp_cr');
/plugin/asciidocjs/node_modules/yargs/lib/platform-shims/
Desm.mjs22 __dirname = process.cwd();
41 mainFilename: mainFilename || process.cwd(),
52 cwd: process.cwd,
/plugin/gitbacked/lib/
DGit.php305 $cwd = $this->repo_path;
318 $resource = proc_open($command, $descriptorspec, $pipes, $cwd, null);
333 …throw new Exception($this->handle_command_error($this->repo_path, $cwd, $command, $status, $error_…
335 $this->handle_command_success($this->repo_path, $cwd, $command);
395 protected function handle_command_error($repo_path, $cwd, $command, $status, $error_message) { argument
397 $this->plugin->notify_command_error($repo_path, $cwd, $command, $status, $error_message);
411 protected function handle_command_success($repo_path, $cwd, $command) { argument
413 $this->plugin->notify_command_success($repo_path, $cwd, $command);
/plugin/asciidocjs/node_modules/yargs/helpers/
Dindex.js9 applyExtends: (config, cwd, mergeExtends) => { argument
10 return applyExtends(config, cwd, mergeExtends, cjsPlatformShim);
Dhelpers.mjs6 const applyExtends = (config, cwd, mergeExtends) => { argument
7 return _applyExtends(config, cwd, mergeExtends, shim);
/plugin/findologicxmlexport/vendor/hoa/protocol/
DProtocol.php108 $cwd =
115 $cwd . DS,
123 dirname($cwd) . DS,
/plugin/asciidocjs/node_modules/yargs/
Dyargs4 Yargs.applyExtends = (config, cwd, mergeExtends) => {
5 return applyExtends(config, cwd, mergeExtends, cjsPlatformShim)
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/
DGitblame.php84 $cwd = getcwd();
98 chdir($cwd);
DHgblame.php85 $cwd = getcwd();
117 chdir($cwd);
/plugin/jplayer/vendor/happyworm/jplayer/
DGruntfile.js104 …{expand: true, cwd: 'src/skin/blue.monday/', src: ['image/**', 'mustache/**'], dest: 'dist/skin/bl… property
105 …{expand: true, cwd: 'src/skin/pink.flag/', src: ['image/**', 'mustache/**'], dest: 'dist/skin/pink… property
/plugin/asciidocjs/node_modules/yargs-parser/build/lib/
Dindex.js30 cwd: process.cwd, property

12345