码迷,mamicode.com
首页 >  
搜索关键字:direct path write temp    ( 55479个结果
Java Web 项目打包脚本
可用于(但不限于)Eclipse项目。一次性生成:1.Javadoc.zip包;2.Java源代码.zip包;3.Java二进制文件.jar包;4.Java源代码加二进制.jar包;5.包含Java源代码的.war包。依赖:能在PATH中找到jar、javadoc。因项目和个人习惯不同,脚本可能需要...
分类:编程语言   时间:2014-08-16 17:00:30    阅读次数:208
centos 正确 安装 jdk
1》先找下centos下java默认安装的情况 whereis java which java (java执行路径) echo $JAVA_HOME echo $PATH 2> 查看并卸载: 查看有没有java    采用命令 :rpm -qa | grep java 有的话删除:pm -e --nodeps java-1.4.2-gcj-compat-1.4.2.0-40jpp.1...
分类:其他好文   时间:2014-08-16 16:32:40    阅读次数:192
归档-ios
/****归档**/ NSString *homePath=NSHomeDirectory(); NSString *fileName=@"test.vse"; NSString *path=[homePath stringByAppendingPathComponent:file...
分类:移动开发   时间:2014-08-16 12:32:10    阅读次数:189
冒泡排序
#include void bubble_sort(int a[],int n)//n为数组a的元素个数 { int i,j,temp; for(j=0;ja[i+1]) { temp=a[i]; a[i]=a[i+1]; a[i+1]=temp; ...
分类:其他好文   时间:2014-08-16 11:09:40    阅读次数:222
冒泡排序2
#include void bubble_sort(int a[],int n)//n为数组a的元素个数 { int i,j,temp; for(j=0;ja[i+1]) { temp=a[i]; a[i]=a[i+1]; a[i+1]=temp; ...
分类:其他好文   时间:2014-08-16 11:02:00    阅读次数:235
Ogre Quick Start
下载OGRE Sdk并安装,设置环境变量OGRE_HOME=X:\OGRE\OgreSDK_vc11_v1-9-0与OGRE_RUNTIME=%OGRE_HOME%\bin\debug;%OGRE_HOME%\bin\release,并将OGRE_RUNTIME加到Path中。下载MyGUI相关文件...
分类:其他好文   时间:2014-08-16 08:32:10    阅读次数:211
[leetcode]Minimum Path Sum
Minimum Path SumGiven amxngrid filled with non-negative numbers, find a path from top left to bottom right whichminimizesthe sum of all numbers along ...
分类:其他好文   时间:2014-08-16 02:13:49    阅读次数:189
[leetcode]Sum Root to Leaf Numbers
Sum Root to Leaf NumbersGiven a binary tree containing digits from0-9only, each root-to-leaf path could represent a number.An example is the root-to-l...
分类:其他好文   时间:2014-08-16 00:59:09    阅读次数:197
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 fol...
分类:其他好文   时间:2014-08-15 23:47:19    阅读次数:302
MAC OS X 10.10 应用程序下载失败后lunchpad产生灰色图标的解决办法
方法如下:打开应用程序- 实用工具 - 终端. 以此出入如下字符defaults write com.apple.dock ResetLaunchPad -bool truekillall Dock再次打开 LaunchPad 的时候, 所有图标会被重建, 并且之前的所有设置都会丢失. 没有特殊情况...
分类:其他好文   时间:2014-08-15 23:45:59    阅读次数:418
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!