HomeSort by relevance Sort by last modified time
    Searched full:command (Results 401 - 425 of 12564) sorted by null

<<11121314151617181920>>

  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
PwdCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
56 Command createValidCommand() {
57 return new Command(CommandNames.PWD, [])
QuitCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
49 Command createValidCommand() {
50 return new Command(CommandNames.QUIT, [])
ReinCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
60 Command createValidCommand() {
61 return new Command(CommandNames.REIN, [])
RestCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
45 Command createValidCommand() {
46 return new Command(CommandNames.REST, [])
SiteCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
49 Command createValidCommand() {
50 return new Command(CommandNames.SITE, [])
SmntCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
46 Command createValidCommand() {
47 return new Command(CommandNames.SMNT, [])
StatCommandHandlerText.groovy 1 package org.mockftpserver.fake.command
3 import org.mockftpserver.core.command.Command
4 import org.mockftpserver.core.command.CommandHandler
5 import org.mockftpserver.core.command.CommandNames
6 import org.mockftpserver.core.command.ReplyCodes
48 Command createValidCommand() {
49 return new Command(CommandNames.STAT, [])
StorCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
65 Command createValidCommand() {
66 return new Command(CommandNames.STOR, [FILE])
StouCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
51 // This command always stores a new (unique) file, so this test does not apply
61 Command createValidCommand() {
62 return new Command(CommandNames.STOU, [])
StruCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
45 Command createValidCommand() {
46 return new Command(CommandNames.STRU, [])
SystCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
54 Command createValidCommand() {
55 return new Command(CommandNames.SYST, [])
TypeCommandHandlerTest.groovy 16 package org.mockftpserver.fake.command
18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
20 import org.mockftpserver.core.command.CommandNames
21 import org.mockftpserver.core.command.ReplyCodes
58 Command createValidCommand() {
59 return new Command(CommandNames.TYPE, ['A'])
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
ListCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
19 import org.mockftpserver.core.command.*;
20 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
53 Command command1 = new Command(CommandNames.LIST, array(DIR1));
54 Command command2 = new Command(CommandNames.LIST, EMPTY);
67 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
UserCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.*;
19 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
34 private Command command1;
35 private Command command2;
75 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
80 command1 = new Command(CommandNames.USER, array(USERNAME1));
81 command2 = new Command(CommandNames.USER, array(USERNAME2));
_AbstractStubDataCommandHandlerTest.java 16 package org.mockftpserver.stub.command;
20 import org.mockftpserver.core.command.Command;
21 import org.mockftpserver.core.command.InvocationRecord;
40 private static final Command COMMAND = new Command("command", EMPTY);
41 private static final InvocationRecord INVOCATION_RECORD = new InvocationRecord(COMMAND, DEFAULT_HOST);
69 protected void beforeProcessData(Command c, Session s, InvocationRecord ir) {
    [all...]
  /external/skia/tools/
DumpRecord.h 15 * printing each draw command and run time in microseconds to stdout.
17 * @param timeWithCommand If true, print time next to command, else in
  /external/valgrind/gdbserver_tests/
hginfo.vgtest 1 # test helgrind monitor command
2 # test 'v.info location' monitor command
  /frameworks/base/libs/usb/tests/AccessoryChat/
README.txt 6 accessorychat - A C command-line program that communicates with AccessoryChat.
9 command line program, which will work if run as root on an
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
ProviderExecutor.java 89 public void execute(Runnable command) {
90 Preconditions.checkNotNull(command);
91 mQueue.add(command);
96 public void execute(Runnable command) {
98 Preconditions.checkNotNull(command);
99 mQueue.add(command);
106 final Runnable command = mQueue.take(); local
107 command.run();
  /frameworks/base/tools/aidl/
options.h 15 // This struct is the parsed version of the command line options
31 // takes the inputs from the command line and fills in the Options struct
  /ndk/sources/host-tools/make-3.81/tests/scripts/features/
errors 8 ."command that has a '-' in front of it (and a command that is \n"
9 ."intended to fail) and then a delete command after that is \n"
11 ."command as it is supposed to, then the second command should \n"
14 ."command is given with the -i option instead of the '-' in \n"
15 ."front of the command. They should run the same. ";
58 # command in the target and execute the second which deletes the file "foo"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_msi.py 1 """Tests for distutils.command.bdist_msi."""
16 from distutils.command.bdist_msi import bdist_msi
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_msi.py 1 """Tests for distutils.command.bdist_msi."""
16 from distutils.command.bdist_msi import bdist_msi
  /external/parameter-framework/test/functional-tests/PfwTestCase/Domains/
tDomain_rename.py 79 log.I("command [createDomain]" )
82 assert err == None, "ERROR : command [createDomain] - ERROR while creating domain %s" % (self.domain_name)
83 log.I("command [createDomain] correctly executed")
86 # Initial domains listing using "listDomains" command
88 log.I("command [listDomains]")
90 assert err == None, "INFO : command [listDomains] - ERROR while listing domains"
91 log.I("command [listDomains] correctly executed")
116 log.I("command [renameDomain]")
119 assert err == None, "ERROR : command [renameDomain] - ERROR while renaming domain %s" % (old_name)
120 # Domains listing using "listDomains" command
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ResumeTest.java 37 * JDWP Unit test for ThreadReference.Resume command.
51 * This testcase exercises ThreadReference.Resume command.
54 * command acts according to spec:
55 * <BR>&nbsp;&nbsp; - command does not cause any error if thread is not suspended;
56 * <BR>&nbsp;&nbsp; - command does not resume thread actually if number of suspendings
58 * <BR>&nbsp;&nbsp; - command resumes thread actually if number of suspendings
141 ("\n==> Check that ThreadReference.Resume command does not cause any error if thread is not suspended...");
146 logWriter.println("==> Send ThreadReference.Resume command...");
152 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Resume command") ) {
155 logWriter.println("==> OK - ThreadReference.Resume command without any error!")
    [all...]

Completed in 844 milliseconds

<<11121314151617181920>>