查看keystone租户keystone tenant-list查看某租户的配额及使用情况nova absolute-limits –-tenant ac9e6a9f-58c(租户ID)(输出的内容不准确)nova quota-show --tenant 94aadbb947(租户ID)nova-m...
分类:
其他好文 时间:
2015-08-31 16:59:35
阅读次数:
483
今天在检查SMIDB的时候,发现CRS的告警日志中出现很多错误,具体为:2015-08-1917:12:21.745:[/oracle/app/11.2.0/grid_1/bin/oraagent.bin(6227)]CRS-5013:Agent"/oracle/app/11.2.0/grid_1/bin/oraagent.bin"failedtostartprocess"/oracle/app/11.2.0/grid_1/bin/lsnrctl"for..
分类:
数据库 时间:
2015-08-19 21:05:14
阅读次数:
903
1.goal(目标) Computation thinking(计算思维) Understand code(read and write code) Understand abilities and limits map problem into computation 将科学问题转化的计算...
分类:
其他好文 时间:
2015-08-12 19:10:10
阅读次数:
136
Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).
For example,
S = "ADOBECODEBANC"
T = "ABC"
Minimum window is "BAN...
------------------------------------------------------------------------------------------------------------------------------------------------------...
分类:
系统相关 时间:
2015-08-07 09:33:56
阅读次数:
145
1-修改了/etc/pam.d/login中的文件2-修改了/etc/security/limits.conf文件3-查看ll-d/tmp的目录权限
分类:
系统相关 时间:
2015-08-06 18:44:15
阅读次数:
152
头文件中定义了用于表示整类型大小的常量。以下所列的值是可接受的最小值,实际系统中可能有更大的值。CHAR_BIT8char类型的位数CHAR_MAXUCHAR_MAX或SCHAR_MAXchar类型的最大值CHAR_MIN0或SCHAR_MINchar类型的最小值INT_MAX32767int类型的...
分类:
其他好文 时间:
2015-08-06 01:51:44
阅读次数:
140
There are N point on X-axis . Miaomiao would like to cover them ALL by using segments with same length.There are 2 limits:1.A point is convered if the...
分类:
其他好文 时间:
2015-08-01 16:57:56
阅读次数:
102
那是因为nginx限制了上传文件大小,必须指定下。在nginx.conf的http{}中增加client_max_body_size 20m;增加上传大小限制同时要修改php.ini中相关参数[Resource Limits]max_execution_time = 800; Maximum exe...
分类:
Web程序 时间:
2015-07-27 12:58:03
阅读次数:
140
实现一个函数来检查是否平衡树。这个问题而言。 平衡指的是这棵树随意两个叶子结点到根结点的距离之差不大于1。这个题我们能够採用暴力搜索,找到叶子节点到根节点的最小值和最大值。然后他们的差假设大于1就不是平衡树,反之则是平衡树。int MinDepth = std::numeric_limits::ma...
分类:
其他好文 时间:
2015-07-25 21:24:39
阅读次数:
172