码迷,mamicode.com
首页 >  
搜索关键字:tasks    ( 2110个结果
es5和es6实现lazyman
es6实现 1 class _LazyMan { 2 constructor(name) { 3 this.tasks = []; 4 this.sleep = this.sleep.bind(this); 5 this.eat = this.eat.bind(this); 6 this.tasks... ...
分类:其他好文   时间:2017-01-20 16:25:17    阅读次数:204
javascript代码
LazyMan 实现LazyMan(什么是LazyMan?请自行google) function _LazyMan(_name) { var _this = this; _this.tasks = []; _this.tasks.push(function() { console.log('Hi! ...
分类:编程语言   时间:2017-01-20 00:11:36    阅读次数:399
队列Queue FIFO先进先出 栈Stack FILO先进后出
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { cl... ...
分类:其他好文   时间:2017-01-16 21:16:44    阅读次数:191
DapperHelper,SqlHelper
using System;using System.Collections.Generic;using System.Data.Common;using System.Linq;using System.Text;using System.Threading.Tasks;using Dapper;u ...
分类:移动开发   时间:2017-01-14 22:55:59    阅读次数:871
UVA - 10305 Ordering Tasks(拓扑排序)
题意:给定优先关系进行拓扑排序。 分析:将入度为0的点加入优先队列,并将与之相连的点入度减1,若又有度数为0的点,继续加入优先队列,依次类推。 ...
分类:编程语言   时间:2017-01-12 10:37:03    阅读次数:175
[SOJ] Ordering Tasks
1940. Ordering Tasks Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description John has n tasks to do. Unfortunately, the tasks are not independ ...
分类:其他好文   时间:2017-01-03 23:35:46    阅读次数:349
Ansible-playbook tomcat部署
Ansible-playbooktomcat部署#目录树结构如下:[root@192roles]#treetomcat tomcat ├──defaults ├──files │└──apache-tomcat-7.0.63.zip ├──handlers │└──main.yml ├──meta ├──tasks │└──main.yml ├──templates └──vars └──main.yml#handle..
分类:其他好文   时间:2017-01-03 17:32:26    阅读次数:626
时间转换为Unix时间戳
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common { public class Da... ...
分类:其他好文   时间:2016-12-29 17:00:38    阅读次数:134
发送 GET 和 POST 请求
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks;... ...
分类:其他好文   时间:2016-12-29 16:29:00    阅读次数:136
ansible-playbook jdk安装
ansible-playbookjdk安装jdkrole的目录结构如下:[root@192roles]#treejdk jdk ├──defaults ├──files │└──jdk-8u101-linux-x64.tar.gz ├──handlers ├──meta ├──tasks │└──main.yml ├──templates └──vars └──main.yml#vars下面的忽略,那是之前..
分类:其他好文   时间:2016-12-29 08:46:21    阅读次数:1793
2110条   上一页 1 ... 95 96 97 98 99 ... 211 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!