Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 12 of 12) sorted by relevance

/rocksdb-6.9/tools/
Dbenchmark.sh191 eval $cmd
202 eval $cmd
246 eval $cmd
255 cmd="{ \
270 eval $cmd
329 eval $cmd
348 eval $cmd
362 eval $cmd
376 eval $cmd
393 eval $cmd
[all …]
Dwrite_stress_runner.py33 cmd = './write_stress --runtime_sec=' + \
37 cmd = cmd + ' --db=' + args.db
43 cmd = cmd + ' --destroy_db=false'
45 cmd = cmd + ' --delete_obsolete_files_with_fullscan=true'
47 cmd = cmd + ' --low_open_files_mode=true'
51 cmd))
53 child = subprocess.Popen([cmd], shell=True)
Dbenchmark_leveldb.sh85 cmd="./db_bench --benchmarks=fillseq \
93 eval $cmd
101 cmd="./db_bench --benchmarks=$operation \
108 echo $cmd | tee $output_dir/${out_name}
109 eval $cmd
116 cmd="./db_bench --benchmarks=readrandom \
122 echo $cmd | tee $output_dir/${out_name}
123 eval $cmd
131 cmd="./db_bench --benchmarks=readwhile${operation} \
139 echo $cmd | tee $output_dir/${out_name}
[all …]
Dldb_test.py27 cmd = kwargs.get("args")
28 if cmd is None:
29 cmd = popenargs[0]
31 (retcode, cmd))
34 def run_err_null(cmd): argument
470 cmd = "dump --path=%s"
471 self.assertRunOKFull((cmd)
490 cmd = "dump --path=%s"
491 self.assertRunOKFull((cmd)
510 cmd = "dump --path=%s"
[all …]
Ddb_crashtest.py277 cmd = ['./db_stress'] + [
283 return cmd
301 cmd = gen_cmd(dict(
305 child = subprocess.Popen(cmd, stderr=subprocess.PIPE)
307 % (child.pid, ' '.join(cmd)))
421 cmd = gen_cmd(dict(list(cmd_params.items())
425 print("Running:" + ' '.join(cmd) + "\n") # noqa: E999 T25377293 Grandfathered in
427 popen = subprocess.Popen(cmd, stdout=subprocess.PIPE,
Dregression_test.sh270 cmd="($db_bench_cmd || db_bench_error=1) | tee -a $RESULT_PATH/$1"
272 echo $cmd
273 eval $cmd
391 cmd="$SSH $REMOTE_USER_AT_HOST '$1'"
393 cmd="$1"
395 eval "$cmd"
Dldb_cmd.cc164 parsed_params.cmd = cmdTokens[0]; in InitFromCmdLineArgs()
177 if (parsed_params.cmd == GetCommand::Name()) { in SelectCommand()
180 } else if (parsed_params.cmd == PutCommand::Name()) { in SelectCommand()
186 } else if (parsed_params.cmd == ScanCommand::Name()) { in SelectCommand()
189 } else if (parsed_params.cmd == DeleteCommand::Name()) { in SelectCommand()
258 } else if (parsed_params.cmd == RepairCommand::Name()) { in SelectCommand()
261 } else if (parsed_params.cmd == BackupCommand::Name()) { in SelectCommand()
2804 const std::string& cmd = tokens[0]; in DoCommand() local
2806 if (cmd == HELP_CMD) { in DoCommand()
2815 } else if (cmd == PUT_CMD && tokens.size() == 3) { in DoCommand()
[all …]
/rocksdb-6.9/build_tools/
Dprecommit_checker.py58 def shell(self, cmd, path=os.getcwd()): argument
63 self.log.log("%s> %s" % (path, cmd))
64 status = subprocess.call("cd %s; %s" % (path, cmd), shell=True,
70 def GetOutput(self, cmd, path=os.getcwd()): argument
75 self.log.log("%s> %s" % (path, cmd))
76 status, out = commands.getstatusoutput(cmd)
121 for cmd in cmds:
124 cmd = cmd.replace("J=1", "J=%s" % os.environ["J"])
125 cmd = cmd.replace("make ", "make -j%s " % os.environ["J"])
127 status = self.shell(cmd, ".")
[all …]
Dgnu_parallel2382 my $cmd = "";
2396 $cmd .= "wait;";
2398 print `$cmd`;
2404 my $cmd="";
2412 $cmd .= "wait;";
2414 print `$cmd`;
6213 my $cmd;
6218 $cmd = "@command";
6860 my $cmd = $1;
6906 my @cmd = @command;
[all …]
/rocksdb-6.9/port/
Dstack_trace.cc58 char cmd[kLineMax]; in PrintStackTraceLine() local
59 snprintf(cmd, kLineMax, "addr2line %p -e %s -f -C 2>&1", frame, executable); in PrintStackTraceLine()
60 auto f = popen(cmd, "r"); in PrintStackTraceLine()
81 char cmd[kLineMax];
82 snprintf(cmd, kLineMax, "xcrun atos %p -p %d 2>&1", frame, pid);
83 auto f = popen(cmd, "r");
/rocksdb-6.9/
Dappveyor.yml74 …- cmd: 7z a build-failed.zip %APPVEYOR_BUILD_FOLDER%\build\ && appveyor PushArtifact build-failed.…
/rocksdb-6.9/include/rocksdb/utilities/
Dldb_cmd.h62 std::string cmd; member