码迷,mamicode.com
首页 >  
搜索关键字:notice    ( 1174个结果
【css】border-image
1. border-image一个新css3 样式给边框增加图片,还可以拉升 或重复图片round 为重复 sketch 为拉升border: 15px solid transparent; -webkit-border-image: url(../img/notice-bg.png)30 3...
分类:Web程序   时间:2015-05-07 23:27:59    阅读次数:155
nginx配置
Nginx配置参数中文说明。#定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8;#全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]err...
分类:其他好文   时间:2015-05-05 18:32:28    阅读次数:149
nginx配置说明
1 #user nobody; 2 worker_processes 1; 3 4 #error_log logs/error.log; 5 #error_log logs/error.log notice; 6 #error_log logs/error.log in...
分类:其他好文   时间:2015-04-30 00:58:06    阅读次数:188
Putchar in Keil C, take 8051 as an instance
In Keil C, it is necessary to implement char putchar(char c), or the powerful function printf would not work. We should notice in here : new line command for serial output be  "\r\n" (line feed:LF,...
分类:其他好文   时间:2015-04-29 07:18:43    阅读次数:128
阿里云服务器nginx多tomcat跳转配置
配置nginx.conf文件 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worke...
分类:其他好文   时间:2015-04-26 09:33:28    阅读次数:225
Java 编码规范
参考Sun公司的Java编码规范,半翻译半理解。 使用空行分割代码块,并给代码块添加注释;一个文件一个类(或者接口),将私有类放在引用该类的公用类的后面;源文件构成:文件注释、package/import、类或接口的声明; /*  * Class name  * Version info  * Copyright notice  * Program de...
分类:编程语言   时间:2015-04-22 20:48:32    阅读次数:198
Nginx配置文件nginx.conf中文详解
Nginx配置参数中文说明。#定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8;#全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]err...
分类:其他好文   时间:2015-04-22 20:07:21    阅读次数:165
PHP中出现Notice: Undefined index的三种解决办法
前一段做的一个PHP程序在服务器运行正常,被别人拿到本机测试的时候总是出现“Notice: Undefined index:”这样的警告,这只是一个因为PHP版本不同而产生的警告(NOTICE或者WARNING),而非错误(ERROR)。PHP中的变量在不声明的情况下使用的时候,PHP4运行正常,但...
分类:Web程序   时间:2015-04-22 17:51:57    阅读次数:144
Domain-Specific Languages
Domain-Specific LanguagesMichael HungerWHENEVER YOU LiSTEN TO A DiSCUSSiON BY ExPERTS in any domain, be it chess players, kindergarten teachers, or insurance agents, you’ll notice that their vocabulary...
分类:其他好文   时间:2015-04-20 09:29:41    阅读次数:120
Nginx之二:nginx.conf简单配置(参数详解)
vim/usr/local/nginx/conf/nginx.conf#usernobody; #程序运行使用账户worker_processes1; #启动的进程,通常设置成和cpu的数量相等#全局错误日志级PID文件#error_loglogs/error.log;#error_loglogs/error.lognotice;#error_loglogs/error.loginfo;#pidlogs/nginx.pid;events..
分类:其他好文   时间:2015-04-17 11:51:37    阅读次数:107
1174条   上一页 1 ... 95 96 97 98 99 ... 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!