码迷,mamicode.com
首页 >  
搜索关键字:task    ( 7323个结果
3. playbook基础组件
Playbookplaybook是由一个或多个“play”组成的列表。play的主要功能在于将事先归并为一组的主机装扮成事先通过ansible中的task定义好的角色。从根本上来讲,所谓task无非是调用ansible的一个module。将多个play组织在一个playbook中,即可以让它们联同起...
分类:其他好文   时间:2015-07-21 23:32:24    阅读次数:221
IOS内存等信息
1. 获取IOS APP占用的内存#import // ...void report_memory(void) { struct task_basic_info info; mach_msg_type_number_t size = sizeof(info); kern_return_t ke...
分类:移动开发   时间:2015-07-21 12:23:55    阅读次数:220
HDU 4864 Task
题意: 每台机器有x,y两种属性,有m个任务,如果机器的这两个属性大于任务,那么就是可以完成这个任务,并且每个任务每只能完成一个任务。 思路:先按照x排序,x相等,按照y排序,每一次记录下来可以完成这个任务的机器,寻找属性相差最小的那台。#include #include #include using namespace std; #d...
分类:其他好文   时间:2015-07-21 10:35:59    阅读次数:126
【Spark Core】任务执行机制和Task源码浅析2
引言上一小节《任务执行机制和Task源码浅析1》介绍了Executor的注册过程。 这一小节,我将从Executor端,就接收LaunchTask消息之后Executor的执行任务过程进行介绍。1. Executor的launchTasks函数DriverActor提交任务,发送LaunchTask指令给CoarseGrainedExecutorBackend,接收到指令之后,让它内部的execu...
分类:其他好文   时间:2015-07-20 23:38:59    阅读次数:175
【Spark Core】任务执行机制和Task源码浅析1
引言上一小节《TaskScheduler源码与任务提交原理浅析2》介绍了Driver侧将Stage进行划分,根据Executor闲置情况分发任务,最终通过DriverActor向executorActor发送任务消息。 我们要了解Executor的执行机制首先要了解Executor在Driver侧的注册过程,这篇文章先了解一下Application和Executor的注册过程。1. Task类及其...
分类:其他好文   时间:2015-07-20 23:38:48    阅读次数:174
Codeforce219C——贪心——Color Stripe
A colored stripe is represented by a horizontal row ofnsquare cells, each cell is pained one ofkcolors. Your task is to repaint the minimum number of ...
分类:其他好文   时间:2015-07-20 23:14:30    阅读次数:148
1050. String Subtraction (20)
题目如下: Given two strings S1 and S2, S = S1 - S2 is defined to be the remaining string after taking all the characters in S2 from S1. Your task is simply to calculate S1 - S2 for any given stri...
分类:其他好文   时间:2015-07-20 14:26:45    阅读次数:127
053第18
8.You create a new Automatic Database Diagnostic Monitor (ADDM) task: instance_analysis_mode_task. To view the ADDM report, you use the following command: SQL> SELECT dbms_addm.get_report('my_instan...
分类:其他好文   时间:2015-07-20 13:00:25    阅读次数:135
flask-restful 请求解析
基本参数from flask import Flaskfrom flask.ext.restful import reqparse, abort, Api, Resourceapp = Flask(__name__)api = Api(app)TODOS = { 'todo1': {'task': ...
分类:其他好文   时间:2015-07-20 12:25:03    阅读次数:1209
HDU - 3530 Subsequence
DescriptionThere is a sequence of integers. Your task is to find the longest subsequence that satisfies the following condition: the difference betwee...
分类:其他好文   时间:2015-07-20 12:21:06    阅读次数:82
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!