Home
last modified time | relevance | path

Searched refs:execCmd (Results 1 – 25 of 515) sorted by relevance

12345678910>>...21

/dports/sysutils/nomad/nomad-1.1.0/drivers/shared/executor/
H A Dexecutor_linux_test.go129 execCmd.Cmd = "/bin/ls"
170 execCmd.Cmd = "/bin/ls"
175 execCmd.ModePID = "private"
176 execCmd.ModeIPC = "private"
262 execCmd.Cmd = "/bin/bash"
317 execCmd.Cmd = "/bin/bash"
455 execCmd.Cmd = "kill"
463 execCmd.Cmd = "echo"
503 execCmd.User = c.user
562 execCmd.Cmd = "/bin/bash"
[all …]
H A Dexecutor_test.go140 execCmd.Cmd = invalid
141 execCmd.Args = []string{"1"}
160 execCmd.Cmd = "/bin/sh"
184 execCmd.Cmd = "/bin/echo"
221 execCmd.Cmd = "/bin/sh"
260 execCmd.Cmd = "/bin/sleep"
315 execCmd.Cmd = "/bin/sleep"
345 execCmd.Cmd = "/bin/sleep"
346 execCmd.Args = []string{"100"}
522 execCmd.Cmd = "/bin/sleep"
[all …]
/dports/security/keepassxc/keepassxc-2.6.6/tests/
H A DTestCli.cpp272 execCmd(addCmd, in testAdd()
305 execCmd(addCmd, in testAdd()
330 execCmd(addCmd, in testAdd()
662 execCmd(dicewareCmd, {"diceware"}); in testDiceware()
716 execCmd(editCmd, in testEdit()
764 execCmd(editCmd, in testEdit()
981 execCmd(generateCmd, parameters); in testGenerate()
1419 execCmd(mergeCmd, in testMergeWithKeys()
1833 execCmd(listCmd, {"ls"}); in testOpen()
1851 execCmd(helpCmd, {"help"}); in testHelp()
[all …]
/dports/databases/pgadmin3/pgadmin3-1.22.2/pgadmin/frm/
H A Dplugins.cpp257 wxString execCmd = command; in StartDialog() local
298 execCmd.Replace(wxT("$$HOSTNAME"), wxEmptyString); in StartDialog()
300 execCmd.Replace(wxT("$$PORT"), wxEmptyString); in StartDialog()
301 execCmd.Replace(wxT("$$SSLMODE"), wxEmptyString); in StartDialog()
309 execCmd.Replace(wxT("$$OBJECTNAME"), wxT("*")); in StartDialog()
330 execCmd.Replace(wxT("$$SCHEMA"), wxEmptyString); in StartDialog()
336 execCmd.Replace(wxT("$$TABLE"), obj->GetName()); in StartDialog()
341 execCmd.Replace(wxT("$$TABLE"), wxEmptyString); in StartDialog()
344 execCmd.Replace(wxT("$$BINDIR"), loadPath); in StartDialog()
345 execCmd.Replace(wxT("$$WORKINGDIR"), wxGetCwd()); in StartDialog()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/nomad/drivers/shared/executor/
H A Dexecutor_test.go140 execCmd.Cmd = invalid
141 execCmd.Args = []string{"1"}
160 execCmd.Cmd = "/bin/date"
184 execCmd.Cmd = "/bin/echo"
221 execCmd.Cmd = "/bin/sh"
260 execCmd.Cmd = "/bin/sleep"
315 execCmd.Cmd = "/bin/sleep"
345 execCmd.Cmd = "/bin/sleep"
346 execCmd.Args = []string{"100"}
497 execCmd.Cmd = "/bin/sleep"
[all …]
H A Dexecutor_linux_test.go97 execCmd.Cmd = "/bin/ls"
101 execCmd.ResourceLimits = true
177 execCmd.Cmd = "/bin/bash"
181 execCmd.ResourceLimits = true
230 execCmd.Cmd = "/bin/bash"
234 execCmd.ResourceLimits = true
368 execCmd.Cmd = "kill"
376 execCmd.Cmd = "echo"
417 execCmd.User = c.user
419 execCmd.Cmd = "/bin/bash"
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/docker/integration-cli/
H A Dutils.go21 func runCommandWithOutput(execCmd *exec.Cmd) (string, int, error) {
22 result := cmd.RunCmd(transformCmd(execCmd))
28 result := cmd.RunCmd(transformCmd(execCmd))
33 func runCommand(execCmd *exec.Cmd) (exitCode int, err error) {
34 result := cmd.RunCmd(transformCmd(execCmd))
39 func transformCmd(execCmd *exec.Cmd) cmd.Cmd {
41 Command: execCmd.Args,
42 Env: execCmd.Env,
43 Dir: execCmd.Dir,
44 Stdin: execCmd.Stdin,
[all …]
/dports/security/py-fail2ban/fail2ban-0.11.2/fail2ban/tests/
H A Dfail2banclienttestcase.py504 self.execCmd(SUCCESS, (), "-h")
508 self.execCmd(SUCCESS, (), "-V")
653 self.execCmd(FAILED, (),
659 self.execCmd(FAILED, (),
666 self.execCmd(FAILED, (),
673 self.execCmd(FAILED, (), "-s")
683 self.execCmd(FAILED, startparams,
689 self.execCmd(FAILED, startparams,
712 self.execCmd(SUCCESS, (), "-h")
748 self.execCmd(FAILED, (),
[all …]
/dports/devel/hub/hub-2.14.2/cmd/
H A Dcmd_test.go10 execCmd := New("vim --noplugin")
11 assert.Equal(t, "vim --noplugin", execCmd.Name)
12 assert.Equal(t, 0, len(execCmd.Args))
16 execCmd := New("git")
17 execCmd.WithArg("command").WithArg("--amend").WithArg("-m").WithArg(`""`)
18 assert.Equal(t, "git", execCmd.Name)
19 assert.Equal(t, 4, len(execCmd.Args))
/dports/devel/gammaray/GammaRay-2.11.3/launcher/core/injector/
H A Dgdbinjector.cpp80 execCmd("set confirm off"); in setupGdb()
82 execCmd("set auto-solib-add off"); in setupGdb()
105 execCmd("break " + function); in addFunctionBreakpoint()
111 execCmd("break " + method + "()"); in addMethodBreakpoint()
113 execCmd("break " + method); in addMethodBreakpoint()
119 execCmd("delete"); in clearBreakpoints()
124 execCmd("backtrace", false); in printBacktrace()
130 execCmd("sha " + library); in loadSymbols()
H A Dlldbinjector.cpp95 execCmd("script lldb.debugger.SetAsync(False)"); in disableConfirmations()
97 execCmd("settings set auto-confirm true"); in disableConfirmations()
99 execCmd("settings set interpreter.prompt-on-quit false"); in disableConfirmations()
104 execCmd("breakpoint set -b " + function); in addFunctionBreakpoint()
109 execCmd("breakpoint set -M " + method); in addMethodBreakpoint()
114 execCmd("breakpoint delete"); in clearBreakpoints()
119 execCmd("thread backtrace"); in printBacktrace()
/dports/security/vuls/vuls-0.13.7/vendor/go.uber.org/tools/lib/parallel/
H A Dexec_cmd.go28 type execCmd struct { struct
32 func newExecCmd(cmd *exec.Cmd) *execCmd {
33 return &execCmd{cmd}
36 func (e *execCmd) Kill() error { argument
43 func (e *execCmd) String() string { argument
/dports/www/eden/eden-0.7.4/vendor/github.com/cloudfoundry/bosh-utils/system/
H A Dexec_cmd_runner.go64 execCmd := newExecCmd(cmd.Name, cmd.Args...)
67 execCmd.Stdin = cmd.Stdin
71 execCmd.Stdout = cmd.Stdout
75 execCmd.Stderr = cmd.Stderr
78 execCmd.Dir = cmd.WorkingDir
92 execCmd.Env = env
94 return execCmd
/dports/security/klee/klee-2.2/scripts/
H A Dklee-control21 def execCmd(pid, gdbCmd, opts):
76 execCmd(pid, 'bt', opts)
78 execCmd(pid, "p dumpStates = 1", opts)
80 execCmd(pid, "p dumpPTree = 1", opts)
82 execCmd(pid, 'p stop_forking()', opts)
84 execCmd(pid, 'p halt_execution()', opts)
86 res = execCmd(pid, 'p timerTicks', opts)
/dports/net/bosh-cli/bosh-cli-5.5.0/vendor/github.com/cloudfoundry/bosh-utils/system/
H A Dexec_cmd_runner.go67 execCmd := newExecCmd(cmd.Name, cmd.Args...)
70 execCmd.Stdin = cmd.Stdin
74 execCmd.Stdout = cmd.Stdout
78 execCmd.Stderr = cmd.Stderr
81 execCmd.Dir = cmd.WorkingDir
91 execCmd.Env = mergeEnv(env, cmd.Env)
93 return execCmd
/dports/misc/concourse/concourse-6.7.2/vendor/code.cloudfoundry.org/credhub-cli/vendor/github.com/cloudfoundry/bosh-utils/system/
H A Dexec_cmd_runner.go67 execCmd := newExecCmd(cmd.Name, cmd.Args...)
70 execCmd.Stdin = cmd.Stdin
74 execCmd.Stdout = cmd.Stdout
78 execCmd.Stderr = cmd.Stderr
81 execCmd.Dir = cmd.WorkingDir
91 execCmd.Env = mergeEnv(env, cmd.Env)
93 return execCmd
/dports/deskutils/pet/pet-0.4.0/cmd/
H A Dexec.go15 var execCmd = &cobra.Command{ var
45 RootCmd.AddCommand(execCmd)
46 execCmd.Flags().BoolVarP(&config.Flag.Color, "color", "", false,
48 execCmd.Flags().StringVarP(&config.Flag.Query, "query", "q", "",
50 execCmd.Flags().StringVarP(&config.Flag.FilterTag, "tag", "t", "",
52 execCmd.Flags().BoolVarP(&config.Flag.Command, "command", "c", false,
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/docker/moby-20.10.2/integration-cli/
H A Dutils_test.go25 func runCommandWithOutput(execCmd *exec.Cmd) (string, int, error) {
26 result := icmd.RunCmd(transformCmd(execCmd))
31 func transformCmd(execCmd *exec.Cmd) icmd.Cmd {
33 Command: execCmd.Args,
34 Env: execCmd.Env,
35 Dir: execCmd.Dir,
36 Stdin: execCmd.Stdin,
37 Stdout: execCmd.Stdout,
/dports/security/vault/vault-1.8.2/vendor/github.com/docker/docker/integration-cli/
H A Dutils_test.go25 func runCommandWithOutput(execCmd *exec.Cmd) (string, int, error) {
26 result := icmd.RunCmd(transformCmd(execCmd))
31 func transformCmd(execCmd *exec.Cmd) icmd.Cmd {
33 Command: execCmd.Args,
34 Env: execCmd.Env,
35 Dir: execCmd.Dir,
36 Stdin: execCmd.Stdin,
37 Stdout: execCmd.Stdout,
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/docker/docker/integration-cli/
H A Dutils_test.go25 func runCommandWithOutput(execCmd *exec.Cmd) (string, int, error) {
26 result := icmd.RunCmd(transformCmd(execCmd))
31 func transformCmd(execCmd *exec.Cmd) icmd.Cmd {
33 Command: execCmd.Args,
34 Env: execCmd.Env,
35 Dir: execCmd.Dir,
36 Stdin: execCmd.Stdin,
37 Stdout: execCmd.Stdout,
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/docker/docker/integration-cli/
H A Dutils_test.go25 func runCommandWithOutput(execCmd *exec.Cmd) (string, int, error) {
26 result := icmd.RunCmd(transformCmd(execCmd))
31 func transformCmd(execCmd *exec.Cmd) icmd.Cmd {
33 Command: execCmd.Args,
34 Env: execCmd.Env,
35 Dir: execCmd.Dir,
36 Stdin: execCmd.Stdin,
37 Stdout: execCmd.Stdout,
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/docker/docker/integration-cli/
H A Dutils_test.go25 func runCommandWithOutput(execCmd *exec.Cmd) (string, int, error) {
26 result := icmd.RunCmd(transformCmd(execCmd))
31 func transformCmd(execCmd *exec.Cmd) icmd.Cmd {
33 Command: execCmd.Args,
34 Env: execCmd.Env,
35 Dir: execCmd.Dir,
36 Stdin: execCmd.Stdin,
37 Stdout: execCmd.Stdout,
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/docker/docker/integration-cli/
H A Dutils_test.go25 func runCommandWithOutput(execCmd *exec.Cmd) (string, int, error) {
26 result := icmd.RunCmd(transformCmd(execCmd))
31 func transformCmd(execCmd *exec.Cmd) icmd.Cmd {
33 Command: execCmd.Args,
34 Env: execCmd.Env,
35 Dir: execCmd.Dir,
36 Stdin: execCmd.Stdin,
37 Stdout: execCmd.Stdout,
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/docker/docker/integration-cli/
H A Dutils_test.go25 func runCommandWithOutput(execCmd *exec.Cmd) (string, int, error) {
26 result := icmd.RunCmd(transformCmd(execCmd))
31 func transformCmd(execCmd *exec.Cmd) icmd.Cmd {
33 Command: execCmd.Args,
34 Env: execCmd.Env,
35 Dir: execCmd.Dir,
36 Stdin: execCmd.Stdin,
37 Stdout: execCmd.Stdout,
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/docker/docker/integration-cli/
H A Dutils_test.go25 func runCommandWithOutput(execCmd *exec.Cmd) (string, int, error) {
26 result := icmd.RunCmd(transformCmd(execCmd))
31 func transformCmd(execCmd *exec.Cmd) icmd.Cmd {
33 Command: execCmd.Args,
34 Env: execCmd.Env,
35 Dir: execCmd.Dir,
36 Stdin: execCmd.Stdin,
37 Stdout: execCmd.Stdout,

12345678910>>...21