Apache服务器处理:ini_set('display_errors', 'Off');ini_set('memory_limit', -1); //-1 / 10240Mini_set("max_execution_time", 0);//ini_set('magic_quotes_gpc', ...
分类:
其他好文 时间:
2015-11-13 11:39:54
阅读次数:
262
#include<stdio.h>#include<string.h>#include<memory.h>#include<assert.h>#defineMAX_SIZE100typedefintDataType;typedefstructSeqList{DataTypearry[MAX_SIZE];size_tsize;}SeqList;//定义一个结构体顺序表voidInitSeqList(SeqList*pSeq){memset(pS..
分类:
其他好文 时间:
2015-11-13 06:41:31
阅读次数:
248
hive.optimize.cp=true:列裁剪hive.optimize.prunner:分区裁剪hive.limit.optimize.enable=true:优化LIMIT n语句hive.limit.row.max.size=1000000:hive.limit.optimize.limi...
分类:
其他好文 时间:
2015-11-06 22:27:00
阅读次数:
267
1 def largestRectangleArea(self, height): 2 height.append(0) 3 size = len(height) 4 no_decrease_stack = [0] 5 max_size = height[0] 6...
分类:
其他好文 时间:
2015-11-04 17:33:13
阅读次数:
226
参考:http://blogs.iis.net/robert_mcmurray/freb-log-file-max-size-truncatecd /d "%windir%\system32\inetsrv"appcmd set config /section:sites -siteDefaults...
分类:
其他好文 时间:
2015-10-30 12:35:51
阅读次数:
869
静态链表的增删插改,注意方法中的边界检查和参数有效性检查。测试用例应全面!!!#include<stdio.h>
#include<stdlib.h>
#include<assert.h>
#defineMAX_SIZE10
typedefintDataType;
typedefstructSeqList
{
DataType_array[MAX_SIZE];//静态数组
size_t..
分类:
其他好文 时间:
2015-10-18 01:27:27
阅读次数:
234
头文件 ;#include 简单应用:begin() 返回set容器的第一个元素end() 返回set容器的最后一个元素clear() 删除set容器中的所有的元素empty() 判断set容器是否为空max_size() 返回set容器可能包含的元素最大个数size...
分类:
其他好文 时间:
2015-10-16 23:21:42
阅读次数:
281
用在多个glance API server 中,对相同的image文件提供服务。该cache对用户透明。配置文件有一个image_cache_max_size,超过的话image cache会被修剪pruner.然而,当GET /images/成功返回一个image时,不管是否超cache,该ima...
分类:
系统相关 时间:
2015-10-15 16:05:49
阅读次数:
247
#include#include#define MAX_SIZE 101//swap function bug//void swap(int x,int y) swap change the location of the two numbervoid swap(int &x,int &y)//w....
分类:
编程语言 时间:
2015-10-14 12:25:53
阅读次数:
125
class Producer implements Runnable{ private final Queue queue; private final static int MAX_SIZE = 200; Producer(Queue q) { queue =...
分类:
其他好文 时间:
2015-09-26 17:18:19
阅读次数:
149