码迷,mamicode.com
首页 >  
搜索关键字:modified    ( 1174个结果
mybatis中Date和DateTime字段的插入
最近公司使用MyBatis3做数据持久层,在字段中有Date和DateTime类型,在插入数据时只要将实体的属性设置成Timestamp就会对应mysql的DateTime类型,Date会对应mysql的Date类型。 在MyBatis映射文件中要表明映射类型。 在使用字段的时候也要标明类型#{modified_date,jdbcType=TIMESTAMP}、#{da...
分类:其他好文   时间:2014-09-19 01:14:34    阅读次数:640
配置CentOS6.5的yum源
系统yum源(源,英文repository,就是资源库的意思;yum,全称Yellow dog Updater, Modified,是centos的软件包管理器。基于RPM包管理,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软件包。)的位置在/et...
分类:其他好文   时间:2014-09-18 14:36:53    阅读次数:177
CentOS yum 源的配置与使用
一、yum 简介 yum,是Yellow dog Updater, Modified 的简称,是杜克大学为了提高RPM 软件包安装性而开发的一种软件包管理器。起初是由yellow dog这一发行版的开发者Terra Soft 研发,用python写成,那时还叫做yup(yellow dog upd....
分类:其他好文   时间:2014-09-14 12:45:37    阅读次数:467
Reverse Nodes in k-Group
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a multiple of k then le...
分类:其他好文   时间:2014-09-06 12:20:23    阅读次数:171
[C/C++]用const_cast修改const变量会得到什么结果?
const int x=4;int& y = const_cast(x);++y;这时访问x,x会是多少呢?根据C++11标准7.1.6.1.4:Except that any class member declared mutable (7.1.1) can be modified, any at...
分类:编程语言   时间:2014-09-05 14:17:11    阅读次数:217
leetcode - Reverse Nodes in k-Group
Given a linked list, reverse the nodes of a linked listkat a time and return its modified list.If the number of nodes is not a multiple ofkthen left-o...
分类:其他好文   时间:2014-09-05 12:53:01    阅读次数:260
浏览器缓存详解:expires,cache-control,last-modified,etag详细说明
最近在对CDN进行优化,对浏览器缓存深入研究了一下,记录一下,方便后来者画了一个草图:每个状态的详细说明如下:1、Last-Modified在浏览器第一次请求某一个URL时,服务器端的返回状态会是200,内容是你请求的资源,同时有一个Last-Modified的属性标记(HttpReponse He...
分类:其他好文   时间:2014-09-03 14:39:06    阅读次数:216
iOS 协同开发出fatal error: file ‘XX-Prefix.pch’ has been modified since the precompiled header was built
在协同开发的时候,刚刚从svn下载到本地的代码,出现“fatal error: file 'XX-Prefix.pch' has been modified since the precompiled header was built”的问题,这个其实不是什么问题,解决方案如下:1、找到 XX-P....
分类:移动开发   时间:2014-08-31 21:12:31    阅读次数:227
查找某个时间点范围内修改的文件
经常由于磁盘空间不足的原因,需要删除旧文件,因此希望有一个函数,能够查找到某个时间点之前的文件,并删除之。用newLISP来实现的话,需要类似这样的功能:(FILE:locate-modified-file file-path start-time end-time)start-time指的是修改时间的开始, end-time指的是修改时间的结束,按照习惯,这是一个左闭右开区间: [start-t...
分类:其他好文   时间:2014-08-31 02:49:00    阅读次数:239
LeetCode——Reverse Nodes in k-Group
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is...
分类:其他好文   时间:2014-08-30 11:14:19    阅读次数:209
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!