Home
last modified time | relevance | path

Searched full:monkey (Results 1 – 25 of 318) sorted by relevance

12345678910>>...13

/external/dagger2/javatests/dagger/producers/internal/
DProducersTest.java42 ListenableFuture<String> future = Futures.immediateFuture("monkey"); in createFutureProduced_success()
45 assertThat(producedFuture.get().get()).isEqualTo("monkey"); in createFutureProduced_success()
49 ListenableFuture<String> future = Futures.immediateFailedFuture(new RuntimeException("monkey")); in createFutureProduced_failure()
55 .isEqualTo("monkey"); in createFutureProduced_failure()
87 ListenableFuture<String> future = Futures.immediateFuture("monkey"); in createFutureSingletonSet_success()
90 assertThat(setFuture.get()).containsExactly("monkey"); in createFutureSingletonSet_success()
94 ListenableFuture<String> future = Futures.immediateFailedFuture(new RuntimeException("monkey")); in createFutureSingletonSet_failure()
101 assertThat(e).hasCauseThat().hasMessageThat().isEqualTo("monkey"); in createFutureSingletonSet_failure()
110 Futures.immediateFuture("monkey"), Futures.immediateFuture("gorilla"))); in allAsSet_success()
112 assertThat(future.get()).containsExactly("monkey", "gorilla"); in allAsSet_success()
[all …]
/external/dagger2/javatests/dagger/producers/monitoring/internal/
DMonitorsTest.java78 doThrow(new RuntimeException("monkey")) in singleMonitor_throwingProductionComponentMonitorFactory()
105 doThrow(new RuntimeException("monkey")) in singleMonitor_throwingProductionComponentMonitor()
148 Throwable t = new RuntimeException("monkey"); in singleMonitor_normalProducerMonitorFailure()
165 doThrow(new RuntimeException("monkey")).when(mockProducerMonitor).requested(); in singleMonitor_throwingProducerMonitorSuccess()
166 doThrow(new RuntimeException("monkey")).when(mockProducerMonitor).methodStarting(); in singleMonitor_throwingProducerMonitorSuccess()
167 doThrow(new RuntimeException("monkey")).when(mockProducerMonitor).methodFinished(); in singleMonitor_throwingProducerMonitorSuccess()
168 doThrow(new RuntimeException("monkey")) in singleMonitor_throwingProducerMonitorSuccess()
194 doThrow(new RuntimeException("monkey")).when(mockProducerMonitor).requested(); in singleMonitor_throwingProducerMonitorFailure()
195 doThrow(new RuntimeException("monkey")).when(mockProducerMonitor).methodStarting(); in singleMonitor_throwingProducerMonitorFailure()
196 doThrow(new RuntimeException("monkey")).when(mockProducerMonitor).methodFinished(); in singleMonitor_throwingProducerMonitorFailure()
[all …]
/external/dagger2/javatests/dagger/producers/monitoring/
DTimingRecordersTest.java88 .thenThrow(new RuntimeException("monkey")); in singleRecorder_throwingProductionComponentTimingRecorderFactory()
117 .thenThrow(new RuntimeException("monkey")); in singleRecorder_throwingProductionComponentTimingRecorder()
153 Throwable t = new RuntimeException("monkey"); in singleRecorder_normalProducerTimingRecorderFailure()
166 doThrow(new RuntimeException("monkey")) in singleRecorder_throwingProducerTimingRecorderSuccess()
169 doThrow(new RuntimeException("monkey")) in singleRecorder_throwingProducerTimingRecorderSuccess()
205 .thenThrow(new RuntimeException("monkey")); in multipleRecorders_throwingProductionComponentTimingRecorderFactories()
207 .thenThrow(new RuntimeException("monkey")); in multipleRecorders_throwingProductionComponentTimingRecorderFactories()
209 .thenThrow(new RuntimeException("monkey")); in multipleRecorders_throwingProductionComponentTimingRecorderFactories()
253 .thenThrow(new RuntimeException("monkey")); in multipleRecorders_someThrowingProductionComponentTimingRecorderFactories()
255 .thenThrow(new RuntimeException("monkey")); in multipleRecorders_someThrowingProductionComponentTimingRecorderFactories()
[all …]
/external/cronet/build/android/pylib/local/device/
Dlocal_device_monkey_test_run.py19 return 'monkey'
29 # Chrome crashes are not always caught by Monkey test runner.
110 # TODO(mikecase): Run Monkey test concurrently on each attached device.
119 cmd = ['monkey',
134 # Kill the monkey test process on the device. If you manually
135 # interrupt the test run, this will prevent the monkey test from
137 device.KillAll('com.android.commands.monkey')
/external/angle/build/android/pylib/local/device/
Dlocal_device_monkey_test_run.py19 return 'monkey'
29 # Chrome crashes are not always caught by Monkey test runner.
110 # TODO(mikecase): Run Monkey test concurrently on each attached device.
119 cmd = ['monkey',
134 # Kill the monkey test process on the device. If you manually
135 # interrupt the test run, this will prevent the monkey test from
137 device.KillAll('com.android.commands.monkey')
/external/icing/icing/monkey_test/
Dicing-monkey-test-runner.cc15 #include "icing/monkey_test/icing-monkey-test-runner.h"
33 #include "icing/monkey_test/monkey-test-generators.h"
34 #include "icing/monkey_test/monkey-test-util.h"
35 #include "icing/monkey_test/monkey-tokenized-document.h"
183 ICING_LOG(INFO) << "Monkey test runner started with seed: " << config_.seed; in IcingMonkeyTestRunner()
184 std::string dir = GetTestTempDir() + "/icing/monkey"; in IcingMonkeyTestRunner()
232 ICING_LOG(INFO) << "Monkey updating schema"; in DoUpdateSchema()
269 ICING_LOG(INFO) << "Monkey getting namespace: " << document.name_space in DoGet()
294 ICING_LOG(INFO) << "Monkey getting all namespaces"; in DoGetAllNamespaces()
303 ICING_LOG(INFO) << "Monkey document generated, namespace: " in DoPut()
[all …]
Dmonkey-test-generators.h26 #include "icing/monkey_test/monkey-test-common-words.h"
27 #include "icing/monkey_test/monkey-test-util.h"
28 #include "icing/monkey_test/monkey-tokenized-document.h"
36 // A random schema generator used for monkey testing.
80 // A random document generator used for monkey testing.
Dicing-monkey-test-runner.h25 #include "icing/monkey_test/monkey-test-generators.h"
26 #include "icing/monkey_test/monkey-test-util.h"
40 // This function must and should only be called before running the monkey
44 // Run the monkey test with num operations.
/external/toybox/tests/
Dtop.test11 testing "-d invalid input" "top -b -d monkey -n1 2>&1 >/dev/null" "top: Not a number 'monkey'\n" ""…
13 testing "-d suffix trailing junk" "top -b -d 1monkey -n1 2>&1 >/dev/null" "top: Unknown suffix 'mon…
/external/dagger2/javatests/dagger/producers/
DProducedTest.java37 assertThat(Produced.successful("monkey").get()).isEqualTo("monkey"); in successfulProduced()
42 RuntimeException cause = new RuntimeException("monkey"); in failedProduced()
52 RuntimeException e1 = new RuntimeException("monkey"); in producedEquivalence()
/external/volley/core/src/test/java/com/android/volley/toolbox/
DAndroidAuthenticatorTest.java87 mAuthenticator.invalidateAuthToken("monkey"); in invalidateAuthToken()
88 verify(mAccountManager).invalidateAuthToken("cooltype", "monkey"); in invalidateAuthToken()
94 bundle.putString(AccountManager.KEY_AUTHTOKEN, "monkey"); in goodToken()
100 Assert.assertEquals("monkey", mAuthenticator.getAuthToken()); in goodToken()
/external/python/setuptools/setuptools/
D__init__.py21 from . import monkey
85 _Command = monkey.get_unpatched(distutils.core.Command)
180 # Apply monkey patches
181 monkey.patch_all()
Dlogging.py4 from . import monkey
25 monkey.patch_func(set_threshold, distutils.log, 'set_threshold')
/external/icu/icu4c/source/test/intltest/
Drbbimonkeytest.h28 // RBBI Monkey Test. Run break iterators against randomly generated strings, compare results with
31 // The monkey test can be run with parameters, e.g.
45 // Hook to old tests that use monkey impl to get expected data.
74 // The following classes are internal to the RBBI Monkey Test implementation.
174 // class RBBIMonkeyImpl holds (some indirectly) everything associated with running a monkey
/external/cronet/third_party/icu/source/test/intltest/
Drbbimonkeytest.h28 // RBBI Monkey Test. Run break iterators against randomly generated strings, compare results with
31 // The monkey test can be run with parameters, e.g.
45 // Hook to old tests that use monkey impl to get expected data.
74 // The following classes are internal to the RBBI Monkey Test implementation.
174 // class RBBIMonkeyImpl holds (some indirectly) everything associated with running a monkey
/external/dagger2/javatests/dagger/functional/producers/
DProducerFactoryTest.java122 strFuture.set("monkey"); in successMonitor()
123 assertThat(producer.get().get()).isEqualTo("monkey"); in successMonitor()
124 order.verify(monitor).succeeded("monkey"); in successMonitor()
151 Throwable t = new RuntimeException("monkey"); in failureMonitor()
/external/clang/test/Frontend/
Dwarning-options.cpp1 // RUN: %clang_cc1 -Wmonkey -Wno-monkey -Wno-unused-command-line-arguments \
4 // CHECK: unknown warning option '-Wno-monkey'
/external/cronet/build/android/pylib/base/
Dtest_instance_factory.py9 from pylib.monkey import monkey_test_instance
23 if args.command == 'monkey':
/external/tensorflow/tensorflow/lite/java/demo/app/src/main/assets/
Dlabels_imagenet_slim.txt378 proboscis monkey
381 howler monkey
383 spider monkey
384 squirrel monkey
Dlabels_mobilenet_quant_v1_224.txt378 proboscis monkey
381 howler monkey
383 spider monkey
384 squirrel monkey
/external/tensorflow/tensorflow/lite/java/ovic/src/testdata/
Dlabels.txt378 proboscis monkey
381 howler monkey
383 spider monkey
384 squirrel monkey
/external/tensorflow/tensorflow/lite/examples/ios/simple/data/
Dlabels.txt378 proboscis monkey
381 howler monkey
383 spider monkey
384 squirrel monkey
/external/tensorflow/tensorflow/lite/examples/ios/camera/data/
Dlabels.txt378 proboscis monkey
381 howler monkey
383 spider monkey
384 squirrel monkey
/external/dagger2/javatests/dagger/functional/producers/multibindings/
DMultibindingTest.java88 assertThat(Iterables.getOnlyElement(failures).getCause()).hasMessageThat().isEqualTo("monkey"); in setBindingOfProducedWithFailures()
134 assertThat(e.getCause()).hasMessageThat().isEqualTo("monkey"); in mapBindingWithFailures()
152 assertThat(e.getCause()).hasMessageThat().isEqualTo("monkey"); in mapOfProducerBindingWithFailures()
170 assertThat(e.getCause()).hasMessageThat().isEqualTo("monkey"); in mapOfProducedBindingWithFailures()
/external/angle/build/android/pylib/base/
Dtest_instance_factory.py10 from pylib.monkey import monkey_test_instance
27 if args.command == 'monkey':

12345678910>>...13