码迷,mamicode.com
首页 >  
搜索关键字:make: command not fo    ( 1841个结果
Linux的iptables常用配置范例(3)
编辑/etc/rc.local,加入iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -o eth1 -j MASQUERADE,外网口eth1为dhcp获得IP。 进入本机的数据包为INPUT,从本机发送出去的数据包为OUTPUT,只是路由的包为FO ...
分类:系统相关   时间:2016-09-07 22:50:27    阅读次数:262
Hawkular Metrics
Hawkular Metrics 0.19.0 发布了,该版本在性能和REST API方面做了全面的增强,主要包括: REST API - Query ImprovementsIt is now possible to use relative timestamps when querying fo ...
分类:其他好文   时间:2016-09-07 09:14:07    阅读次数:251
springframework开源代码导入eclipse
从毕业到现在已经3个多点年头了,开源框架也用过不少。对于j2ee开发来说,spring框架是是最流行的轻量级可选的框架之一,如果还停留在只会使用,而对源代码不研究是不行的。 话不多说 先从导入代码开始吧 环境:jdk1.8 maven3.3.9 还需安装git bash https://git-fo ...
分类:编程语言   时间:2016-09-07 01:19:01    阅读次数:222
词频统计
1.开始时写的是: #include<stdio.h>#include<string.h> #define int main() {char str[max];int a[27];char s;int length;int i,j,k,l;while(scanf("%s",str)!=EOF){fo ...
分类:其他好文   时间:2016-09-06 21:13:25    阅读次数:108
(C语言)结构体成员的引用->(箭头)和 .(点)
关于结构体成员的引用有这样的规律: 箭头(->):左边必须为指针; 点号(.):左边必须为实体。 那么如果一个结构体指针引用一个成员,这个成员又是一个结构体(并且是一个实体),那么如果要引用这个成员的成员要怎么办呢? 经过实验发现,依然遵循上面的规则即:箭头左边必须是指针,实体一定要用点号引用。fo ...
分类:编程语言   时间:2016-09-05 20:42:34    阅读次数:197
LeetCode 26 Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space fo ...
分类:其他好文   时间:2016-09-04 15:48:56    阅读次数:129
LeetCode Triangle
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the fo ...
分类:其他好文   时间:2016-09-01 14:37:07    阅读次数:120
导航效果(纯CSS版)
还有一种JS方法:将上述的li:hover改为.lihover 然后再添加以下代码即可: <script type="text/javascript"> window.onload=function(){ var oli=document.getElementsByTagName('li'); fo ...
分类:Web程序   时间:2016-08-24 19:11:33    阅读次数:246
Activiti中的各个service的作用
各个Service的作用: RepositoryService 管理流程定义 RuntimeService 执行管理,包括启动、推进、删除流程实例等操作 TaskService 任务管理 HistoryService 历史管理(执行完的数据的管理) IdentityService 组织机构管理 Fo ...
分类:其他好文   时间:2016-08-23 01:07:02    阅读次数:232
zookeeper原理
zookeeper原理 zookeeper为了保证可靠性,不能用一台机器,而应该是一个集群 为了保证zookeeper集群数据能够一致,必须有一个拍板说了算的人,这就是leader,其他的是follower。 某一时刻集群里只能有且仅有一个leader。 leader可以执行增删改和查询操作,而fo ...
分类:其他好文   时间:2016-08-21 00:44:26    阅读次数:136
1841条   上一页 1 ... 83 84 85 86 87 ... 185 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!