This file contains hidden or 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 com.vivosys.cluster.hazelcast; | |
import com.vivosys.cluster.api.Cluster; | |
import com.vivosys.cluster.api.ClusterException; | |
import com.google.common.collect.ImmutableList; | |
import com.hazelcast.core.*; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import java.util.Iterator; |
This file contains hidden or 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
Mar 20, 2012 3:20:30 PM org.apache.commons.httpclient.HttpConnection releaseConnection | |
FINE: Releasing connection back to connection manager. | |
Mar 20, 2012 3:20:30 PM org.apache.commons.httpclient.HttpConnection releaseConnection | |
FINEST: enter HttpConnection.releaseConnection() | |
Mar 20, 2012 3:20:30 PM org.apache.commons.httpclient.HttpConnection isResponseAvailable | |
FINEST: enter HttpConnection.isResponseAvailable() | |
Mar 20, 2012 3:20:30 PM org.apache.commons.httpclient.HttpMethodBase shouldCloseConnection | |
FINE: Should NOT close connection in response to directive: keep-alive | |
Mar 20, 2012 3:20:30 PM org.apache.commons.httpclient.HttpMethodDirector processWWWAuthChallenge | |
FINE: Authentication challenge(s) not found |
This file contains hidden or 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
function parse_git_dirty { | |
git symbolic-ref HEAD > /dev/null 2>&1 || return | |
git status 2> /dev/null | grep -q "nothing to commit" || echo "[d]" | |
} | |
function parse_git_stash { | |
git symbolic-ref HEAD > /dev/null 2>&1 || return | |
[[ $(git stash list 2> /dev/null | tail -n1) != "" ]] && echo "[s]" | |
} |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<servers> | |
<server> | |
<username>username</username> | |
<password>password</password> | |
<id>vivosys-repo</id> | |
</server> | |
</servers> |
This file contains hidden or 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
<!-- Need to use 1.6 target, datanucleus enhancer does not support 1.7 (http://www.jpox.org/servlet/jira/browse/NUCMAVEN-26) --> | |
<!-- | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
</configuration> | |
</plugin> |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<servers> | |
<server> | |
<username>username</username> | |
<password>password</password> | |
<id>vivosys-release</id> | |
</server> | |
<server> |
This file contains hidden or 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
import com.google.common.base.MoreObjects; | |
import com.google.common.base.Objects; | |
public class Address { | |
... | |
@Override | |
public boolean equals(Object obj) { |
NewerOlder