码迷,mamicode.com
首页 >  
搜索关键字:tmp    ( 7796个结果
vivado编译出错 [Synth 8-729] [Synth 8-787]
打开vivado工程后,发现右上角如下图所示:重新编译这两个ip核后,对整个工程synthesis,工程报错[Synth 8-729] Failed to open './.Xil/Vivado-4460-WIN-QGJR3VNA4GQ/realtime/tmp/25F5B000.rtd.strap...
分类:其他好文   时间:2016-02-17 22:17:40    阅读次数:1017
[解决方案] pythonchallenge level 6
查看页面代码,知道找zip www.pythonchallenge.com/pc/def/channel.zip,查看zip下的readme.txt知道从90052,跑一遍知道要收集zip的comment zf = zipfile.ZipFile("/tmp/channel.zip") number
分类:编程语言   时间:2016-02-17 17:17:39    阅读次数:203
沙盒(SandBox)
每个ios应用都有自己的应用沙盒,应用沙盒就是文件系统目录,与其他应用的文件系统隔离,ios系统不允许访问其他应用的应用沙盒。在ios8中已经开放访问。 应用沙盒一般包括以下几个文件目录:应用程序包、Documents、Libaray(下面有Caches和Preferences目录)、tmp。 1、
分类:数据库   时间:2016-02-17 14:26:18    阅读次数:206
ThinkPHP项目笔记之控制器常用语法
如,有数据表:tmp,以下以此为例。 $a = M('Tmp'); $a -> select(); $a -> where(condition)->select(); $a -> where(condition)->limit(n)->order(condition2)->select(); $a
分类:Web程序   时间:2016-02-16 16:52:42    阅读次数:137
redis安装
下载redis.sh放到任意目录如/tmp下,下载redis-2.8.17_ucs.tar.gz,并将该包放到/export/servers下 并进行tar xzvf ./redis-2.8.17_ucs.tar.gz解压。 设置redis.sh的脚本权限(chmod +x redis.sh),运行
分类:其他好文   时间:2016-02-16 11:25:15    阅读次数:251
mat的使用
1、安装mat 打开Eclipse - >help - > Eclipse Marketplace 安装mat工具 2、用jmap生产dump内存转储快照,jmap -dump:live,format=b,file=/tmp/dumin.hprof pid 3、通过MAT打开dump出来的内存文件
分类:其他好文   时间:2016-02-15 16:31:52    阅读次数:163
转:解决centos netstat和ps感染木马
解决方法:a.去除恶意文件的执行权限chmod 000 /tmp/gates.lod /tmp/moni.lod service sendmail stopchkconfig --level 345 sendmail offchmod -x /usr/sbin/sendmailchmod -R 00
分类:Web程序   时间:2016-02-14 18:28:58    阅读次数:319
两个数字交换(不使用临时变量)
#include<stdio.h> #include<stdlib.h> voidswap(int*a,int*b)//普通交换 { inttmp=*a; *a=*b; *b=tmp; } //不使用临时变量 voidswap1(int*a,int*b)//使用加减法 { *a=*a+*b; *b=*a-*b; *a=*a-*b; } voidswap2(int*a,int*b)//使用异或 { *a=*a^*b; *b=*a^*b; *..
分类:其他好文   时间:2016-02-11 06:52:33    阅读次数:255
FreeBSD10.2安装apache22
mkdir-p/usr/local/apache22./confingure--prefix=/usr/local/apache22makemakeinstallroot@fb10:/var/tmp/httpd-2.2.31#/usr/local/apache22/bin/apachectl-kstarthttpd:Couldnotreliably(可靠的)determine(决定)theserver‘sfully(充分)qualified(合格)domainname,using..
分类:Web程序   时间:2016-02-10 18:48:28    阅读次数:448
非递归交换二叉树左右子树
1 void exchange( struct node* node){ 2 struct node* tnode = node; 3 struct node* tmp = NULL; 4 5 if(node == NULL) 6 return; 7 8 while(1){ 9 tmp = tnod
分类:其他好文   时间:2016-02-08 17:24:49    阅读次数:223
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!