码迷,mamicode.com
首页 >  
搜索关键字:tasks    ( 2110个结果
grunt对象之api
grunt已经扯了七篇了,殊为不易。最后一篇扯点早应该提及的东西,就是module.exports = function(grunt) {}传入的这个grunt。之前的代码grunt一般只出现在Gruntfile.js这几个地方。require('load-grunt-tasks')(grunt.....
分类:Windows程序   时间:2015-01-29 13:59:51    阅读次数:329
ant 指定生成部署文件包
因为用到ant调用maven的场景,因此需要加入jar包 maven-ant-tasks-2.1.3.jar 随意位置,待会会在配置写标build.properties文件配置:#SET ENVIRONMENT PATH#maven本地仓库地址、ant_home、maven_homeM2_REPO=...
分类:其他好文   时间:2015-01-29 10:25:18    阅读次数:165
线程问题----线程争用(加锁)
如果在线程之间共享数据,则可能会出现线程争用的问题1,局一个线程争用的例子:usingSystem; usingSystem.Collections.Generic; usingSystem.Diagnostics; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; usingSystem.Threading; namespaceConsoleApplica..
分类:编程语言   时间:2015-01-29 01:57:28    阅读次数:248
设计模式系列之-工厂方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using DPC.Domain;namespace DPC.CreateMo...
分类:其他好文   时间:2015-01-27 16:15:59    阅读次数:189
设计模式系列之-简单工厂
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using DPC.Domain;namespace DPC.CreateMo...
分类:其他好文   时间:2015-01-27 16:14:52    阅读次数:140
设计模式系列之-抽象工厂
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using DPC.Domain;namespace DPC.CreateMo...
分类:其他好文   时间:2015-01-27 16:14:45    阅读次数:152
设计模式系列之-装饰模式
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;//装饰模式Demonamespace DisCountApplication...
分类:其他好文   时间:2015-01-27 16:13:42    阅读次数:138
C#---Mandelbrot---ShinePans
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mandelbrot { class Program { static void Main(string[] ar...
分类:Windows程序   时间:2015-01-25 22:38:33    阅读次数:330
spark 笔记 8: Stage
Stage 是一组独立的任务,他们在一个job中执行相同的功能(function),功能的划分是以shuffle为边界的。DAG调度器以拓扑顺序执行同一个Stage中的task。/** * A stage is a set of independent tasks all computing the...
分类:其他好文   时间:2015-01-25 01:16:36    阅读次数:197
线程池
usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; usingSystem.Threading; namespaceConsoleApplication5 { classProgram { staticvoidMain(string[]args) { inta; intb; ThreadPool.GetMaxThreads(outa,outb..
分类:编程语言   时间:2015-01-24 18:52:09    阅读次数:196
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!