This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = <committer name> | |
email = <email address> | |
[gui] | |
encoding = utf-8 | |
[core] | |
autocrlf = off | |
ignorecase = true | |
[format] | |
pretty = format:%h %cr %cN: %s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Configuration config = new Configuration(); | |
// must select both streams to get oldEvents as well | |
config.getEngineDefaults().getStreamSelection().setDefaultStreamSelector(StreamSelector.RSTREAM_ISTREAM_BOTH); | |
AuditPath.isAuditEnabled = true; | |
// get serviceProvider and register global statement result listener to get notified of all events created or removed | |
epService = EPServiceProviderManager.getDefaultProvider(config); | |
EPServiceProviderSPI spi = (EPServiceProviderSPI) epService; | |
((MetricReportingServiceSPI)spi.getMetricReportingService()).addStatementResultListener(new StatementResultListener() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LazyBeanDefinitionDocumentReader extends DefaultBeanDefinitionDocumentReader { | |
@Override | |
protected BeanDefinitionParserDelegate createHelper(XmlReaderContext readerContext, Element root, BeanDefinitionParserDelegate parentDelegate) { | |
root.setAttribute("default-lazy-init", "true"); | |
BeanDefinitionParserDelegate delegate = super.createHelper(readerContext, root, parentDelegate); | |
return delegate; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem windows update fix | |
rem taken from http://www.akaplan.com/blog/wp-content/uploads/2011/11/WindowsUpdateFix_cmd.txt | |
ipconfig /flushdns | |
Cd /d %windir% | |
del /s *.chk;*.rip;*.tmp;~*.* | |
msiexec /regserver | |
sc config msiserver start= auto | |
net stop msiserver | |
msiexec /unreg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.4</version> | |
<configuration> | |
<!--<compilerId>javac</compilerId>--> | |
<source>1.6</source> | |
<target>1.6</target> | |
<compilerArgument>-proc:none</compilerArgument> | |
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package testsupport; | |
import org.concordion.api.ResultSummary; | |
import org.concordion.internal.FixtureRunner; | |
import org.junit.runner.Description; | |
import org.junit.runners.model.FrameworkMethod; | |
import org.junit.runners.model.InitializationError; | |
import org.junit.runners.model.Statement; | |
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Licensed to the Apache Software Foundation (ASF) under one or more | |
* contributor license agreements. See the NOTICE file distributed with | |
* this work for additional information regarding copyright ownership. | |
* The ASF licenses this file to You under the Apache License, Version 2.0 | |
* (the "License"); you may not use this file except in compliance with | |
* the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package utils; | |
import org.springframework.util.MultiValueMap; | |
import java.util.List; | |
import java.util.Map; | |
/** | |
* A Fluent API for manipulating arbitrary maps<br/> | |
*<br/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package servletutils; | |
import java.io.IOException; | |
import javax.servlet.FilterChain; | |
import javax.servlet.ServletException; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletResponse; | |
import javax.servlet.http.HttpServletResponseWrapper; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir ~/tmpbuild | |
cd ~/tmpbuild | |
git clone git://github.com/nsidc/vagrant-vsphere.git | |
cd vagrant-vsphere | |
gem build vSphere.gemspec | |
vagrant plugin install vagrant-vsphere-0.0.1 |
OlderNewer