Home
last modified time | relevance | path

Searched full:machines (Results 1 – 25 of 10835) sorted by relevance

12345678910>>...434

/external/autotest/tko/migrations/
D003_add_test_timestamps.py36 machines.hostname AS machine_hostname,
37 machines.machine_group,
38 machines.owner AS machine_owner,
45 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
66 machines.hostname AS machine_hostname,
67 machines.machine_group,
68 machines.owner AS machine_owner,
78 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
101 machines.hostname AS machine_hostname,
102 machines.machine_group,
[all …]
D002_add_job_timestamps.py39 machines.hostname AS machine_hostname,
40 machines.machine_group,
41 machines.owner AS machine_owner,
48 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
68 machines.hostname AS machine_hostname,
69 machines.machine_group,
70 machines.owner AS machine_owner,
80 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
100 machines.hostname AS machine_hostname,
101 machines.machine_group,
[all …]
D004_add_test_started.py37 machines.hostname AS machine_hostname,
38 machines.machine_group,
39 machines.owner AS machine_owner,
46 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
68 machines.hostname AS machine_hostname,
69 machines.machine_group,
70 machines.owner AS machine_owner,
80 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
103 machines.hostname AS machine_hostname,
104 machines.machine_group,
[all …]
D031_rename_tko_tables.py196 machines.hostname AS machine_hostname,
197 machines.machine_group,
198 machines.owner AS machine_owner,
205 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
227 machines.hostname AS machine_hostname,
228 machines.machine_group,
229 machines.owner AS machine_owner,
239 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
262 machines.hostname AS hostname,
263 machines.machine_group AS platform,
[all …]
D030_add_afe_job_id_to_jobs.py30 machines.hostname AS hostname,
31 machines.machine_group AS platform,
32 machines.owner AS machine_owner,
39 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
62 machines.hostname AS hostname,
63 machines.machine_group AS platform,
64 machines.owner AS machine_owner,
71 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
D013_fix_perf_view.py27 machines.hostname AS machine_hostname,
28 machines.machine_group,
29 machines.owner AS machine_owner,
39 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
63 machines.hostname AS machine_hostname,
64 machines.machine_group,
65 machines.owner AS machine_owner,
75 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
D015_support_graphing_interface.py45 machines.hostname AS hostname,
46 machines.machine_group AS platform,
47 machines.owner AS machine_owner,
54 LEFT OUTER JOIN machines ON machines.machine_idx = jobs.machine_idx
81 machines.hostname AS hostname,
82 machines.machine_group AS platform,
83 machines.owner AS machine_owner,
93 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
D014_add_test_view_2.py19 machines.hostname AS hostname,
20 machines.machine_group AS platform,
21 machines.owner AS machine_owner,
28 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
D016_modify_perf_view_2.py29 machines.hostname AS hostname,
30 machines.machine_group AS platform,
31 machines.owner AS machine_owner,
41 LEFT OUTER JOIN machines ON machines.machine_idx = jobs.machine_idx
/external/toolchain-utils/
Dlock_machine.py8 """This module controls locking and unlocking of test machines."""
19 from cros_utils import machines
49 """Class for locking/unlocking machines vie three different modes.
51 This class contains methods for checking the locked status of machines,
52 and for changing the locked status. It handles HW lab machines and local
53 machines, using appropriate locking mechanisms for each.
78 empty, the lock manager will get all known machines.
96 self.machines = list(set(remotes)) or []
99 if not self.machines:
100 self.machines = self.toolchain_lab_machines
[all …]
/external/autotest/server/samples/
Dprofilertest.srv3 ssh_hosts = [hosts.create_host(m) for m in machines]
8 machines, name):
18 at.host.hostname, "PROF_MAIN", str(machines)))
27 def wait_for_profilers(machines, timeout = 180):
31 sync_bar.rendezvous_servers("PROF_MAIN", *machines)
34 def start_profilers(machines, timeout = 180):
38 start_bar.rendezvous_servers("PROF_MAIN", *machines)
41 def stop_profilers(machines, timeout = 120):
43 stop_bar.rendezvous_servers("PROF_MAIN", *machines)
47 wait_for_profilers(machines)
[all …]
/external/autotest/server/
Dstandalone_profiler.py37 def generate_test(machines, hostname, profilers, timeout_start, timeout_stop, argument
42 @param machines: sequence of all the hostnames involved in the barrier
55 machines to reach the start of the profiler_sync (None means no
65 hostname, _PROF_MAIN, machines))
74 def wait_for_profilers(machines, timeout=300): argument
77 sb.rendezvous_servers(_PROF_MAIN, *machines)
80 def start_profilers(machines, timeout=120): argument
83 sb.rendezvous_servers(_PROF_MAIN, *machines)
86 def stop_profilers(machines, timeout=120): argument
89 sb.rendezvous_servers(_PROF_MAIN, *machines)
[all …]
Dserver_job.py79 MACHINES_FILENAME = '.machines'
252 machines, argument
280 @param machines: A list of hostnames of the machines to use for the job.
281 @param machine_dict_list: A list of dicts for each of the machines above
313 machines, where each host is a host that the test would be run
335 self.machines = machines
371 'hostname': ','.join(machines),
513 machines, job, ssh_user, ssh_port, ssh_pass, ssh_verbosity_flag,
516 namespace = {'machines' : self.machine_dict_list,
527 """Cleanup machines.
[all …]
D_autoserv.py130 machines file specified in the command line arg -M.
132 if parser.options.machines:
133 machines = parser.options.machines.replace(',', ' ').strip().split()
135 machines = []
138 machines = []
143 machines.append(m)
144 logging.debug('Read list of machines from file: %s', machines_file)
145 logging.debug('Machines: %s', ','.join(machines))
147 if machines:
148 for machine in machines:
[all …]
D_autoserv130 machines file specified in the command line arg -M.
132 if parser.options.machines:
133 machines = parser.options.machines.replace(',', ' ').strip().split()
135 machines = []
138 machines = []
143 machines.append(m)
144 logging.debug('Read list of machines from file: %s', machines_file)
145 logging.debug('Machines: %s', ','.join(machines))
147 if machines:
148 for machine in machines:
[all …]
Dbase_utils.py197 def default_mappings(machines): argument
199 Returns a simple mapping in which all machines are assigned to the
205 mach = machines[0]
207 if len(machines) > 1:
208 machines = machines[1:]
209 for machine in machines:
215 def form_ntuples_from_machines(machines, n=2, mapping_func=default_mappings): argument
216 """Returns a set of ntuples from machines where the machines in an
220 (mappings, failures) = mapping_func(machines)
/external/toolchain-utils/crosperf/
Dexperiment_runner.py78 """Return a list of all requested machines.
80 Create a list of all the requested machines, both global requests and
83 machines = self._experiment.remote
87 assert r in machines
88 return machines
91 """Update machines lists to contain only locked machines.
93 Go through all the lists of requested machines, both global and
98 locked_machines: A list of the machines we successfully locked.
116 # machines are ip address.
125 """Attempt to globally lock all of the machines requested for run.
[all …]
Dmachine_manager.py29 """Raised if all machines for a label don't have the same checksum."""
33 """Raised if all machines for a label don't have the same checksum string."""
205 """Lock, image and unlock machines locally for benchmark runs.
208 machines and distribute machines to each benchmark run. The assumption is
209 that all of the machines for the experiment have been globally locked
210 in the ExperimentRunner, but the machines still need to be locally
298 # Currently can't image two machines at once.
346 # Since this is used for cache lookups before the machines have been
382 # ComputeCommonCheckSum, so there is no need to verify the machines
384 # modified to verify that all the machines for a given label are the
[all …]
Dexperiment.py114 # machine_manager.AddMachine only adds reachable machines.
117 # machines. This is a subset of self.remote. We make both lists the same.
122 # Initialize checksums for all machines, ignore errors at this time.
183 # Force same image on all machines, then we do checksum again. No
250 """Make sure all machines are unlocked."""
259 # If we locked any machines earlier, make sure we unlock them now.
269 "These machines are not unlocked correctly: %s"
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_compute.c109 struct tgsi_exec_machine **machines) in run_workgroup() argument
117 grp_hit_barrier |= cs_run(cs, g_w, g_h, g_d, machines[i], restart_threads); in run_workgroup()
171 struct tgsi_exec_machine **machines; in softpipe_launch_grid() local
191 machines = CALLOC(sizeof(struct tgsi_exec_machine *), num_threads_in_group); in softpipe_launch_grid()
192 if (!machines) { in softpipe_launch_grid()
197 /* initialise machines + GRID_SIZE + THREAD_ID + BLOCK_SIZE */ in softpipe_launch_grid()
202 machines[idx] = tgsi_exec_machine_create(PIPE_SHADER_COMPUTE); in softpipe_launch_grid()
204 machines[idx]->LocalMem = local_mem; in softpipe_launch_grid()
205 machines[idx]->LocalMemSize = shared_mem_size; in softpipe_launch_grid()
206 machines[idx]->NonHelperMask = (1 << (MIN2(TGSI_QUAD_SIZE, bwidth - local_x))) - 1; in softpipe_launch_grid()
[all …]
/external/toolchain-utils/cros_utils/
Dlocks.py7 """Utilities for locking machines."""
16 def AcquireLock(machines, chromeos_root, timeout=1200): argument
24 machines, False, chromeos_root
32 repr(machines), timeout, str(e)
40 def ReleaseLock(machines, chromeos_root): argument
44 lock_machine.LockManager(machines, False, chromeos_root).UpdateMachines(
50 "Could not unlock %s. %s" % (repr(machines), str(e))
/external/google-cloud-java/java-distributedcloudedge/proto-google-cloud-distributedcloudedge-v1/src/main/java/com/google/cloud/edgecontainer/v1/
DListMachinesResponseOrBuilder.java30 * Machines in the site.
33 * <code>repeated .google.cloud.edgecontainer.v1.Machine machines = 1;</code>
40 * Machines in the site.
43 * <code>repeated .google.cloud.edgecontainer.v1.Machine machines = 1;</code>
50 * Machines in the site.
53 * <code>repeated .google.cloud.edgecontainer.v1.Machine machines = 1;</code>
60 * Machines in the site.
63 * <code>repeated .google.cloud.edgecontainer.v1.Machine machines = 1;</code>
71 * Machines in the site.
74 * <code>repeated .google.cloud.edgecontainer.v1.Machine machines = 1;</code>
DListMachinesResponse.java25 * List of machines in a site.
80 * Machines in the site.
83 * <code>repeated .google.cloud.edgecontainer.v1.Machine machines = 1;</code>
93 * Machines in the site.
96 * <code>repeated .google.cloud.edgecontainer.v1.Machine machines = 1;</code>
107 * Machines in the site.
110 * <code>repeated .google.cloud.edgecontainer.v1.Machine machines = 1;</code>
120 * Machines in the site.
123 * <code>repeated .google.cloud.edgecontainer.v1.Machine machines = 1;</code>
133 * Machines in the site.
[all …]
/external/squashfs-tools/RELEASE-READMEs/
DREADME-2.0-AMD645 filesystems on amd64 machines. These filesystems work correctly on amd64
6 machines, but cannot be mounted on non-amd64 machines. Likewise, filesystems
7 generated on non amd64 machines could not be mounted on amd64 machines.
12 generated by previous releases will not be mountable on amd64 machines
/external/autotest/client/cros/cellular/pseudomodem/
Dstate_machine_factory.py17 State machines are created by the |Modem| objects by calling methods from
20 To supply your own state machines, simply pass in your own subclass of
24 This default implementation allows tailoring the different state machines to
45 Set all machines to be launched in interactive mode.
47 All core pseudomodem machines should appear here. If you add a state

12345678910>>...434