码迷,mamicode.com
首页 >  
搜索关键字:file upload    ( 54781个结果
如何解决git提交代码冲突
当我们使用git提交代码时,别人可能也同时修改了我们修改的文件,但是别人的先合入到配置库里边,这样当我们的提交要合入时,就会产生冲突,可以使用以下步骤来解决冲突: (1) git rebase    分支名称   本地分支名称 (2)rebase之后,就会显示冲突,到目标文件进行修改 (3)git add . (4)git rebase --continue (5) git rebase...
分类:其他好文   时间:2014-05-10 09:59:20    阅读次数:643
解决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
第一个racket程序:获得字符串中的数字
#! /usr/bin/env racket #lang racket #| NAME: getModelNumber.rkt This program is used to get model number based on the input model file name. USAGE: ./getModelNumber.rkt modelfi...
分类:其他好文   时间:2014-05-07 03:17:09    阅读次数:323
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!