码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
Android源码分析(十二)ServiceManager服务分析
一.启动过程分析 基于 binder 机制实现通信,添加服务,查询服务,获取服务。查询,获取服务时候需要检查权限,android是基于Linux底层,所以也很好的实现了linux多用户管理。 frameworks\native\cmds\servicemanager\servicemanager.r ...
分类:移动开发   时间:2018-07-22 12:56:01    阅读次数:242
Nginx 错误日志配置
简介Nginx 软件会把自身的故障信息及用户的日志信息记录到指定的日志文件里。配置记录 Nginx 的错误日志是调试 Nginx 服务的重要手段,属于核心功能模块(ngx_core_module)的参数,该参数的名字是 error_log 语法error_log file level; error_... ...
分类:其他好文   时间:2018-07-22 11:32:34    阅读次数:186
Ultra-QuickSort (归并排序,逆序数)
题目描述 In this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swapping two ad ...
分类:编程语言   时间:2018-07-21 22:43:03    阅读次数:251
Nginx配置文件详细说明
在此记录下Nginx服务器nginx.conf的配置文件说明, 部分注释收集与网络. #运行用户user www-data; #启动进程,通常设置成和cpu的数量相等worker_processes 1; #全局错误日志及PID文件error_log /var/log/nginx/error.log ...
分类:其他好文   时间:2018-07-20 16:49:09    阅读次数:154
保证应用程序只有一个实例运行
public static Process RunningInstance() { Process current = Process.GetCurrentProcess(); Process[] processes = Process.GetProcessesByName(current.Proc... ...
分类:其他好文   时间:2018-07-18 14:13:44    阅读次数:121
搭建proftp服务器
官网:http://www.proftpd.org/ 1.安装 git 仓库:https://github.com/proftpd/proftpd/ make && make install 2. 修改配置(最好采用被动模式) # This sample configuration file ill ...
分类:其他好文   时间:2018-07-16 20:27:05    阅读次数:389
Scrapyd 改进: Web Interface 添加 charset=UTF-8, 避免查看 log 出现中文乱码
0.问题现象和原因 如下图所示,由于 Scrapyd 的 Web Interface 的 log 链接直接指向 log 文件,Response Headers 的 Content-Type 又没有声明字符集 charset=UTF-8,因此通过浏览器查看 log 会出现非 ASCII 乱码。 1.解 ...
分类:Web程序   时间:2018-07-15 17:35:03    阅读次数:523
守护进程
守护进程 主进程创建守护进程 其一:守护进程会在主进程代码执行结束后就终止 其二:守护进程内无法再开启子进程,否则抛出异常:AssertionError: daemonic processes are not allowed to have children 注意:进程之间是互相独立的,主进程代码运 ...
分类:系统相关   时间:2018-07-14 00:50:54    阅读次数:219
【20180712】Nginx 参数优化和内核参数优化
Nginx参数优化worker_processes这里的数值不能超过CPU的总核数,因为在单个核上部署超过1个Nginx服务进程并不能起到提高性能的作用。worker_rlimit_nofileNginx最大可用文件描述符数量,同时需要配置操作系统的"ulimit-n200000",或者在/etc/security/limits.conf中配置worker_connection
分类:其他好文   时间:2018-07-12 20:12:44    阅读次数:146
springboot整合activiti报错[processes/]不存在解决方案
springboot整合activiti时,启动抛异常 nested exception is java.io.FileNotFoundException: class path resource [processes/] cannot be resolved to URL because it d ...
分类:编程语言   时间:2018-07-12 16:26:34    阅读次数:493
1265条   上一页 1 ... 36 37 38 39 40 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!