码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
操作系统的时区设置会影响数据库查询SYSDATE和SYSTIMESTAMP的值
SYSDATE和SYSTIMESTAMP的值并不受数据库參数DBTIMEZONE的影响,操作系统时区的环境变量(如TZ)会影响它们的输入,由于SYSDATE和SYSTIMESTAMP实际是调用操作系统底层接口直接返回值。 DBTIMEZONE的设置仅仅会影响数据库内两种数据类型的值:一种是TimeS ...
分类:数据库   时间:2017-05-18 13:58:10    阅读次数:413
Goroutines
=Go 语言中的并发可以用两种方式实现: 第一种方式,支持顺序通信进程(communicating sequential processes),简称 CSP。CSP是一种现代的并发编程模型,在这种编程模型中值会在不同的运行实例(goroutine)中传递,尽管大多数情况下仍然是被限制在单一实例中。 ...
分类:其他好文   时间:2017-05-18 13:33:22    阅读次数:156
[leetcode-582-Kill Process]
Given n processes, each process has a unique PID (process id) and its PPID (parent process id). Each process only has one parent process, but may have ...
分类:其他好文   时间:2017-05-17 10:17:34    阅读次数:111
LeetCode:Kill Process
582. Kill Process 582. Kill Process Given n processes, each process has a unique PID (process id) and its PPID (parent process id). Each process only ...
分类:其他好文   时间:2017-05-16 14:55:33    阅读次数:156
ZOJ-2386 Ultra-QuickSort 【树状数组求逆序数+离散化】
Description In this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swapping ...
分类:编程语言   时间:2017-05-15 23:46:16    阅读次数:312
582. Kill Process
Problem statement: Given n processes, each process has a unique PID (process id) and its PPID (parent process id). Each process only has one parent pr ...
分类:其他好文   时间:2017-05-15 10:07:51    阅读次数:268
MPI 在Windows10 上安装,使用VS2013编译生成可执行程序
参考博客: http://www.cnblogs.com/shixiangwan/p/6626156.html http://www.cnblogs.com/hantan2008/p/5390375.html 系统环境: Windows10 (Windows7及以上均可以) 64bit VS2013 ...
分类:Windows程序   时间:2017-05-14 12:14:10    阅读次数:1238
[Other]面试复习笔记:线程与进程复习
基本概念1. 进程的基本概念线程(thread)是进程(processes)中某个单一顺序的控制流,也被称为轻量进程(lightweight processes)。进程是表示资源分配的基本单位,又是调度运行的基本单位。 比如: 用户运行自己的程序,系统就创建一个进程,并为它分配资源,包含各种表格、内 ...
分类:编程语言   时间:2017-05-13 22:13:10    阅读次数:164
nginx优化配置参考
#nginx启用的用户和组user nginx; #启动的工作进程数,一般配置为跟逻辑CPU核数一样worker_processes auto; #1个nginx进程可打开的最大文件描述符数目的数量worker_rlimit_nofile 51200; #记录严重错误日志error_log /var ...
分类:其他好文   时间:2017-05-13 09:54:25    阅读次数:220
ORACLE查看并修改最大连接数
1. 查看processes和sessions参数 2. 修改processes和sessions值 SQL> alter system set processes=300 scope=spfile; 系统已更改。 SQL> alter system set sessions=335 scope=s ...
分类:数据库   时间:2017-05-12 09:35:03    阅读次数:221
1265条   上一页 1 ... 67 68 69 70 71 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!