完整错误信息:Description	Resource	Path	Location	TypeProject configuration is not up-to-date with pom.xml. Run Maven->Update Project or use Quick Fix.	xunge-web		line 1	Maven Configuration Problem解决办法:...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 18:11:39   
                                阅读次数:
213
                             
                    
                        
                            
                            
                                原文博客链接地址:数据库open报错ORA-01555: snapshot too old
今天正在东莞蜜月的时候,一个学生说他管理的测试库出问题了,无法open,我们先来看看是什么问题:
Recovery of Online Redo Log: Thread 1 Group 4 Seq 4 Reading mem 0
  Mem# 0: /onlinelog/shr/re...
                            
                            
                                分类:
数据库   时间:
2014-07-03 18:11:02   
                                阅读次数:
329
                             
                    
                        
                            
                            
                                环境中遇到了ora-00600 4000错误,涉及的对象即为cluster table,下面我这里简单模拟了一下。供参考!
++++创建测试表
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
...
                            
                            
                                分类:
数据库   时间:
2014-07-03 13:47:38   
                                阅读次数:
400
                             
                    
                        
                            
                            
                                [LeetCode]Remove Duplicates from Sorted List...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 16:00:08   
                                阅读次数:
202
                             
                    
                        
                            
                            
                                #include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#define inf 0x3f3f3f3f
#define eps 1e-6
#define ll __int64
using namespace std;
#define N 10010
#define M 1000...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 16:22:19   
                                阅读次数:
224
                             
                    
                        
                            
                            
                                #include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#define inf 0x3f3f3f3f
#define eps 1e-6
#define ll __int64
using namespace std;
#define N 1010
#define M 20010...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 16:59:36   
                                阅读次数:
226
                             
                    
                        
                            
                            
                                android4.4系统解决“ERRORcouldn't find native method”方法           今天笔者在移植一个tv模块从android4.2到android4.4系统的设备上,同样的代码,同样的方法,就是运行不起来。大概方法就是上层写一个apk,调用一个静态的java库,java库加载调用JNI的库文件,这一套代码在4.2上都是好好的,正常能跑,移到4.4上编译也都没...
                            
                            
                                分类:
移动开发   时间:
2014-07-03 16:30:04   
                                阅读次数:
190
                             
                    
                        
                            
                            
                                Java层的Binder对象模型:
IBinder
IBinder是Binder通信机制中的核心部分(Base interface for a remotable object, the core part of a lightweight remote procedure call mechanism designed for high performance when pe...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 16:46:20   
                                阅读次数:
204
                             
                    
                        
                            
                            
                                我们通常用诸如 "./configure", "make","make install"
 等命令就可以把源码包安装到系统中,但是背后的原理是什么呢?当我们需要修改源码,加入自己的代码后如何修改呢?所以需要学习如何利用 GNU Autoconf 及 Automake 这两套工具来自动产生 Makefile文件。下面的内容综合了一些网上找到的资源。
先来一个例子
1.系统中...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 18:23:52   
                                阅读次数:
278
                             
                    
                        
                            
                            
                                FDNY to the Rescue!
Time Limit: 1000MS
 
Memory Limit: 10000K
Total Submissions: 2368
 
Accepted: 721
Description
The Fire Department of New York (FDNY) has always been p...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 17:40:05   
                                阅读次数:
349
                             
                    
                        
                            
                            
                                ruby on rails 修改数据库内所有用户的密码 ,全部改成1111
项目文件夹内:
rails c
User.all.each do |u|
u.password='1111'
u.password_confirmation='1111'
u.save
end...
                            
                            
                                分类:
数据库   时间:
2014-07-03 18:31:09   
                                阅读次数:
237
                             
                    
                        
                            
                            
                                vim学习之以退为进——可重复移动和可重复修改的美妙结合...
                            
                            
                                分类:
移动开发   时间:
2014-07-03 18:30:32   
                                阅读次数:
230
                             
                    
                        
                            
                            
                                最短路判断是否出现负环。
SPFA过的,以前用Bellman。那是好久之前跟着一群大神混过去的,都忘了题了。
现在更深刻的理解图了。
给n点,m条正权边,w条负权边。
正权边是无向的,负权边是单向的。
判断是否出现了负环。
用SPFA,当某个点n 次入队了之后,肯定出现了负权。
#include
#include
#include
#include
#incl...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 16:19:42   
                                阅读次数:
182
                             
                    
                        
                            
                            
                                二分查找树(也叫二叉查找树、二叉排序树)的提出是为了提供查找效率,之所以称为二分查找树,因为该二叉树对应着二分查找算法,查找平均的时间复杂度为o(logn),所以该数据结构的提出是为了提高查找效率。...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 15:43:16   
                                阅读次数:
286
                             
                    
                        
                            
                            
                                Cocos2d-x v3.1 GUI系统--环境构建(七)          在使用Cocos2d-x的GUI系统时,由于生成的工程默认是没有将GUI系统所需的库导入到项目的,所以我们必须把库导入到工程中并对工程做一些配置才能够使用GUI系统。这篇文章我们先在配置Windows上的环境,并对GUI系统中的组织结构进行一个介绍,然后我们会写一个简单的Demo来测试我们配置的环境,最后我们配置Andr...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 17:13:05   
                                阅读次数:
206
                             
                    
                        
                            
                            
                                错误信息:
When I ran Hardware Event-based Sampling Analysis 0, it showed the ERROR:
Collection failed
Collection failed. The data cannot be displayed.
PMU resource(s) currently being used by...
                            
                            
                                分类:
其他好文   时间:
2014-07-03 17:12:20   
                                阅读次数:
338