Description Resource
Path Location
Type
cvc-complex-type.2.4.a: Invalid content was found starting with element 'init-param'. One of '{"http://java.sun.com/xml/ns/javaee":enabled, "http://java.sun....
分类:
Web程序 时间:
2014-06-03 05:31:38
阅读次数:
514
There is no systematic design for shared resource access priority in platform side, and there is no interface provided by
platform that can be used by application to do bandwidth management optimizat...
分类:
其他好文 时间:
2014-06-03 04:54:35
阅读次数:
262
The master DMA arbitration control register (MDMAARBU) controls the priority levels of MDMA requests going out of CorePac. It controls the priority levels used by the L2 memory
controller when sendi...
分类:
其他好文 时间:
2014-06-03 02:39:09
阅读次数:
311
(1)jsp是什么?
java server page,java服务器端页面技术。其主要作用在服务器端动态生成页面,其组成java代码和html.
(2)jsp的组成?
A. html:包括css/js
B.java代码
java代码段
表达式
jsp声明:
C.jsp隐含对象
对象不需要创建,可以直接调用。 out、 request、 response、 session、 ...
分类:
Web程序 时间:
2014-06-03 02:36:43
阅读次数:
378
“马云在进行一场豪赌”,我对我屌丝朋友说。
“你是说跟王健林1亿元的赌注吗,这事儿我知道,你真out”,朋友头也不抬地只顾着吃碗里的兰州拉面了。
“1亿也叫豪赌,你也太小看马云了”,我看了看我已经见底儿的拉面碗,拿起筷子迅速地从他碗里捞了一筷子拉面。
“靠,又抢我的,跟你出来吃饭就没吃饱过”,朋友端起碗迅速地往旁边躲。
“别躲,我跟你说个事儿,关于马云的O2O之路,那才算豪...
分类:
其他好文 时间:
2014-06-03 00:01:50
阅读次数:
319
/*
**AVL平衡树插入例程
**2014-5-30 11:44:50
*/
avlTree insert(elementType X, avlTree T){
if(T == NULL){
T = malloc(sizeof(struct avlTree));
if(T == NULL) fatalError("Out of space!!!");
T->element = X...
分类:
其他好文 时间:
2014-06-01 09:50:16
阅读次数:
233
/******* 导出到excel
EXEC master..xp_cmdshell 'bcp SettleDB.dbo.shanghu out c:\temp1.xls -c -q -S"GNETDATA/GNETDATA" -U"sa" -P""'
/*********** 导入Excel
SELECT *
FROM OpenDataSource( 'Microsoft....
分类:
数据库 时间:
2014-06-01 09:14:39
阅读次数:
410
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-06-01 09:05:42
阅读次数:
271
错误1 ——
Caused by: android.content.res.Resources$NotFoundException:
String resource ID #0x0
错误原因——...
分类:
移动开发 时间:
2014-05-31 21:39:18
阅读次数:
642
题目一:CombinationsGiven two integersnandk, return all
possible combinations ofknumbers out of 1 ...n.For example,Ifn= 4 andk= 2, a
solution is:[ [2,4],....
分类:
其他好文 时间:
2014-05-31 20:01:02
阅读次数:
455