码迷,mamicode.com
首页 >  
搜索关键字:direct path write temp    ( 55479个结果
SQL Developer 4.0 启动报错“unable to create an instance of the java virtual machine located at path”
安装了Oracle之后,第一件事情就是想想怎么去连接,进而操作。SQL Developer是官方提供的强大工具,个人看来也是第一选择。目前官网提供的最新版是4.0.1.14.48,下载下来之后,就跃跃欲试了。将下载下来的包解压,直接运行sqldeveloper.exe这个文件,选择了本地安装的JDK...
分类:数据库   时间:2014-05-01 13:27:12    阅读次数:477
整理,模板
组合数学、-排列组合数----sum求sum=sum*(m--)/i;int c(int n,int m)//n下标,m上标{ int sum=1; for(int i=1;in-m) m=n-m; int temp=n; for(int i=1;i1) { up[j]/=temp; d...
分类:其他好文   时间:2014-05-01 01:07:44    阅读次数:409
JDK Environment Variable And Change default JDK
Environment Variable :change(import) /etc/bashrc export JAVA_HOME=/software/jdk1.8.0 export PATH=$JAVA_HOME/bin:$PATH export CLASSPATH=.:$JAVA_HOME/li...
分类:其他好文   时间:2014-04-30 23:18:44    阅读次数:386
javaScript基础知识学习总结
javaScript  总结 1 Javascript的基本功能 写入HTML输出 document.write("This is a heading"); 对事件作出反应 点击这里 改变HTML内容 x=document.getElementById("demo")  //查找元素 x.innerHTML="Hello JavaScript";    //改变内容 改变HTML...
分类:编程语言   时间:2014-04-29 13:35:22    阅读次数:417
排序算法-冒泡——插入——快排
冒泡排序,往两个方向泡,一个往小泡,一个网大泡 #include #include #include void bubble_sort(int *a,int n){ int temp; for(int i=0;i<n;i++) for(int j=0;ja[j+1]){ temp=a[j]; a[j]=a[j+1]; ...
分类:其他好文   时间:2014-04-29 13:28:21    阅读次数:364
Leetcode:Minimum Path Sum 最小路径和
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path. Note: You can only move either down or right at...
分类:其他好文   时间:2014-04-28 10:46:41    阅读次数:311
paip.utf-8,unicode编码的本质输出unicode文件原理 python
paip.utf-8,unicode编码的本质输出unicode文件原理 python      #别的语言,java php都是unicode,走十python不一样.    #enddef  #todo write to unicode encode fileHandle = open ( r"c:\fmtSmpEnRst.txt", 'w',encoding="UTF-16"...
分类:编程语言   时间:2014-04-28 10:28:42    阅读次数:374
Docker常用命令
Usage: docker [OPTIONS] COMMAND [arg...]  -H=[unix:///var/run/docker.sock]: tcp://host:port to bind/connect to or unix://path/to/socket to use A self-sufficient runtime for linux containers. Co...
分类:其他好文   时间:2014-04-28 10:17:41    阅读次数:359
Linux 0.11中write实现
看了一下Linux 0.11版本write的实现,首先它在标准头文件unistd.h中有定义 int write(int fildes, const char * buf, off_t count); 接下来看write.c /* * linux/lib/write.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__...
分类:系统相关   时间:2014-04-27 21:45:04    阅读次数:523
交叉编译QT环境的搭建
前提:你的Linux下有已经搭建好的交叉编译链(如arm-linux-gcc 4.3.2),并且已经设置好环境变量。 export PATH=/usr/local/arm/4.3.2/bin:/$PATH   1.下载文件如:qt-everywhere-opensource-src-4.6.3.tar.gz解压 2.裁剪QT ./configure -prefix /usr/loc...
分类:其他好文   时间:2014-04-27 21:26:59    阅读次数:363
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!