码迷,mamicode.com
首页 >  
搜索关键字:kafka 扩容 topic empty    ( 15636个结果
Wildcard Matching
题目 Implement wildcard pattern matching with support for '?' and '*'. '?' Matches any single character. '*' Matches any sequence of characters (including the empty sequence). The matching sh...
分类:其他好文   时间:2014-06-25 19:56:35    阅读次数:275
如何扩容swap分区
如何扩容swap分区现在swap分区有9G想要扩容为11G,磁盘空间从/home目录下提取操作步骤如下:注解:1.在空闲的分区下生成一个空文件,大小为下面命令参数中的bs*count。dd if=/dev/zero of=/opt/swapfiles bs=1024k count=20482.格式化...
分类:其他好文   时间:2014-06-25 18:37:38    阅读次数:209
【Leetcode】Length of Last Word
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word does not exist, return 0. Note: A word is...
分类:其他好文   时间:2014-06-25 10:30:08    阅读次数:220
[]leetcode]Unique Paths II
Follow up for "Unique Paths":Now consider if some obstacles are added to the grids. How many unique paths would there be?An obstacle and empty space i...
分类:其他好文   时间:2014-06-25 09:17:03    阅读次数:159
PHP 第一天
day1——变量:1、可以使用unset()释放指定的变量;使用isset()检测变量是否存在;使用empty()检查变量是否为空!!<?php //声明变量$var,赋予一个空值 $var=‘‘; //结果为true,因为$var为空 if(empty($var)){ echo"$variseither0ornotsetatall!!"; } //结果为false,因为..
分类:Web程序   时间:2014-06-25 06:38:06    阅读次数:281
Odoo 的库存管理与OpenERP之前的版本有了很大的不同,解读Odoo新的WMS模块中的新特性
原文来自:http://shine-it.net/index.php/topic,16409.0.html库存移动(Stock Move)新玩法Odoo的库存移动不仅仅是存货在两个“存货地点”之间的移动的基本概念了,他们可以被“串联”在一起,可以用来生成或改变其对应的拣货单(Picking)。链式库...
分类:其他好文   时间:2014-06-24 14:53:00    阅读次数:3925
使用两个队列实现一个栈
先普及小知识: STL 中栈的使用方法(stack)   基本操作: push(x) 将x加入栈中,即入栈操作 pop() 出栈操作(删除栈顶),只是出栈,没有返回值 top() 返回第一个元素(栈顶元素) size() 返回栈中的元素个数 empty() 当栈为空时,返回 true STL 中队列的使用(queue) 基本操作:...
分类:其他好文   时间:2014-06-22 19:09:51    阅读次数:169
leetcode 题解: Length of Last Word
leetcode:Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last...
分类:其他好文   时间:2014-06-22 13:41:07    阅读次数:154
SERVERAID 8K和8K-L阵列卡在添加新硬盘时会丢失阵列配置信息
客户有一台IBMX3400需要扩容本地硬盘,去之前以为和IBMx3650M4等服务器类似,就没有多查资料,到现场后发现阵列卡型号是SERVERAID8K,整个配置界面与x3650M4的webbios配置阵列卡完全不同,没敢贸然操作,上网查了查资料,一些注意的地方和大家分享一下。使用ARC配置ServeRAID_8..
分类:其他好文   时间:2014-06-21 19:20:21    阅读次数:334
LeetCode:Valid Sudoku,Sudoku Solver(数独游戏)
Valid SudokuDetermine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.The Sudoku board could be partially filled, where empty cells are...
分类:其他好文   时间:2014-06-21 16:40:45    阅读次数:280
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!