码迷,mamicode.com
首页 >  
搜索关键字:tasks    ( 2110个结果
Linux操作系统-命令-top
概念Top,display Linux tasks,即:显示Linux的进程/任务。在Linux内的一个用法top这个命令的意思是:显示"各个进程的资源占用情况"。我们在做性能测试的过程中,常常需要用到这个命令来查看服务器的负载状态。输出列表内各字段的介绍第1行第1行备注16:33:23当前时间up...
分类:系统相关   时间:2015-08-06 18:13:54    阅读次数:196
用多态来实现U盘,Mp3,移动硬盘和电脑的对接,读取写入数据。
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 多态模拟移动硬盘和U盘{ class Program...
分类:移动开发   时间:2015-08-06 12:46:43    阅读次数:162
线程锁 线程并发
《》 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program {...
分类:编程语言   时间:2015-08-05 01:03:50    阅读次数:127
【Android API】Tasks and Back Stack
Back Stack 1.当前activity启动另一个新的activity时,新的activity进入栈顶,之前的activity状态变为stopped,但是它的user interface被系统保存。当点击back按钮时,当前activity出栈被销毁,之前的activity进行resume。 2.当所有的activity都出栈后,back stack为空,task被销毁。 3.当点...
分类:移动开发   时间:2015-08-04 17:19:11    阅读次数:182
面向对象之多态
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 面向对象之多态{ class Program ...
分类:其他好文   时间:2015-08-04 15:26:09    阅读次数:114
FileStream文件流的读取和写入(为以后聊天工具的设计基础)
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 文件流{ class...
分类:其他好文   时间:2015-08-03 16:12:12    阅读次数:170
laravel中的命名公约规范及relation N+1问题
User: model ; users: 表名; user_id键值 relation: public function tasks(){return $this->belongsToMany('Task','task_id');} Task: model名; tasks:表名; task_...
分类:其他好文   时间:2015-08-02 23:11:19    阅读次数:134
innodb之change buffer主动merge
一、srv0srv.cc:: srv_master_thread 说明: 1、  主线程有3种状态:ACTIVE、IDLE、SHUTDOWN状态 2、  ACTIVE:srv_master_do_active_tasks() 3、 IDLE:srv_master_do_idle_tasks() 4、  SHUTDOWN:srv_master_do_shutdown_tasks 1、sr...
分类:数据库   时间:2015-08-02 21:44:24    阅读次数:201
集合中的类型转化 以及求集合中元素的最大值,平均值
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Collections;namespace 集合的小...
分类:其他好文   时间:2015-08-02 11:46:35    阅读次数:100
面向对象之集合ArrayList
using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 面向对象...
分类:其他好文   时间:2015-08-02 10:09:30    阅读次数:92
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!