HomeSort by relevance Sort by last modified time
    Searched defs:Executor (Results 1 - 25 of 61) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/java/util/concurrent/
Executor.java 42 * use, scheduling, etc. An {@code Executor} is normally used
48 * Executor executor = anExecutor();
49 * executor.execute(new RunnableTask1());
50 * executor.execute(new RunnableTask2());
53 * However, the {@code Executor} interface does not strictly require
54 * that execution be asynchronous. In the simplest case, an executor
58 * class DirectExecutor implements Executor {
65 * caller's thread. The executor below spawns a new thread for each
69 * class ThreadPerTaskExecutor implements Executor {
    [all...]
  /build/kati/
exec.go 25 // Executor manages execution of makefile rules.
26 type Executor struct {
46 func (ex *Executor) makeJobs(n *DepNode, neededBy *job) error {
116 func (ex *Executor) reportStats() {
128 // ExecutorOpt is an option for Executor.
133 // NewExecutor creates new Executor.
134 func NewExecutor(opt *ExecutorOpt) (*Executor, error) {
145 ex := &Executor{
155 func (ex *Executor) Exec(g *DepGraph, targets []string) error {
exec.cc 45 class Executor {
47 explicit Executor(Evaluator* ev) : ce_(ev), num_commands_(0) {
142 unique_ptr<Executor> executor(new Executor(ev));
144 executor->ExecNode(root, NULL);
146 if (executor->Count() == 0) {
  /external/libcxx/utils/libcxx/test/
executor.py 17 class Executor(object):
21 Executor objects are shared between python processes in `lit -jN`.
34 class LocalExecutor(Executor):
47 class PrefixExecutor(Executor):
48 """Prefix an executor with some other command wrapper.
65 class PostfixExecutor(Executor):
66 """Postfix an executor with some args."""
90 class RemoteExecutor(Executor):
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/test/
executor.py 17 class Executor(object):
21 Executor objects are shared between python processes in `lit -jN`.
34 class LocalExecutor(Executor):
47 class PrefixExecutor(Executor):
48 """Prefix an executor with some other command wrapper.
65 class PostfixExecutor(Executor):
66 """Postfix an executor with some args."""
90 class RemoteExecutor(Executor):
  /external/tensorflow/tensorflow/core/common_runtime/
executor.h 33 // Executor runs a graph computation.
37 // Executor* executor;
38 // TF_CHECK_OK(NewSimpleExecutor(my_device, graph, &executor));
41 // TF_CHECK_OK(executor->Run({ExecutorOpts, rendezvous, nullptr}));
45 // Multiple threads can call Executor::Run concurrently.
46 class Executor {
48 virtual ~Executor() {}
71 // RunAsync() is provided a "call_frame", if the executor is used
123 // Creates an Executor that computes the given "graph"
    [all...]
  /external/lisa/libs/utils/
executor.py 43 class Executor():
47 An executor can be configured to run a set of workloads (wloads) in each
52 After the workloads have been run, the Executor object's `experiments`
200 self._log = logging.getLogger('Executor')
  /art/tools/dexfuzz/src/dexfuzz/executors/
Executor.java 27 public abstract class Executor {
44 protected Executor(String name, int timeout, BaseListener listener, Architecture architecture,
169 * Executor subclasses need to override this, to construct their arguments for dalvikvm
209 * Fuzzer.checkForArchitectureSplit() will use this determine the architecture of the Executor.
224 * performing hard verification on the target, we need to check if the Executor detected
  /external/gemmlowp/meta/
test_gemm_correctness.cc 73 typedef GemmExecutorPackLHSCacheFriendly<> Executor;
75 typedef GemmExecutorPackRHSCacheFriendly<> Executor;
379 Gemm<Executor, ParamsRowMajor, 2, 4, 8>(params_row);
389 Gemm<Executor, ParamsColumnMajor, 2, 4, 8>(params_col);
399 Gemm<Executor, ParamsRowMajorAsFloat, 2, 4, 8>(params_row_f);
409 Gemm<Executor, ParamsColumnMajorAsFloat, 2, 4, 8>(params_col_f);
419 Gemm<Executor, ParamsRowMajorAsInt32, 2, 4, 8>(params_row_i32);
430 Gemm<Executor, ParamsColumnMajorAsInt32, 2, 4, 8>(params_col_i32);
450 MultiThreadGemm<Context, Executor, ParamsRowMajor, 2, 4, 8>(&context,
461 MultiThreadGemm<Context, Executor, ParamsColumnMajor, 2, 4, 8>
    [all...]
  /external/python/cpython3/Lib/concurrent/futures/
_base.py 446 Should only be used by Executor implementations and unit tests.
455 This method should be called by Executor implementations before
486 Should only be used by Executor implementations and unit tests.
499 Should only be used by Executor implementations and unit tests.
509 class Executor(object):
565 """Clean-up the resources associated with the Executor.
573 executor have been reclaimed.
  /external/python/futures/concurrent/futures/
_base.py 522 Should only be used by Executor implementations and unit tests.
531 This method should be called by Executor implementations before
562 Should only be used by Executor implementations and unit tests.
576 Should only be used by Executor implementations and unit tests.
590 Should only be used by Executor implementations and unit tests.
594 class Executor(object):
650 """Clean-up the resources associated with the Executor.
658 executor have been reclaimed.
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
parallel_cpu_executable.cc 102 // Executor manages the concurrent execution of 'functions' for instructions
104 class Executor {
106 Executor(const HloInstructionMap<ComputeFunctionType>& functions,
145 // Arguments passed into Executor.
163 Status Executor::Run() {
257 void Executor::Schedule(HloInstruction* instruction, int64* partition_buffers,
290 int64* Executor::GetPartitionBuffers(
301 bool Executor::HasParallelTasks(HloInstruction* instruction) {
309 const void** Executor::GetOperandBuffers(HloInstruction* instruction) {
315 // TODO(b/27458679) Avoid dynamic allocations in Executor
    [all...]
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensoroperations/
TestSensorOperation.java 67 private final Executor mExecutor;
77 public interface Executor {
85 public TestSensorOperation(TestSensorEnvironment environment, Executor executor) {
86 this(environment, executor, null /* handler */);
94 Executor executor,
97 mExecutor = executor;
237 Executor executor = new Executor() local
265 Executor executor = new Executor() { local
353 Executor executor = new Executor() { local
400 Executor executor = new Executor() { local
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 28 * Executor is responsible for modeling the effects of a JVM instruction on a frame.
32 public class Executor implements Opcode {
40 public Executor(ClassPool classPool, ConstPool constPool) {
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-exec/1.1/
commons-exec-1.1.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 
  /prebuilts/tools/common/m2/repository/com/cedarsoftware/java-util/1.24.0/
java-util-1.24.0.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
backport-util-concurrent-3.1.jar 
ant-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/
backport-util-concurrent-3.1.jar 
  /external/guice/extensions/struts2/lib/
javassist.jar 
ant-1.6.5.jar 
  /external/robolectric/v1/lib/main/
javassist-3.14.0-GA.jar 
  /prebuilts/tools/common/m2/repository/org/javassist/javassist/3.19.0-GA/
javassist-3.19.0-GA.jar 
  /prebuilts/tools/common/ant/
ant.jar 

Completed in 263 milliseconds

1 2 3