码迷,mamicode.com
首页 >  
搜索关键字:error while loading shared libraries nginx    ( 90573个结果
20140429
1、单链表循环体用while(p->next!=NULL)而不用while(p!=NULL)的原因 node *Find_MidNode(node *head){ if(head->next==NULL||head->next->next==NULL) return head->next; node...
分类:其他好文   时间:2014-07-22 23:11:15    阅读次数:374
解决Oracle ORA-12505, TNS:listener does not currently know of SID given in connect(转)
http://anthon-lx.iteye.com/blog/811460完整的错误信息如下:java.sql.SQLException: Listener refused the connection with the following error:ORA-12505, TNS:listene...
分类:数据库   时间:2014-07-22 23:09:35    阅读次数:430
浅谈Entity Framework中的数据加载方式
本文简单介绍了Entity Framework中的几种数据加载方式:惰性加载(Lazy Loading),显式加载(Explicit Loading),预先加载(Eager Loading)
分类:其他好文   时间:2014-07-22 23:07:13    阅读次数:364
一个静态的HTML页面用jquery ajax登录到sharepoint页面
$.ajax({type:"get", url:"http://", data:"name="+userid+"&password="+password,async:true, error:function(request){alert("Connectionerror"); }, success:...
分类:Web程序   时间:2014-07-22 23:06:54    阅读次数:373
hdu 1005 数论 循环
给定 ab 与飞 f1 f2 求f(n) = (A * f(n - 1) + B * f(n - 2)) mod 7.分析:1 因为mod7 0using namespace std;int main(){ int a,b,n; int f[1005]; while(cin>>a>...
分类:其他好文   时间:2014-07-22 23:06:34    阅读次数:391
hdu 1211
这题就是 要你找出一个ASCII 的值x使得 : x^e%n==num(当前输入的数,e条件已给出)zsd:1: ASCII0-255可以枚举2: =a^11 11=1011int pow2( int a, int b ){ int r = 1, base = a; while( b...
分类:其他好文   时间:2014-05-01 16:22:43    阅读次数:326
转:nginx防DDOS攻击的简单配置
文章来自于:近期由于工作需要,做了些防DDOS攻击的研究,发现nginx本身就有这方面的模块ngx_http_limit_req_module和ngx_http_limit_conn_module。一、基本介绍 1.ngx_http_limit_req_module 配置格式及说明: 设置一个...
分类:其他好文   时间:2014-05-01 14:11:34    阅读次数:465
css3超炫8种loading加载特效
css3超炫loading加载特效
分类:Web程序   时间:2014-05-01 01:27:05    阅读次数:462
prefix css3漏斗Loading加载动画
css3漏斗Loading加载动画
分类:Web程序   时间:2014-05-01 01:15:57    阅读次数:609
走进C标准库(6)——"string.h"中函数的实现memchr
我写的memchr:1 void *memchr(const void *buf, char ch, unsigned count){2 unsigned int cnt = 0;3 while(*(buf++) != ch && cnt count)5 ret...
分类:其他好文   时间:2014-05-01 00:50:10    阅读次数:306
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!