/external/chromium_org/content/public/test/ |
test_launcher.h | 43 // when --test-launcher-jobs isn't specified on the command-line. 51 // of test jobs to be run in parallel, unless overridden from the command line.
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
job_list.h | 75 // The fields below are available only for jobs with job_type: 106 // telling the reason of failure when the jobs is failed. 117 // The interface to expose the list of issued Drive jobs. 122 // Returns the list of jobs currently managed by the scheduler. 134 // Cancels all the jobs.
|
job_queue.cc | 26 // Too many jobs are running already. 42 void JobQueue::GetQueuedJobs(int priority, std::vector<JobID>* jobs) const { 45 jobs->assign(queue_[priority].begin(), queue_[priority].end());
|
/external/clang/lib/Frontend/ |
CreateInvocationFromCommandLine.cpp | 65 const driver::JobList &Jobs = C->getJobs(); 66 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) { 69 Jobs.Print(OS, "; ", true); 74 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
BaseClasspathContainerInitializer.java | 29 import org.eclipse.core.runtime.jobs.Job; 75 // build jobs are run after other interactive jobs 97 // build jobs are run after other interactive jobs
|
/external/llvm/utils/lit/lit/ |
run.py | 188 def execute_tests(self, display, jobs, max_time=None, 191 execute_tests(display, jobs, [max_time]) 193 Execute each of the tests in the run, using up to jobs number of 213 if jobs != 1 and use_processes and multiprocessing: 218 consumer = MultiprocessResultsConsumer(self, display, jobs) 232 provider = TestProvider(self.tests, jobs, queue_impl, canceled_flag) 249 if jobs == 1: 253 self._execute_tests_in_parallel(task_impl, provider, consumer, jobs) 264 def _execute_tests_in_parallel(self, task_impl, provider, consumer, jobs): 268 for i in range(jobs)] [all...] |
/external/chromium_org/chrome/browser/printing/ |
print_job_manager.h | 82 // Stops all printing jobs. If wait_for_finish is true, tries to give jobs 88 // Current print jobs that are active.
|
/external/chromium_org/net/websockets/ |
websocket_throttle.h | 40 // Returns true if successful. If the number of pending jobs will exceed 45 // of |job|, and then wakes up jobs that can now resume establishing a 57 // Examines if any of the given jobs can resume establishing a connection. If
|
/external/chromium_org/tools/flakiness/ |
is_flaky.py | 22 parser.add_argument('--jobs', '-j', type=int, default=1, 23 help='Number of parallel jobs to run tests.') 38 pool = multiprocessing.dummy.Pool(processes=options.jobs)
|
/external/chromium_org/components/component_updater/ |
background_downloader_win.cc | 44 // To list the BITS jobs for a user, use the |bitsadmin| tool. The command line 83 // Jobs that are not touched in 90 days (or a value set by group policy) are 91 // Second, there is a simple mechanism to detect stuck jobs, and allow the rest 93 // Last, after completing a job, irrespective of the outcome, the jobs older 100 // All jobs created by this module have a specific description so they can 111 // How long to wait for stuck jobs. Stuck jobs could be queued for too long, 121 // How often the jobs which were started but not completed for any reason 122 // are cleaned up. Reasons for jobs to be left behind include browser restarts, 123 // system restarts, etc. Also, the check to purge stale jobs only happen 374 std::vector<ScopedComPtr<IBackgroundCopyJob> > jobs; local 676 std::vector<ScopedComPtr<IBackgroundCopyJob> > jobs; local [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
custom_logger.py | 12 The flushing is important because logging is often done from jobs
|
/external/chromium_org/chrome/test/base/ |
chrome_test_launcher.h | 19 // Launches Chrome browser tests. |default_jobs| is number of test jobs to be
|
/external/chromium_org/extensions/browser/ |
url_request_util.h | 16 // Utilities related to URLRequest jobs for extension resources. See
|
/external/chromium_org/net/url_request/ |
file_protocol_handler.h | 24 // Implements a ProtocolHandler for File jobs. If |network_delegate_| is NULL,
|
http_user_agent_settings.h | 17 // The interface used by HTTP jobs to retrieve HTTP Accept-Language
|
/external/chromium_org/third_party/skia/platform_tools/barelinux/bin/ |
download_deps | 29 try gclient sync --jobs=1 || exit
|
/external/skia/platform_tools/barelinux/bin/ |
download_deps | 29 try gclient sync --jobs=1 || exit
|
/cts/tests/JobScheduler/src/android/jobscheduler/cts/ |
TimingConstraintsTest.java | 22 * Schedules jobs with various timing constraints and ensures that they are executed when 50 assertTrue("Timed out waiting for periodic jobs to execute", countedDown);
|
/hardware/intel/img/psb_video/ |
psb-video.spec | 56 make %{?jobs:-j%jobs}
|
/external/chromium_org/build/ |
gdb-add-index | 16 # Cleanup temp directory and ensure all child jobs are dead-dead. 20 local jobs=$(jobs -p) 21 if [ -n "$jobs" ]; then 22 echo -n "Killing outstanding index jobs..." 23 kill -KILL $(jobs -p)
|
/external/chromium_org/v8/tools/testrunner/server/ |
presence_handler.py | 60 jobs = data[1] 64 response = [STARTUP_RESPONSE, self.server.daemon.jobs, 69 p = peer.Peer(self.client_address[0], jobs, relative_perf, 75 jobs = data[1] 78 p = peer.Peer(self.client_address[0], jobs, perf, pubkey_fingerprint) 117 request = [STARTUP_REQUEST, self.daemon.jobs, self.daemon.relative_perf,
|
/external/clang/examples/clang-interpreter/ |
main.cpp | 95 const driver::JobList &Jobs = C->getJobs(); 96 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) { 99 Jobs.Print(OS, "; ", true); 104 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin()); 122 Jobs.Print(llvm::errs(), "\n", true);
|
/external/llvm/utils/ |
llvm-compilers-check | 58 # The user may control parallelism via the --jobs and --threads 59 # switches. --jobs tells llvm-compilers-checl the maximum total 63 # those builds. If --threads is less than --jobs, --threads workers 66 # (--jobs / --threads) to use up the remaining job capacity. Once a 135 parser.add_option("--jobs", "-j", default=8, type="int", 136 help=("The number of simultaneous build jobs " 255 def __init__(self, work_queue, jobs, 260 self.jobs = jobs 405 llvm=dict(debug=["-j" + str(self.jobs)], [all...] |
/external/chromium_org/net/dns/ |
host_resolver_impl.h | 56 // Jobs are ordered in the queue based on their priority and order of arrival. 104 // Options.GetDispatcherLimits() determines the maximum number of jobs that 116 // Configures maximum number of Jobs in the queue. Exposed for testing. 209 // Aborts all in progress jobs with ERR_NETWORK_CHANGED and notifies their 210 // requests. Might start new jobs. 213 // Aborts all in progress DnsTasks. In-progress jobs will fall back to 214 // ProcTasks. Might start new jobs, if any jobs were taking up two dispatcher 248 // Starts Jobs according to their priority and the configured limits. 251 // Limit on the maximum number of jobs queued in |dispatcher_| [all...] |
/frameworks/base/services/core/java/com/android/server/job/ |
JobStore.java | 53 * Maintains the master list of jobs that the job scheduler is tracking. These jobs are compared by 55 * Also handles read/write of persisted jobs. 92 * @return A freshly initialized job store object, with no loaded jobs. 111 mJobsFile = new AtomicFile(new File(jobDir, "jobs.xml")); 182 * @param userHandle User for whom we are querying the list of jobs. 183 * @return A list of all the jobs scheduled by the provided user. Never null. 246 * Every time the state changes we write all the jobs in one swath, instead of trying to 255 Slog.v(TAG, "Writing jobs to disk."); 276 // Copy over the jobs so we can release the lock before writing 424 List<JobStatus> jobs; local 470 final List<JobStatus> jobs = new ArrayList<JobStatus>(); local [all...] |