码迷,mamicode.com
首页 >  
搜索关键字:modify    ( 1504个结果
使用cgroup 限制进程的磁盘io
cat /etc/cgconfig.conf  # #  Copyright IBM Corporation. 2007 # #  Authors:     Balbir Singh balbir@linux.vnet.ibm.com> #  This program is free software; you can redistribute it and/or modify it ...
分类:系统相关   时间:2015-01-27 23:35:05    阅读次数:268
git使用(二):修改代码并提交修改文件
修改文件后,如何提交到git服务器? (1)首先需要add,比如.config是被修改的文件,则  git add .config (2)然后执行git commit -m "modify .config for some reason" (3)然后git push 到git服务器 (4)更新:git pull (5)查看log:git log 如下是全部过程: root@...
分类:其他好文   时间:2015-01-27 00:33:42    阅读次数:159
WebService 服务端的XML配置
1 2 3 4 JAX-RS Tools Generated - Do not modify 5 JAX-RS Servlet 6 com.sun.jersey.spi.container.servlet.ServletContainer 7 8 ...
分类:Web程序   时间:2015-01-23 15:50:45    阅读次数:214
用C实现字符串分割并返回所有子串
#include #include #include #include char ** split(char *mother, char split_char){ char *arry[1024]; //the MAX sub string is 1024 and you can modify .....
分类:其他好文   时间:2015-01-22 12:35:56    阅读次数:167
ios svn常用命令注意事项,xcode svn
ios项目开发中常用的svn命令 1.文件的状态的含义: A:add,新增文件 A+:修改图片资源名称 C:conflict,冲突 D:delete,删除 M:modify,本地已经修改 G:modify and merGed,本地文件修改并且和服务器的进行合并 U:update,从服务器更新 R:replace,文件被替换 I:ignored,忽略 ?:不识别,需要手动ad...
分类:移动开发   时间:2015-01-21 09:04:08    阅读次数:268
PHP缓存机制Output Control详解
这篇文章主要介绍了PHP缓存机制Output Control,需要的朋友可以参考下 在php5.2版本的配置中,默认output_buffering为关闭状态,因此运行下面三行代码将会出现一个警告: Warning: Cannot modify header information - header...
分类:Web程序   时间:2015-01-17 22:12:35    阅读次数:172
[AngularJS] Using AngularJS interceptors with $http
Sometimes you might need to modify HTTP requests and responses. This could be for a variety of reasons such as adding global logic handling for HTTP e...
分类:Web程序   时间:2015-01-15 07:04:20    阅读次数:166
rsync +inodify实现文件同步
我的配置:A为服务端B为客户端A和B的配置请参考rsync+ssh因为rsync使用ssh通道,所以rsync的服务端没有必要配置,也不必启动,rsync在传输的时候使用ssh所在的端口我在A端写的脚本#!/bin/bashhost1=192.168.2.81src=/data/crashst1=/data/crashuser=root/usr/local/bin/inotify..
分类:其他好文   时间:2015-01-15 01:53:15    阅读次数:155
numpy 中 + 和 += 的区别
+= acts in place to modify an existing array rather than create a new one. a = ones((2,3),dtype = int) # a 是 int32 array([[1, 1, 1],        [1, 1, 1]]) b = random.random((2,3))  # b是float64 ...
分类:其他好文   时间:2015-01-12 19:15:17    阅读次数:165
Avoid exception: Have no modify permission on Team when creating business object.
~~~~~~~~~~Background~~~~~~~~~~If using API to create a business object for a non-administrative account, then an exception may occurlike this:the curr...
分类:其他好文   时间:2015-01-07 22:01:35    阅读次数:154
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!