개발183 tar gz 리스트 보기 tar -tf filename.tar.gz or SyntaxTo view a detailed table of contents for archive called my-data.tar.gz, use the following syntax: tar -ztvf my-data.tar.gz tar -tvf my-data.tar.gz tar -tvf my-data.tar.gz 'search-patter'ExamplesLet us see some examples:Task: List the contents of a tar fileUse the following command: $ tar -tvf file.tar Sample outputs: Task: List the contents of a tar.gz fileUse th.. 2017. 5. 22. spark transformation 설명-예제 모음 https://www.supergloo.com/fieldnotes/apache-spark-examples-of-transformations/ 조음 MAP(FUNC)What does it do? Pass each element of the RDD through the supplied function; i.e. funcSpark map function example1234 scala> val rows = babyNames.map(line => line.split(","))rows: org.apache.spark.rdd.RDD[Array[String]] = MappedRDD[360] at map at :14 What did this example do? Iterates over every line in the.. 2017. 4. 21. 편리한 Junit 사용 moreunit 'eclipse market place' -> moreunit 설치 단축키)ctrl + j : 코드간 이동 및 생성ctrl + r : 테스트 실행 2017. 4. 20. 스프트웨어 테스트 소프트웨어 테스트. (소프트웨어 테스팅).간단하게 말하자면 “소프트웨어의 결함이 존재함을 보이는 과정”. 소프트웨어가 문제가 없다를 보이는 것이 아니라 문제가 있다를 밝히는 과정이다.SWLC(소프트웨어 생명주기)의 프로세스 [요구사항 분석 - 설계 - 구현 - 테스트 - 유지보수] 에서 거의 마지막 단계이다.소프트웨어 테스터들은 “이 소프트웨어가 완벽하군요!” 라고 하는 것이 아니라,“이 소프트웨어는 결함이 없군요!” 라고 말해야 한다. 요구사항 설계와 다르게 동작하는 것은 모두 “결함”이며 이미 제작된 소프트웨어에 대해서 테스트 케이스를 만들고 테스팅하는 것은 매우 노력이 많이 들어가므로요즘엔 개발 초기부터 테스트케이스를 만들고 이것으로 개발하는 방식이 각광받고 있다. (이것이 TDD) 2015년 현재.. 2017. 4. 19. 이전 1 ··· 6 7 8 9 10 11 12 ··· 46 다음