HomeSort by relevance Sort by last modified time
    Searched refs:afe (Results 51 - 75 of 194) sorted by null

1 23 4 5 6 7 8

  /external/autotest/frontend/db/backends/afe/
compiler.py 2 from autotest_lib.frontend.afe.model_logic import _quote_name
  /external/autotest/frontend/db/backends/afe_sqlite/
compiler.py 2 from autotest_lib.frontend.afe.model_logic import _quote_name
  /external/autotest/frontend/tko/
views.py 3 from autotest_lib.frontend.afe import rpc_handler
  /external/autotest/server/
site_utils.py 91 """Object to represent an AFE host object when there is no AFE."""
97 attributes are used from an actual AFE Host object (check
130 def get_labels_from_afe(hostname, label_prefix, afe):
131 """Retrieve a host's specific labels from the AFE.
139 @param afe: afe instance.
144 labels = afe.get_labels(name__startswith=label_prefix,
150 def get_label_from_afe(hostname, label_prefix, afe):
151 """Retrieve a host's specific label from the AFE
    [all...]
  /external/autotest/site_utils/
count_jobs.py 15 from autotest_lib.frontend.afe import models
34 """Counts the number of AFE jobs in the last day and report to monarch."""
36 description=('A script which records the number of afe jobs run in a time interval.'))
41 # TODO: Reporting a stat for each job created from the afe directly could be better.
test_runner_utils_unittest.py 162 afe = test_runner_utils.setup_local_afe()
186 afe.create_job(control_file, hosts=self._hosts)
193 afe, test_arg=test_arg, remote=remote, build=build,
202 test_runner_utils._auto_detect_labels(afe, remote)
219 afe, autotest_path, ['suite:'+suite_name], remote, fast_mode,
  /external/autotest/tko/
jsonp_fetcher.cgi 5 from autotest_lib.frontend.afe.json_rpc import serviceHandler
  /external/autotest/cli/
rpc.py 6 from autotest_lib.frontend.afe import rpc_client_lib
7 from autotest_lib.frontend.afe.json_rpc import proxy
12 AFE_RPC_PATH = '/afe/server/noauth/rpc/'
33 """Shared AFE/TKO RPC class stuff"""
63 """Handles the AFE setup and communication through RPC"""
  /external/autotest/frontend/client/src/autotest/afe/
HostDataSource.java 1 package autotest.afe;
3 import autotest.afe.models.Host;
  /external/autotest/server/cros/network/
rf_switch_client_box.py 29 @param client_box_host: Client Box AFE Host.
64 afe = frontend.AFE(
66 hosts = afe.get_hosts(label=self.client_box_label)
  /external/autotest/server/hosts/
servo_host.py 334 def get_attached_duts(self, afe):
337 @param afe: afe instance.
341 return afe.get_hosts_by_attribute(
354 def _choose_dut_for_synchronized_reboot(self, dut_list, afe):
364 @param afe: Instance of the AFE.
368 afe_hosts = afe.get_hosts(dut_list)
378 def _sync_job_scheduled_for_duts(self, dut_list, afe):
385 @param afe: Instance of the AFE
    [all...]
afe_store.py 8 from autotest_lib.frontend.afe.json_rpc import proxy as rpc_proxy
13 """Directly interact with the (given) AFE for host information."""
18 def __init__(self, hostname, afe=None):
22 @param afe: A frontend.AFE object to make RPC calls. Will create one
27 self._afe = afe
39 """Obtains HostInfo directly from the AFE."""
58 """Commits HostInfo back to the AFE.
64 # copy of HostInfo from the AFE and then add/remove labels / attribtes
76 """Requests the AFE to remove the given labels
    [all...]
base_label.py 258 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
270 afe.run('host_remove_labels', id=host.hostname,
277 afe.run('host_add_labels', id=host.hostname, labels=labels_to_add)
  /external/autotest/server/cros/dynamic_suite/
job_status_unittest.py 36 self.afe = self.mox.CreateMock(frontend.AFE)
49 self.afe.run('get_host_queue_entries',
86 self.afe.get_jobs(id__in=list(job_id_set),
94 waiter = job_status.JobResultWaiter(self.afe, self.tko)
115 results = list(job_status._yield_job_results(self.afe, self.tko, job))
job_status.py 64 def _abort_jobs_if_timedout(afe, jobs, start_time, timeout_mins):
68 @param afe: an instance of AFE as defined in server/frontend.py.
83 afe.run('abort_host_queue_entries', job=job.id)
97 entries = AFE.run('get_host_queue_entries', job=job.id)
121 def __init__(self, afe, tko):
124 @param afe: an instance of AFE as defined in server/frontend.py.
127 self._afe = afe
171 def _yield_job_results(afe, tko, job)
    [all...]
dynamic_suite.py 98 | Dev Server | | Autotest Frontend (AFE) |
141 | Dev Server | | Autotest Frontend (AFE) |
152 | Autotest Frontend (AFE) | +--------+ +--------+
183 | Server | dump to symbolicate | Autotest Frontend (AFE) |
445 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10,
463 afe=afe,
505 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10,
517 _perform_reimage_and_run(suite_spec, afe, tko, suite_job_id=my_job_id)
522 def _perform_reimage_and_run(spec, afe, tko, suite_job_id=None)
    [all...]
suite_unittest.py 63 self.afe = self.mox.CreateMock(frontend.AFE)
254 afe=self.afe, tko=self.tko)
316 job_mock = self.afe.create_job(
354 """Should schedule stable and experimental tests with the AFE."""
365 afe=self.afe, tko=self.tko,
380 """Should schedule tests with the AFE."""
396 afe=self.afe, tko=self.tko
    [all...]
  /external/autotest/frontend/afe/
rpc_utils_unittest.py 7 """Unit tests for frontend/afe/rpc_utils.py."""
15 from autotest_lib.frontend.afe import frontend_test_utils
16 from autotest_lib.frontend.afe import models
17 from autotest_lib.frontend.afe import rpc_utils
views.py 8 from autotest_lib.frontend.afe import models, rpc_handler, rpc_interface
9 from autotest_lib.frontend.afe import rpc_utils
12 __file__, 'autotest_lib.frontend.afe.moblab_rpc_interface',
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
MalformedBenchmarksTest.java 177 } catch (AssertionFailedError afe) {
178 afe.initCause(e);
179 throw afe;
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
JSR166TestCase.java 337 AssertionFailedError afe = local
339 afe.initCause(t);
340 throw afe;
475 AssertionFailedError afe = local
477 afe.initCause(t);
478 throw afe;
715 AssertionFailedError afe = local
717 afe.initCause(ie);
718 throw afe;
    [all...]
  /external/autotest/scheduler/
agent_task_unittest.py 7 from autotest_lib.frontend.afe import frontend_test_utils
8 from autotest_lib.frontend.afe import models
  /external/autotest/scheduler/shard/
simple_heartbeat_client.py 35 from autotest_lib.frontend.afe import frontend_test_utils
36 from autotest_lib.frontend.afe import models
  /external/autotest/site_utils/stats/
apache_access_log_metrics.py 24 from autotest_lib.frontend.afe import rpc_interface
25 from autotest_lib.frontend.afe import moblab_rpc_interface
62 r'(?P<endpoint>\S+)' # e.g. /afe/server/noauth/rpc/
87 '/afe/',
89 '/afe/server/rpc/',
92 '/afe/server/noauth/rpc/',
  /external/autotest/utils/
tko_publish.py 62 afe = frontend.AFE()
63 # the way AFE API is right now is to give a whole list of jobs and can't
65 finished_jobs = afe.get_jobs(finished=True)

Completed in 717 milliseconds

1 23 4 5 6 7 8