Full text search for "pattern"


Search BackLinks only
Display context of search results
Case-sensitive searching
  • 숫자포맷유효성체크JavaRegexp . . . . 32 matches
         import java.util.regex.Pattern;
          String pattern = "[0-9]*\\.[0-9]{2}";
          test(pattern, "32");
          test(pattern, "32.1");
          test(pattern, "32.123");
          test(pattern, "32.12");
          pattern = "[0-9]*\\.?[0-9]*";
          test(pattern, "32");
          test(pattern, "32a");
          test(pattern, ".123");
          test(pattern, "3.123");
          test(pattern, "333.123");
          test(pattern, "333.1 23");
          pattern = "[0-9]{0,3}";
          test(pattern, "32");
          test(pattern, "3234");
          test(pattern, "32.3");
          test(pattern, "32.33");
          test(pattern, "32.334");
          pattern = "[0-9]{0,3}\\.[0-9]{1,2}";
  • anal_log.sh . . . . 16 matches
         pattern1="\[$yesterdate/$yesterabmon/$yesteryear"
         pattern2="GET /abc.jsp"
         echo 'pattern1='$pattern1 >> $result_file
         echo 'pattern2='$pattern2 >> $result_file
         result_count=`cat $file | grep $pattern1 | grep "$pattern2" | wc -l`
         pattern1="\[$yesterdate/$yesterabmon/$yesteryear"
         pattern2="GET /ddd.jsp"
         echo 'pattern1='$pattern1 >> $result_file
         echo 'pattern2='$pattern2 >> $result_file
         result_count=`cat $file | grep $pattern1 | grep "$pattern2" | wc -l`
  • PatternTemplate . . . . 10 matches
         = Pattern Name =
         ''Name of Pattern ''
         A statement of the problem this pattern solves. The problem may be stated as a question.
         The context of the solution. This should include the new problems that appear as a result of applying the pattern that will require new patterns for their resolution.
         List or describe places where the pattern is used.
         == Related Patterns ==
         Describe any related patterns and their relationships with this pattern.
         http://www.agcs.com/graphics/patterns/sketch.gif
         '''Author(s):''' Author's name or "as told to" for pattern mining
         '''References:''' References cited in the pattern.
         Sample implementation of the pattern, usually code, pseudo code, etc.
  • ThreadPattern . . . . 8 matches
         [thread] pattern
         [immutable pattern]
         [guarded suspension pattern]
         [producer consumer pattern]
         [read-write lock pattern]
         [thread-per_message pattern]
         [workier pattern]
         [active object pattern]
  • JavascriptRegexp . . . . 4 matches
         [regexp patterns]
         match(), test(), new RegExp("pattern","flags")
         matchedValue = /pattern/.exec(value);
         str.replace(/pattern/, toStr);
  • SAGA Pattern . . . . 3 matches
         분산 환경에서의 트랜잭션을 구현하는 방법으로 SAGA Pattern이라는 것이 있다. SAGA pattern이란 마이크로서비스들끼리 이벤트를 주고받아 특정 마이크로서비스에서의 작업이 실패하면 이전까지 작업이 완료된 마이크로서비스들에게 보상 (complementary) 이벤를 소싱함으로써 분산 환경에서 atomicity를 보장하는 패턴이다. SATA pattern에서의 핵심은 마이크로서비스들끼리 이벤트를 주고 받는다는 것이기 때문에, 이 패턴은 기본적으로 event sourcing 패턴 위에 적용되는 패턴이다.
         from https://velog.io/@dvmflstm/SAGA-pattern%EC%9D%84-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EB%B6%84%EC%82%B0-%ED%8A%B8%EB%9E%9C%EC%9E%AD%EC%85%98-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0
  • Ajax관련사이트 . . . . 2 matches
         http://ajaxpatterns.org
         http://www.google.com/ig => Draggable DOM pattern 을 아주 훌륭하게 적용한 싸이트
  • AntBuild.xml예제3 . . . . 2 matches
          <format property="DSTAMP" pattern="yyyy-MM-dd" />
          <format property="TSTAMP" pattern="HH:mm" />
  • JavaRegexp . . . . 2 matches
         Pattern p = Pattern.compile("[0-9]+");
          Pattern pattern = Pattern.compile("(\\d\\d\\d\\d)-(\\d\\d)-(\\d\\d)T(\\d\\d):(\\d\\d):(\\d\\d).\\d\\d\\d");
          Matcher matcher = pattern.matcher(str);
  • ProducerConsumerPattern . . . . 2 matches
         [thread pattern] >
         producer consumer pattern example
  • SystemRebuilding-201912 . . . . 2 matches
          * pattern : 다양한 소스로부터 인입되는 대량?의 메시지를 동일한 정책으로 정확하게 처리하기(event store based)
          * pattern : event stream pipeline을 통해, 외부 데이터(메시징, API)에 대한 의존성 높은 시스템에서 안전하게 데이터 참조하기
  • BreakingTheCycle . . . . 1 match
         #keywords design pattern
  • CleanArchitecture-2020 . . . . 1 match
         Figure 11.1 Use of the Abstract Factory pattern to manage the dependency
          * The Humble Object Pattern
  • JavascriptLibrary . . . . 1 match
         = format date pattern =
  • Meaning of INVERSION from SOLID DIP . . . . 1 match
         Traditional layers pattern
  • Read-writeLockPattern . . . . 1 match
         [thread pattern]
  • Scala . . . . 1 match
         to express common programming patterns in a consise, elegant, and typesafe
  • SqlInjection . . . . 1 match
         = pattern =
  • Web2.0을활용한사이트 . . . . 1 match
          * Textpattern
  • WikiSlide . . . . 1 match
          * `PageList` - generates lists of pages with titles matching a pattern
  • WikiWikiWeb . . . . 1 match
         The [wiki:Wiki:FrontPage first ever wiki site] was founded in 1994 as an automated supplement to the Wiki:PortlandPatternRepository. The site was immediately popular within the pattern community, largely due to the newness of the internet and a good slate of Wiki:InvitedAuthors. The site was, and remains, dedicated to Wiki:PeopleProjectsAndPatterns.
  • design pattern . . . . 1 match
         [SAGA pattern]
  • jEdit . . . . 1 match
         fastopen.patternFromSelectedText=true
  • pattern . . . . 1 match
         #keywords design pattern
  • regexp . . . . 1 match
         [regexp patterns]
  • thread . . . . 1 match
         [thread pattern]
  • 배경이미지-CssTips . . . . 1 match
         background:url(pattern.gif);
  • 아키텍쳐 패턴 . . . . 1 match
         https://mingrammer.com/translation-10-common-software-architectural-patterns-in-a-nutshell
  • 제13회한국자바개발자컨퍼런스 . . . . 1 match
         Enterprise integration pattern
Found 29 matching pages out of 1800 total pages

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2020-02-06 12:42:21
Processing time 0.3874 sec