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
| Daemon Thread [p: thread-pool-1; w: 3] (Suspended) | |
| waiting for: org.neo4j.kernel.impl.transaction.RWLock (id=17911) | |
| java.lang.Object.wait(long) line: not available [native method] | |
| org.neo4j.kernel.impl.transaction.RWLock(java.lang.Object).wait() line: 485 | |
| org.neo4j.kernel.impl.transaction.RWLock.acquireWriteLock() line: 326 | |
| org.neo4j.kernel.impl.transaction.LockManager.getWriteLock(java.lang.Object) line: 130 | |
| org.neo4j.kernel.impl.core.NodeManager.acquireLock(org.neo4j.kernel.impl.core.Primitive, org.neo4j.kernel.impl.transaction.LockType) line: 737 | |
| org.neo4j.kernel.impl.core.NodeManager.createRelationship(org.neo4j.kernel.impl.core.NodeImpl, org.neo4j.graphdb.Node, org.neo4j.graphdb.RelationshipType) line: 318 | |
| org.neo4j.kernel.impl.core.NodeImpl.createRelationshipTo(org.neo4j.kernel.impl.core.NodeManager, org.neo4j.graphdb.Node, org.neo4j.graphdb.RelationshipType) line: 495 | |
| org.neo4j.kernel.impl.core.NodeProxy.createRelationshipTo(org.neo4j.graphdb.Node, org.neo4j.graphdb.RelationshipType) |
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
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>buildnumber-maven-plugin</artifactId> | |
| <version>1.1</version> | |
| <executions> | |
| <execution> | |
| <phase>validate</phase> | |
| <goals> | |
| <goal>create</goal> | |
| </goals> |
This file has been truncated, but you can view the full file.
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" standalone="yes"?> | |
| <application xmlns="http://research.sun.com/wadl/2006/10"> | |
| <doc xmlns:jersey="http://jersey.java.net/" jersey:generatedBy="Jersey: 1.8 06/24/2011 12:17 PM"/> | |
| <resources base="http://localhost:4848/management/"> | |
| <resource path="/status/"> | |
| <method id="get" name="GET"> | |
| <response> | |
| <representation mediaType="text/plain"/> | |
| </response> | |
| </method> |
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
| /** | |
| * Attempt to define an API to access http://posterous.com/api | |
| */ | |
| @Host("posterous.com") | |
| public interface PosterousApi extends BasicAuthenticatedSite { | |
| /** | |
| * Get sites of logged in user | |
| */ | |
| @Path("/api/2/sites") | |
| public Collection<PosterousSite> getSites(String api_token); |
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
| public class Example { | |
| private String name; | |
| public String getName() { | |
| return name; | |
| } | |
| public void setName(String name) { | |
| this.name = name; |
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
| /** | |
| * @param ${fieldName} new value for #${fieldName} | |
| * @category fluent | |
| * @category setter | |
| * @category ${fieldName} | |
| * @return this object for chaining calls | |
| */ | |
| public ${primary_type_name} with${uppercasedFieldName}(${fieldType} ${fieldName}) { | |
| this.set${uppercasedFieldName}(${fieldName}); | |
| return this; |
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
| <div class="quote"> | |
| <blockquote class="la liste des tags de ma citation" cite="l'url de la source (si je la retrouve)"> | |
| <p> | |
| Le texte de ma citation séparé en paragraphes | |
| </p> | |
| </blockquote> | |
| <cite class="vcard"> | |
| <a class="url fn" rel="met friend colleague" href="http://meyerweb.com/">Un lien vers l'auteur, si j'y arrive</a> | |
| </cite> | |
| </div> |
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
| <!-- A mettre dans les propriétés --> | |
| <groovy.version>1.8.0</groovy.version> | |
| <gmaven.provider.version>1.7</gmaven.provider.versio | |
| <!-- A mettre dans son build/plugins --> | |
| <plugin> | |
| <groupId>org.codehaus.gmaven</groupId> | |
| <artifactId>gmaven-plugin</artifactId> | |
| <version>1.3</version> | |
| <dependencies> |
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"?> | |
| <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | |
| <properties> | |
| <entry key="jena:jena:2.6.3">com.hp.hpl.jena:jena:2.6.3</entry> | |
| </properties> |
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 java.io.*; | |
| import java.text.DateFormat; | |
| import java.text.SimpleDateFormat; | |
| import java.util.*; | |
| import java.util.concurrent.*; | |
| import java.util.logging.*; | |
| import groovy.lang.Grab; |