개발환경 37

github 에러...

Can't finish GitHub sharing process Successfully created project 'xxxx-xxxx' on GitHub, but initial push failed: Permission denied (publickey). Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 1. 키를 새로 생성해 보지만 별 효과 없었음. 2. 권한을 변경해 보았지만 효과 없었음. 3. repository를 새로 생성했지만 효과 없었음. ==> git.exe 를 업그레이드를 하니 정상 작동됨..

개발환경 2019.06.17

AggregateQueue 구현

AggregateQueue import java.util.List; /** * Aggregator 를 일부 구현한 클래스. * 적당한 크기와 적당한 시간에 모인 데이터를 aggregate 한다. * @param */public interface AggregateQueue { /** * 큐에 입력한다. * @param o * @throws InterruptedException */ public void put(T o) throws InterruptedException; /** * 큐에서 추출한다. * @return * @throws InterruptedException */ public List take() throws InterruptedException; public int size();} Aggreg..

개발환경 2018.06.01