#Oh My Zsh - Git Cheat Sheet
g
– git
gst
– git status
gl
– git pull
gup
– git pull --rebase
public class DynamicServiceActivatorBeanDefinitionParser extends AbstractSingleBeanDefinitionParser { | |
protected Class getBeanClass(Element element) { | |
return DefaultDynamicServiceActivator.class; | |
} | |
@Override | |
protected void doParse(Element element, BeanDefinitionBuilder bean) { | |
List<Element> methodElements = DomUtils.getChildElementsByTagName(element, "method"); | |
ManagedMap<String, BeanDefinition> methodMetadataMap = null; |
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.8.+' | |
} | |
} | |
apply plugin: 'android' |
#Oh My Zsh - Git Cheat Sheet
g
– git
gst
– git status
gl
– git pull
gup
– git pull --rebase
$ uname -r
# http://christopher5106.github.io/deep/learning/2016/06/07/recurrent-neural-net-with-Caffe.html | |
# https://github.com/BVLC/caffe/pull/3948 | |
# https://github.com/junhyukoh/caffe-lstm/blob/master/examples/lstm_sequence/lstm_sequence.cpp | |
# https://github.com/BVLC/caffe/issues/4547 | |
import caffe | |
import numpy as np | |
import matplotlib.pyplot as plt |
Integrate JMH (Java Microbenchmarking Harness) with Spring (Boot) and make developing and running benchmarks as easy and convinent as writing tests.
Wrap the necessary JMH boilerplate code within JUnit to benefit from all the existing test infrastructure Spring (Boot) provides. It should be as easy and convinent to write benchmarks as it is to write tests.