/boot 该目录默认下存放的是Linux的启动 文件和内核。 /initrd 它的英文含义是boot loader initialized RAM disk,就是由boot loader初始化的内存盘。在linux内核启动前,boot loader会将存储介质(一般是硬盘)中的initrd文件加载... ...
分类:
其他好文 时间:
2017-09-04 13:14:59
阅读次数:
212
Given an m * n matrix M initialized with all 0's and several update operations. Operations are represented by a 2D array, and each operation is repres ...
分类:
其他好文 时间:
2017-09-01 12:58:42
阅读次数:
157
class dict(object): """ dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(ite... ...
分类:
编程语言 时间:
2017-08-26 22:14:08
阅读次数:
246
class list(object): """ list() -> new empty list list(iterable) -> new list initialized from iterable's items """ def append(self, p_object): # real s... ...
分类:
编程语言 时间:
2017-08-26 22:07:36
阅读次数:
146
Python List方法总结 class list(object): """ list() -> new empty list list(iterable) -> new list initialized from iterable's items """ def append(self, p_o ...
分类:
编程语言 时间:
2017-08-22 10:34:47
阅读次数:
578
The jsp four scopes are same with ServletContext,HttpSession,HttpServletRequest,PageContext? How servlet is initialized by servlet container,is also o ...
分类:
Web程序 时间:
2017-08-15 11:26:36
阅读次数:
193
这个warning是由于初始化顺序引起的, // 会出现warning 的代码! class cInit { public: cInit(std::string str, int a) : str_(str), a_(a) { } private: int a_; std::string str_; ...
分类:
系统相关 时间:
2017-08-08 12:28:07
阅读次数:
178
今天在写Spring程序时遇到了一个很常见的错误,而我以前好像一直没碰到过,今天才见到这个错误,经过研究解决了这个错误,犯这个错误真是不应该啊。 log4j:WARN No appenders could be found for logger (org.springframework.core.e ...
分类:
数据库 时间:
2017-08-05 12:37:19
阅读次数:
357
七月 29, 2017 10:51:00 上午 org.apache.catalina.core.StandardContext listenerStart严重: Exception sending context initialized event to listener instance of ...
分类:
编程语言 时间:
2017-07-29 12:59:48
阅读次数:
2785
严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListenerorg.springframework ...
分类:
Web程序 时间:
2017-07-19 17:42:10
阅读次数:
195