码迷,mamicode.com
首页 >  
搜索关键字:tasks    ( 2110个结果
泛型迭代器
using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Cons ...
分类:其他好文   时间:2016-12-28 12:00:35    阅读次数:166
4.0中的并行计算和多线程详解(一)【转】
并行计算部分 沿用微软的写法,System.Threading.Tasks.::.Parallel类,提供对并行循环和区域的支持。 我们会用到的方法有For,ForEach,Invoke。 一、简单使用 首先我们初始化一个List用于循环,这里我们循环10次。(后面的代码都会按这个标准进行循环) C ...
分类:编程语言   时间:2016-12-27 11:41:47    阅读次数:259
图——拓扑排序(uva10305)
John has n tasks to do. Unfortunately, the tasks are not independent and the execution of one task is only possible if other tasks have already been e ...
分类:编程语言   时间:2016-12-27 00:59:30    阅读次数:214
How To Use DBLink In Oracle Forms 6i
You want to connect multiple databases in oracle forms to perform certain tasks, for example you need to execute ddl or dml statements against databas... ...
分类:数据库   时间:2016-12-25 23:26:00    阅读次数:332
ansible-playplaybooks批量安装redis脚本
catredis-install.yml --- -name:installredis gather_facts:False hosts:"{{ip}}" user:root vars: -redis_port:"{{port|default(6379)}}" tasks: #-name:removetheoldfile #file:path={{redis_home}}state=absent -name:removethetmpfile file:path=/tmp/redis*state=absen..
分类:其他好文   时间:2016-12-22 20:52:38    阅读次数:264
ansible-playbook之修改ssh端口和limits参数控制
一、描述拿到一批机器,需要做首先是修改ssh端口,防火墙配置,以及limits.conf控制文件描述符,进程数,栈大小等。二、剧本如下:--- -hosts:"{{host}}" remote_user:"{{user}}" gather_facts:false tasks: -name:Modifysshport69410 lineinfile: dest:/etc/ssh/{{item}} reg..
分类:其他好文   时间:2016-12-22 15:17:28    阅读次数:1882
C#基础强化-进程操作
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; namespac... ...
分类:Windows程序   时间:2016-12-16 07:46:29    阅读次数:248
task code
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; public class Example { public static void Main()... ...
分类:其他好文   时间:2016-12-15 14:37:48    阅读次数:119
XidianOJ 1120 Gold of Orz Pandas
题目描述 Orz Panda is addicted to one RPG game. To make his character stronger, he have to fulfil tasks to get EXP for higher level.At first he accepted a ...
分类:其他好文   时间:2016-12-10 06:53:49    阅读次数:191
Spark on Yarn:任务提交参数配置
当在YARN上运行Spark作业,每个Spark executor作为一个YARN容器运行。Spark可以使得多个Tasks在同一个容器里面运行。 以下参数配置为例子: spark-submit --master yarn-cluster #使用集群调度模式(一般使用这个参数) --num-exec ...
分类:其他好文   时间:2016-12-09 08:38:44    阅读次数:305
2110条   上一页 1 ... 96 97 98 99 100 ... 211 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!