码迷,mamicode.com
首页 >  
搜索关键字:lock file    ( 64335个结果
读书笔记-APUE第三版-(5)标准IO库
ISO C标准I/O库使用流的概念读写文件。流是对数据传输的抽象,可以把流理解为从起点到终点间的字节序列。 标准I/O库通过维护进程空间内的缓冲区,减少read/write系统调用次数来提高I/O效率。之前介绍的Unbuffered I/O和文件描述符fd打交道,标准I/O则使用FILE指针。 typedef struct{ short level;/*缓冲区满程度*/ uns...
分类:其他好文   时间:2014-05-10 09:37:37    阅读次数:388
解决vsftp "上传 553 Could not create file"
这个问题只要:       1. setsebool -P ftpd_disable_trans 1       2. service vsftpd restart       太纠结了,呵呵...
分类:其他好文   时间:2014-05-07 08:22:48    阅读次数:291
[jekyll] 乱码问题invalid byte sequence in GB2312
这里是windows下 使用1.4.3版本时候出现的问题。 问题1  I:\git\orangle.github.io>jekyll serve --watch Configuration file: I:/git/orangle.github.io/_config.yml Source: I:/git/orangle.github.io Destinat...
分类:其他好文   时间:2014-05-07 08:04:31    阅读次数:486
VS2005 SP1 on Windows Server
在XP安装VS2005 SP1时,没有一点问题;;但是在Server版,就会... ...         出现问题: Error 1718.File C:WINDOWS\Installer\3951d.msp did not pass the digital signature check. For more information about a possible resolution for this problem, see...
分类:Windows程序   时间:2014-05-07 07:35:38    阅读次数:476
android调用系统相机拍照并保存在本地
import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.Calendar; import java.util.Locale; import android.annotation.Su...
分类:移动开发   时间:2014-05-07 07:09:47    阅读次数:418
列出某个目录下的所有Java文件
import java.io.File; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.junit.Test; public class ListFile { public void listJavaFil...
分类:编程语言   时间:2014-05-07 06:31:39    阅读次数:377
boost::mpl::eval_if的用法
最近看boost的时候总是遇见这个eval_if,不知道啥意思,就没法看下去了,比如 前篇文章boost::serialization 拆分serialize函数分析时就出现这样一段代码: template inline void split_member(Archive & ar, T & t, const unsigned int file_version) { typedef BOOS...
分类:其他好文   时间:2014-05-07 06:21:14    阅读次数:556
libc.so.6 动态库被重命名,命令不能执行
不小心重命名了libc.so.6动态库,运行命令 #mv /lib/libc.so.6 /lib/libc.so.6.back #ls ls: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory 各种命令都不好...
分类:其他好文   时间:2014-05-07 04:49:53    阅读次数:319
AssertionError、Error和Throwable
AssertionError继承Error,提供了多个构造方法,代码如下: /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this w...
分类:其他好文   时间:2014-05-07 03:20:22    阅读次数:579
ASP.NET MVC 动态加载图像
private ImageInfo CreateImageFile(string fileName) { if (!File.Exists(fileName)) return null; Image image = Image.FromFile(fileName); MemoryStream ms....
分类:Web程序   时间:2014-05-06 10:01:43    阅读次数:313
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!