HomeSort by relevance Sort by last modified time
    Searched full:scheduler (Results 26 - 50 of 834) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/autotest/site_utils/
server_manager_actions.py 9 be restarted. For example, scheduler needs to be restarted after a drone is
27 RESTART_SCHEDULER = (server_models.ServerRole.ROLE.SCHEDULER,
28 'sudo service scheduler restart')
30 'sudo service host-scheduler restart')
33 RELOAD_APACHE = (server_models.ServerRole.ROLE.SCHEDULER,
36 STOP_SCHEDULER = (server_models.ServerRole.ROLE.SCHEDULER,
37 'sudo service scheduler stop')
39 'sudo service host-scheduler stop')
47 server_models.ServerRole.ROLE.SCHEDULER: [RESTART_SCHEDULER],
62 server_models.ServerRole.ROLE.SCHEDULER: [STOP_SCHEDULER]
    [all...]
clear.sh 12 declare -a SERVICES=("apache2" "scheduler" "host-scheduler" "shard-client"
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Scheduler.java 26 public abstract class Scheduler {
27 // All methods are core internal methods as Scheduler internals are only used by the GraphRunner.
31 Scheduler(FilterGraph graph) {
SyncRunner.java 33 private Scheduler mScheduler = null;
52 // Create the scheduler
53 if (Scheduler.class.isAssignableFrom(schedulerClass)) {
56 mScheduler = (Scheduler)schedulerConstructor.newInstance(graph);
58 throw new RuntimeException("Scheduler does not have constructor <init>(FilterGraph)!", e);
60 throw new RuntimeException("Could not instantiate the Scheduler instance!", e);
62 throw new RuntimeException("Cannot access Scheduler constructor!", e);
64 throw new RuntimeException("Scheduler constructor threw an exception", e);
66 throw new RuntimeException("Could not instantiate Scheduler", e);
69 throw new IllegalArgumentException("Class provided is not a Scheduler subclass!")
    [all...]
  /external/autotest/site_utils/deploy_autotest/
lab_deploy_helper.py 14 lab_deploy_helper.py (sync,restart,print) (devservers, drones, scheduler)+.
38 """Returns tuple containing the autotest scheduler and list of drones."""
39 autotest_master = CONFIG.get_config_value('scheduler', 'host', type=str,
41 autotest_drones = CONFIG.get_config_value('scheduler', 'drones',
98 if common_util.SCHEDULER in requested_server_set:
110 if common_util.SCHEDULER in requested_server_set:
122 if common_util.SCHEDULER in requested_server_set:
common_util.py 31 SCHEDULER = 'scheduler'
32 VALID_TARGETS = [DEVS, DRONES, SCHEDULER]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractScheduledServiceTest.java 19 import com.google.common.util.concurrent.AbstractScheduledService.Scheduler;
44 volatile Scheduler configuration = Scheduler.newFixedDelaySchedule(0, 10, TimeUnit.MILLISECONDS);
69 @Override protected Scheduler scheduler() { return configuration; } method in class:AbstractScheduledServiceTest.NullService
161 @Override protected Scheduler scheduler() {
162 return Scheduler.newFixedDelaySchedule(0, 1, TimeUnit.MILLISECONDS);
188 @Override protected Scheduler scheduler() {
273 protected Scheduler scheduler() { method in class:AbstractScheduledServiceTest.TestService
351 TestCustomScheduler scheduler = new TestCustomScheduler(); local
424 @Override protected Scheduler scheduler() { method in class:AbstractScheduledServiceTest.SchedulerTest.TestAbstractScheduledCustomService
466 @Override protected Scheduler scheduler() { method in class:TestFailingCustomScheduledService
    [all...]
  /external/llvm/include/llvm/CodeGen/
SchedulerRegistry.h 10 // This file contains the implementation for instruction scheduler function
61 /// reduction list scheduler.
65 /// createBURRListDAGScheduler - This creates a bottom up list scheduler that
71 /// aware list scheduler that make use of latency information to avoid stalls
78 /// aware list scheduler that tries to increase instruction level parallelism
84 /// createFastDAGScheduler - This creates a "fast" scheduler.
89 /// createVLIWDAGScheduler - Scheduler for VLIW targets. This creates top down
90 /// DFA driven list scheduler with clustering heuristic to control
94 /// createDefaultScheduler - This creates an instruction scheduler appropriate
99 /// createDAGLinearizer - This creates a "no-scheduling" scheduler whic
    [all...]
  /external/autotest/scheduler/
rdb_lib.py 8 from autotest_lib.scheduler import rdb
9 from autotest_lib.scheduler import rdb_hosts
10 from autotest_lib.scheduler import rdb_requests
14 # Adapters for scheduler specific objects: Convert job information to a
29 from autotest_lib.scheduler import query_managers
39 """Extract job information from a queue_entry/host-scheduler.
email_manager.py 0 """Scheduler email manager."""
16 CONFIG_SECTION = 'SCHEDULER'
20 """Scheduler email notification manager."""
69 subject = 'Scheduler notifications from ' + socket.gethostname()
host_scheduler.py 8 """Host scheduler.
10 If run as a standalone service, the host scheduler ensures the following:
18 In addition to these guarantees, the host scheduler also confirms that no 2
21 apparent when viewed in the context of the job-scheduler (monitor_db), which
30 it requires, the host scheduler will try to meet the requirement first,
33 scheduler will allocate the rest of duts based on job priority and suite job id.
43 Restart host scheduler if you manually released a host by setting
44 leased=0 in db. This is needed because host scheduler maintains internal
67 from autotest_lib.scheduler import email_manager
68 from autotest_lib.scheduler import query_manager
    [all...]
site_archive_results.py 7 from autotest_lib.scheduler import drone_utility
  /external/autotest/client/site_tests/dummy_Pass/
control.wifichaos 18 This is a placeholder test for allowing the scheduler to install tests on the
  /external/autotest/client/tests/iosched_bugs/
control 8 This is a functional test for the bug in AS io scheduler where
  /external/autotest/
moblab_config.ini 11 [SCHEDULER]
  /external/autotest/server/tests/verify_test/
control 10 Run the same verify function that the scheduler uses. If you're running this
  /external/clang/test/CodeGenCXX/
destructor-exception-spec.cpp 13 SchedulePostRATDList Scheduler;
  /external/llvm/test/CodeGen/X86/
pr7882.ll 3 ; make sure scheduler honors the flags clobber. PR 7882.
  /packages/apps/TV/tests/unit/src/com/android/tv/dvr/
SchedulerTest.java 43 * Tests for {@link Scheduler}.
52 private Scheduler mScheduler;
65 mScheduler = new Scheduler(Looper.myLooper(), mDvrManager, mSessionManager, mDataManager,
84 eq(startTime - Scheduler.MS_TO_WAKE_BEFORE_START),
  /external/v8/src/compiler/
scheduler.cc 5 #include "src/compiler/scheduler.h"
28 Scheduler::Scheduler(Zone* zone, Graph* graph, Schedule* schedule, Flags flags)
39 Schedule* Scheduler::ComputeSchedule(Zone* zone, Graph* graph, Flags flags) {
42 Scheduler scheduler(zone, graph, schedule, flags);
44 scheduler.BuildCFG();
45 scheduler.ComputeSpecialRPONumbering();
46 scheduler.GenerateImmediateDominatorTree();
48 scheduler.PrepareUses()
    [all...]
  /external/autotest/utils/
autotest.init 27 --background --exec $BASE_DIR/scheduler/monitor_db_babysitter )
39 stop_daemon monitor_db scheduler
  /external/llvm/test/CodeGen/AArch64/
postra-mi-sched.ll 4 ; pre-RA MI scheduler, fmul, fcvt and fdiv will be consecutive. The top-down
5 ; post-RA MI scheduler will clean this up.
  /external/llvm/test/CodeGen/MIR/X86/
expected-named-register-in-allocation-hint.mir 1 # RUN: not llc -march=x86-64 -start-after machine-scheduler -stop-after machine-scheduler -o /dev/null %s 2>&1 | FileCheck %s
simple-register-allocation-hints.mir 1 # RUN: llc -march=x86-64 -start-after machine-scheduler -stop-after machine-scheduler -o /dev/null %s | FileCheck %s
  /frameworks/base/docs/html/topic/performance/power/network/
action-app-traffic.jd 56 Using a network access scheduler API for queuing and processing your app data requests can
65 <h3 id="choosing-scheduler">Choosing a batch-and-scheduling API</h3>
75 <th>Scheduler</th>
87 <td><a href="{@docRoot}reference/android/app/job/JobScheduler.html">Job Scheduler</a></td>
88 <td>Job Scheduler does not require Google Play services, but is available only when targeting
105 Network Manager or Job Scheduler over Sync Adapter if your requirements allow it.
127 <a href="#choosing-scheduler">scheduler</a>, which automatically uses <a href=

Completed in 517 milliseconds

12 3 4 5 6 7 8 91011>>