Question :I have a plant in which for many materials, I have assigned MRP Controller.Now I want to know that for only this MRP controller, can I set M...
分类:
其他好文 时间:
2015-01-07 14:48:51
阅读次数:
178
Spring + Quartz可以使用annoation方式:1、AppJob类:package com.my.quartz.testquartz1;import org.springframework.scheduling.annotation.Scheduled;import org.sprin...
分类:
编程语言 时间:
2015-01-06 17:07:17
阅读次数:
163
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2015-01-05 00:18:13
阅读次数:
147
Repeating DecimalsThe decimal expansion of the fraction 1/33 is, where theis used to indicate that the cycle 03 repeats indefinitely with no interveni...
分类:
其他好文 时间:
2015-01-04 19:10:32
阅读次数:
212
public class Solution { public int lengthOfLongestSubstring(String s) { int maxLen = 0; int maxLenTmp = 0; Map map = new HashMap( s.len...
分类:
其他好文 时间:
2015-01-04 11:03:57
阅读次数:
145
踩过的坑 遇到CronTriggerFactoryBean class notfound 原因是使用3.1以下的版本,我使用的是3.06发现spring-context-support jar文件下面,压根没有这个类,改成org.springframework.scheduling.quartz.CronTrigg...
分类:
编程语言 时间:
2015-01-03 22:35:00
阅读次数:
335
https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/http://fisherlei.blogspot.com/2012/12/leetcode-longest-substring-without.htmlpublicclassSolution{
publicintlengthOfLongestSubstring(Strings){
if(s==null||s.isEmpty())
return0;/..
分类:
其他好文 时间:
2015-01-02 16:16:01
阅读次数:
119
class Solution {public: int lengthOfLongestSubstring(string s) { char cHash[256]; int cnt = 0, maxCnt = 0; int i, j, k, sSz = ...
分类:
其他好文 时间:
2014-12-31 16:05:02
阅读次数:
143
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.
If the fractional part is repeating, enclose the repeating part in parentheses.
...
分类:
其他好文 时间:
2014-12-30 20:42:23
阅读次数:
122
先看一下RepeatingView: html: ????<tr?wicket:id="repeating">
????????<td><span?wicket:id="actions">[actions]</span></td>
????????<td><span?wicket:id="contactid">[contactid]...
分类:
其他好文 时间:
2014-12-30 17:22:26
阅读次数:
286