/frameworks/base/docs/html/training/ |
best-background.jd | 1 page.title=Best Practices for Background Jobs 7 <p>These classes show you how to run jobs in the background to boost your
|
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.core.jobs_3.5.300.v20130429-1813.jar | |
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
org.eclipse.core.jobs_3.5.300.v20130429-1813.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar | |
/external/chromium_org/chrome/service/cloud_print/ |
printer_job_queue_handler_unittest.cc | 22 " \"jobs\" : [" 69 std::vector<JobDetails> jobs; local 71 job_queue_handler.GetJobsFromQueue(json_data_, &jobs); 73 ASSERT_EQ((size_t)3, jobs.size()); 75 EXPECT_EQ(std::string("__testjob1"), jobs[0].job_id_); 76 EXPECT_EQ(std::string("test1"), jobs[0].job_title_); 78 jobs[0].print_ticket_url_); 80 jobs[0].print_data_url_); 86 actual_tags.insert(jobs[0].tags_.begin(), jobs[0].tags_.end()) 103 std::vector<JobDetails> jobs; local 132 std::vector<JobDetails> jobs; local 162 std::vector<JobDetails> jobs; local [all...] |
printer_job_queue_handler.h | 64 // jobs will be filled with details of all jobs in the queue, sorted by time 65 // until they are ready to print, lowest to highest. Jobs that are ready to 68 std::vector<JobDetails>* jobs);
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
job_queue_unittest.cc | 16 // Create a queue. Number of jobs are initially zero. 20 // Push 4 jobs. 26 // High priority jobs should be popped first. 33 // Then low priority jobs follow. 40 // No jobs finished yet, so the job count is four. 47 // Then the next jobs can be popped. 54 // Finish all 3 running jobs. 60 // The remaining jobs is of low priority, so under HIGH_PRIORITY context, it 74 // Create a queue. Number of jobs are initially zero. 78 // Push 4 jobs [all...] |
job_queue.h | 16 // Priority queue for managing jobs in JobScheduler. 39 // Gets queued jobs with the given priority. 40 void GetQueuedJobs(int priority, std::vector<JobID>* jobs) const; 43 // of running parallel jobs and makes room for other jobs to be popped. 49 // Gets the total number of jobs in the queue.
|
job_scheduler.h | 42 // The JobScheduler is responsible for queuing and scheduling drive jobs. 43 // Because jobs are executed concurrently by priority and retried for network 46 // Jobs are grouped into two priority levels: 47 // - USER_INITIATED jobs are those occur as a result of direct user actions. 48 // - BACKGROUND jobs runs in response to state changes, server actions, etc. 49 // USER_INITIATED jobs must be handled immediately, thus have higher priority. 50 // BACKGROUND jobs run only after all USER_INITIATED jobs have run. 52 // Orthogonally, jobs are grouped into two types: 53 // - "File jobs" transfer the contents of files [all...] |
/external/chromium_org/net/base/ |
prioritized_dispatcher.h | 15 // A priority-based dispatcher of jobs. Dispatch order is by priority (highest 17 // jobs. It never revokes a job once started. The job must call OnJobFinished 18 // once it finishes in order to dispatch further jobs. 30 // Describes the limits for the number of jobs started by the dispatcher. 32 // for at most 30 running jobs in total. Jobs at priority 0 can't use slots 34 // If there are already 24 jobs running, then only 6 more jobs can start. No 35 // jobs at priority 1 or below can start. After one more job starts, no jobs [all...] |
/development/ndk/tests/ |
run-all.sh | 37 JOBS= 49 JOBS="$opt" 52 --jobs=*) 53 JOBS="-j$optarg" 79 echo " -j<N> --jobs=<N> Launch parallel builds" 95 $NDK/ndk-build -B $JOBS 2>&1 100 $NDK/ndk-build -B $JOBS >> $MYLOG 2>&1 117 run $NDK/ndk-build -B $JOBS
|
/external/chromium_org/content/browser/service_worker/ |
service_worker_job_coordinator.h | 23 // This class manages all in-flight registration or unregistration jobs. 41 // Calls ServiceWorkerRegisterJobBase::Abort() on all jobs and removes them. 65 // Aborts all jobs in the queue and removes them. 68 // Marks that the browser is shutting down, so jobs may be destroyed before
|
service_worker_register_job_base.h | 29 // Registration jobs are equal if they are for the same pattern and script 30 // URL; unregistration jobs are equal if they are for the same pattern.
|
/frameworks/base/services/core/java/com/android/server/job/ |
JobSchedulerService.java | 60 * Responsible for taking jobs representing work to be performed by a client app, and determining 63 * Implements logic for scheduling, and rescheduling jobs. The JobSchedulerService knows nothing 64 * about constraints, or the state of active jobs. It receives callbacks from the various 65 * controllers and completed jobs and operates accordingly. 74 /** The number of concurrent jobs we run at one time. */ 77 /** Master list of jobs. */ 85 * Minimum # of idle jobs that must be ready in order to force the JMS to schedule things 90 * Minimum # of charging jobs that must be ready in order to force the JMS to schedule things 95 * Minimum # of connectivity jobs that must be ready in order to force the JMS to schedule 100 * Minimum # of jobs (with no particular constraints) for which the JMS will be happy runnin 189 ArraySet<JobStatus> jobs = mJobs.getJobs(); local 310 ArraySet<JobStatus> jobs = mJobs.getJobs(); local 547 ArraySet<JobStatus> jobs = mJobs.getJobs(); local 587 ArraySet<JobStatus> jobs = mJobs.getJobs(); local 843 ArraySet<JobStatus> jobs = mJobs.getJobs(); local [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Dispatcher.java | 30 * <p>Each dispatcher uses an {@link ExecutorService} to run jobs internally. If you 32 * configured maximum} number of jobs concurrently. 38 /** Executes jobs. Created lazily. */ 41 /** Ready jobs in the order they'll be run. */ 44 /** Running jobs. Includes canceled jobs that haven't finished yet. */ 64 * requests queue in memory, waiting for the running jobs to complete. 117 * Cancel all jobs with the tag {@code tag}. If a canceled job is running it 138 if (readyJobs.isEmpty()) return; // No ready jobs to promote. 153 /** Returns the number of running jobs that share a host with {@code job}. * [all...] |
/external/chromium_org/net/http/ |
http_stream_factory_impl.h | 121 // These jobs correspond to jobs orphaned by Requests and now owned by 124 // ~HttpStreamFactoryImpl, it is possible for some jobs to still exist in this 125 // set. Leftover jobs will be deleted when the factory is destroyed. 128 // These jobs correspond to preconnect requests and have no associated Request 129 // object. They're owned by HttpStreamFactoryImpl. Leftover jobs will be
|
/external/chromium_org/v8/tools/testrunner/objects/ |
peer.py | 30 def __init__(self, address, jobs, rel_perf, pubkey): 32 self.jobs = jobs # integer: number of CPUs 43 return ("Peer at %s, jobs: %d, performance: %.2f, trust I/O: %s/%s" % 44 (self.address, self.jobs, self.relative_performance, 74 return [self.address, self.jobs, self.relative_performance]
|
/frameworks/base/core/java/android/app/job/ |
JobScheduler.java | 24 * This is an API for scheduling various types of jobs against the framework that will be executed 27 * See {@link android.app.job.JobInfo} for more description of the types of jobs that can be run 63 * {@link android.app.job.JobInfo.Builder JobInfo.Builder} for more detail on the sorts of jobs 72 * @param jobId unique identifier for this job. Obtain this value from the jobs returned by 79 * Cancel all jobs that have been registered with the JobScheduler by this package. 84 * @return a list of all the jobs registered by this package that have not yet been executed.
|
/external/chromium_org/chrome/browser/background/ |
background_mode_manager_aura.cc | 11 // No background jobs for aura for now.
|
/external/chromium_org/chrome/browser/net/ |
about_protocol_handler.h | 14 // Implements a ProtocolHandler for About jobs.
|
/external/chromium_org/chrome/ |
tab_capture_end2end_tests.isolate | 16 '--test-launcher-jobs=1',
|
/external/chromium_org/cloud_print/gcp20/prototype/ |
print_job_handler.h | 74 // Contains all unexpired jobs 75 std::map<std::string, LocalPrintJobExtended> jobs; // id -> printjob member in class:PrintJobHandler 77 // Changes job state and creates timeouts to delete old jobs from memory 80 // Moves draft to jobs
|
/external/chromium_org/components/policy/core/common/cloud/ |
external_policy_data_updater.h | 87 // Starts jobs from the |job_queue_| until |max_parallel_jobs_| are running or 95 // Callback for jobs that succeeded. 98 // Callback for jobs that failed. 104 // The maximum number of jobs to run in parallel. 107 // The number of jobs currently running. 110 // Queue of jobs waiting to be run. Jobs are taken off the queue and started 114 // Map that owns all existing jobs, regardless of whether they are currently 118 // |True| once the destructor starts. Prevents jobs from being started during
|
/external/chromium_org/net/url_request/ |
data_protocol_handler.h | 16 // Implements a ProtocolHandler for Data jobs.
|
/external/clang/include/clang/Driver/ |
Job.h | 123 /// JobList - A sequence of jobs to perform. 132 list_type Jobs; 142 void addJob(Job *J) { Jobs.push_back(J); } 147 const list_type &getJobs() const { return Jobs; } 149 size_type size() const { return Jobs.size(); } 150 iterator begin() { return Jobs.begin(); } 151 const_iterator begin() const { return Jobs.begin(); } 152 iterator end() { return Jobs.end(); } 153 const_iterator end() const { return Jobs.end(); }
|