HomeSort by relevance Sort by last modified time
    Searched refs:COMMAND (Results 1 - 25 of 468) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/
check-ojluni-files 21 COMMAND='diff <(for i in $(openjdk_java_files); do echo "\$$i"; done | sort) '
22 COMMAND=${COMMAND}'<( find ojluni/src/main/java -type f | grep '\''\.java$$'\'' | sort )'
25 # executing the bash command inside it) as to read the openjdk_java_files
29 check_openjdk_java_files: ; /bin/bash -c "$COMMAND"
  /external/tensorflow/tensorflow/contrib/makefile/
build_with_docker.sh 28 COMMAND="tensorflow/contrib/makefile/build_all_linux.sh"
30 echo "Running ${COMMAND} inside Android docker image..."
31 tensorflow/tools/ci_build/ci_build.sh android ${COMMAND}
  /external/tensorflow/tensorflow/tools/ci_build/builds/
configured 21 # Usage: configured <CONTAINER_TYPE> [--disable-gcp] <COMMAND>
31 COMMAND=("$@")
42 ${SCRIPT_DIR}/print_build_info.sh ${CONTAINER_TYPE} ${COMMAND[@]}
44 ${COMMAND[@]}
  /prebuilts/go/darwin-x86/src/syscall/
mksysnum_plan9.sh 6 COMMAND="mksysnum_plan9.sh $@"
9 // $COMMAND
10 // MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT
  /prebuilts/go/linux-x86/src/syscall/
mksysnum_plan9.sh 6 COMMAND="mksysnum_plan9.sh $@"
9 // $COMMAND
10 // MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Crypt.java 37 static public class Encrypter extends Dicttool.Command {
38 public static final String COMMAND = "encrypt";
45 return COMMAND + " <src_filename> <dst_filename>: Encrypts a file";
54 static public class Decrypter extends Dicttool.Command {
55 public static final String COMMAND = "decrypt";
62 return COMMAND + " <src_filename> <dst_filename>: Decrypts a file";
Compress.java 38 static public class Compressor extends Dicttool.Command {
39 public static final String COMMAND = "compress";
46 return COMMAND + " <src_filename> <dst_filename>: "
53 throw new RuntimeException("Too many arguments for command " + COMMAND);
67 static public class Uncompressor extends Dicttool.Command {
68 public static final String COMMAND = "uncompress";
75 return COMMAND + " <src_filename> <dst_filename>: "
82 throw new RuntimeException("Too many arguments for command " + COMMAND);
    [all...]
Package.java 33 static public class Packager extends Dicttool.Command {
34 public static final String COMMAND = "package";
43 return COMMAND + " <src_filename> <dst_filename>: Package a file for distribution";
49 throw new RuntimeException("Too many/too few arguments for command " + COMMAND);
65 static public class Unpackager extends Dicttool.Command {
66 public static final String COMMAND = "unpackage";
73 return COMMAND + " <src_filename> <dst_filename>: Detects how a file is packaged and\n"
80 throw new RuntimeException("Too many/too few arguments for command " + COMMAND);
    [all...]
  /tools/test/connectivity/tools/lab/metrics/
name_metric.py 21 COMMAND = 'hostname'
33 # Run shell command
34 result = self._shell.run(self.COMMAND).stdout
num_users_metric.py 22 COMMAND = 'users | wc -w'
36 result = self._shell.run(self.COMMAND).stdout
time_metric.py 22 COMMAND = "date"
34 # Run shell command
35 result = self._shell.run(self.COMMAND).stdout
time_sync_metric.py 22 COMMAND = 'timedatectl status | grep synchronized'
34 # Run shell command
35 result = self._shell.run(self.COMMAND).stdout
disk_metric.py 21 # This command calls df /var/tmp and ignores line 1.
22 COMMAND = "df /var/tmp | tail -n +2"
39 # Run shell command
40 result = self._shell.run(self.COMMAND)
  /frameworks/base/core/tests/systemproperties/
run_core_systemproperties_test.sh 19 COMMAND="adb install -r $TESTAPP"
20 echo $COMMAND
21 $COMMAND
  /external/cn-cbor/test/
CMakeLists.txt 15 add_test ( NAME ${name} COMMAND ${name}_test )
31 COMMAND env MallocStackLogging=true ./cn-test >new.out
32 COMMAND diff new.out expected.out
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
StatCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.*;
19 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
43 final Command COMMAND = new Command(CommandNames.STAT, EMPTY);
45 commandHandler.handleCommand(COMMAND, session);
61 final Command COMMAND = new Command(CommandNames.STAT, array(PATHNAME));
    [all...]
AborCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.*;
19 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
36 final Command COMMAND = new Command(CommandNames.ABOR, EMPTY);
41 commandHandler.handleCommand(COMMAND, session);
51 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
QuitCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.*;
19 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
36 final Command COMMAND = new Command(CommandNames.QUIT, EMPTY);
42 commandHandler.handleCommand(COMMAND, session);
52 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
StatCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.CommandNames;
20 import org.mockftpserver.core.command.ReplyCodes;
21 import org.mockftpserver.stub.command.StatCommandHandler;
45 final Command COMMAND = new Command(CommandNames.STAT, EMPTY);
47 commandHandler.handleCommand(COMMAND, session);
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest_uninitialized_test.py 39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_')
54 def TestExitCodeAndOutput(command):
55 """Runs the given command and verifies its exit code and output."""
57 # Verifies that 'command' exits with code 1.
58 p = gtest_test_utils.Subprocess(command)
66 TestExitCodeAndOutput(COMMAND)
  /external/googletest/googletest/test/
gtest_uninitialized_test.py 39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_')
54 def TestExitCodeAndOutput(command):
55 """Runs the given command and verifies its exit code and output."""
57 # Verifies that 'command' exits with code 1.
58 p = gtest_test_utils.Subprocess(command)
66 TestExitCodeAndOutput(COMMAND)
  /external/protobuf/gtest/test/
gtest_uninitialized_test.py 39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_')
54 def TestExitCodeAndOutput(command):
55 """Runs the given command and verifies its exit code and output."""
57 # Verifies that 'command' exits with code 1.
58 p = gtest_test_utils.Subprocess(command)
66 TestExitCodeAndOutput(COMMAND)
  /external/v8/testing/gtest/test/
gtest_uninitialized_test.py 39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_')
54 def TestExitCodeAndOutput(command):
55 """Runs the given command and verifies its exit code and output."""
57 # Verifies that 'command' exits with code 1.
58 p = gtest_test_utils.Subprocess(command)
66 TestExitCodeAndOutput(COMMAND)
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_uninitialized_test.py 39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_')
54 def TestExitCodeAndOutput(command):
55 """Runs the given command and verifies its exit code and output."""
57 # Verifies that 'command' exits with code 1.
58 p = gtest_test_utils.Subprocess(command)
66 TestExitCodeAndOutput(COMMAND)
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest_uninitialized_test.py 39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_')
54 def TestExitCodeAndOutput(command):
55 """Runs the given command and verifies its exit code and output."""
57 # Verifies that 'command' exits with code 1.
58 p = gtest_test_utils.Subprocess(command)
66 TestExitCodeAndOutput(COMMAND)

Completed in 363 milliseconds

1 2 3 4 5 6 7 8 91011>>