码迷,mamicode.com
首页 >  
搜索关键字:direct path write temp    ( 55479个结果
uboot mmc read/write命令用法
mmc read用来读取mmc内容到内存, mmc write用来写入内存内容到mmc中 具体用法, mmc read addr blk# cnt [partition] mmc write addr blk# cnt [partition] mmc list device num是mmc的设备号,...
分类:其他好文   时间:2014-09-09 21:24:19    阅读次数:477
C库文件操作
C lib的文件操作是独立于具体的操作系统平台的1. 创建和打开FILE *fopen(const char *path, const char *mode);fopen()实现打开指定文件filename,其中的mode为打开模式,C lib中支持打开的mode如下:其中b用于区分二进制文件和文本...
分类:其他好文   时间:2014-09-09 20:00:19    阅读次数:187
link_to和其对应要跳转的的url,用path和直接路由方法
link_to和其对应要跳转的的url,用path和直接路由方法看看link_to "alert(1)"} %> 在rake routes中看到,定义好的路由是:C:\Users\Administrator\Desktop\lianxizhong\lianxi1_form_f...
分类:其他好文   时间:2014-09-09 19:51:59    阅读次数:128
重构笔记
提炼函数(Extract Method)我们需要的是一些简短而命名良好的函数。首先每个函数的粒度小的话,那该函数被复用的机会就越大;其次,这会提高代码可读性,使高层函数读起来像注释;再次,如果函数都是细粒度,则覆写起来会容易些。1、首先使用以查询代替临时变量(Replace Temp with Qu...
分类:其他好文   时间:2014-09-09 18:11:39    阅读次数:225
dbca时报错:ORA-12705(NLS_LANG=AMERICAN_AMERICA.UTF8);
#add by zexport ORACLE_BASE=/u01/oracleexport ORACLE_HOME=/u01/oracle/11.02export ORACLE_SID=zexport PATH=$PATH:$ORACLE_HOME/bin:$ORACLE_HOMEexport LD...
分类:数据库   时间:2014-09-09 17:49:29    阅读次数:1151
Mmap的实现原理和应用
http://blog.csdn.net/edwardlulinux/article/details/8604400很多文章分析了mmap的实现原理。从代码的逻辑来分析,总是觉没有把mmap后读写映射区域和普通的read/write联系起来。不得不产生疑问:1,普通的read/write和mmap后...
分类:其他好文   时间:2014-09-09 17:35:59    阅读次数:206
关于spring中初始化出差的问题applicationcontext.xml无法加载
关于spring出现 ?? Exception in thread "main" java.lang.ExceptionInInitializerError,告错的问题: 在建立工程项目是,为了能够提供jar包支持,我创建了build path 添加了spring3.0 user library在这个名称下添加了所有spring的jar包支持。 为了能够发布项目我又在web的lib下添加了...
分类:移动开发   时间:2014-09-09 16:18:48    阅读次数:154
浏览器的版本和类型
document.write("本浏览器的名称为:" + navigator.appName);document.write("本浏览器的版本为:" + navigator.appVersion);
分类:其他好文   时间:2014-09-09 15:56:28    阅读次数:154
bat命令运行java程序
注意空格本文主要介绍在window下bat批处理文件调用java的方法。@echo offecho 正在加密,请稍后....echo path:%~dp0set base=%~dp0set class=%base%\binset libs=%base%\libset class_path=%clas...
分类:编程语言   时间:2014-09-09 15:53:18    阅读次数:220
Path Sum <leetcode>
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:其他好文   时间:2014-09-09 15:11:38    阅读次数:140
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!