View lmdb-testdata-nquads2.nq
This file has been truncated, but you can view the full file.
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
<urn:uuid:0e4e68ca-2676-442b-b595-09a26c02bf32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#Organization> . | |
<urn:uuid:ddb30519-e789-46d3-a0c9-734ad493b387> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#Standard> . | |
<urn:uuid:33f111e4-800b-4744-b4c6-d3ee896b1eee> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#PropertySet> . | |
<urn:uuid:39c83445-5986-4e80-bf6f-7cf7930019cc> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#PropertySet> . | |
<urn:uuid:5bfffc1f-cd2e-4128-9a30-f56a3e0fe5b8> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#PropertySet> . | |
<urn:uuid:6e6d2de2-a950-4fae-a3e8-ac72be3b0b34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#PropertySet> . | |
<urn:uuid:5e52d813-d274-4e12-b1ca-52dc6750f92c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#Prope |
View lmdb-testdata-nquads
This file has been truncated, but you can view the full file.
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
<urn:uuid:2ce438f0-c6e3-4789-a923-8ce9b0d467c5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#Organization> . | |
<urn:uuid:ef4497c5-a0b8-4672-a137-84a55b4b9128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#Standard> . | |
<urn:uuid:8cfdefcd-8fcf-4e09-866c-2fa827ddf74b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#PropertySet> . | |
<urn:uuid:9fc5fdb9-ae93-49db-9a56-71ab192791e0> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#PropertySet> . | |
<urn:uuid:017a293d-bbe0-4d19-bfe7-f548effa4e9e> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#PropertySet> . | |
<urn:uuid:fb250a87-c734-4f1d-8878-9898eb8baab6> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#PropertySet> . | |
<urn:uuid:bc2c5527-6e0b-42bc-b4dd-599cdf35b0fa> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://mms.researchstudio.at/mms#Prope |
View AgreementFunction.java
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 won.utils.agreement; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.StringWriter; | |
import org.apache.commons.io.Charsets; | |
import org.apache.commons.io.IOUtils; | |
import org.apache.jena.query.Dataset; | |
import org.apache.jena.query.DatasetFactory; |
View additional-node-not-covered-by-shape-noerrors.trig
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
# This example is taken from http://shacl.org/playground and | |
# transformed to trig, putting shapes, data and validation results in separate graphs | |
# | |
# Test case: there is an additional node in the data - ex:Paris - that is not covered by the shape. | |
# There are no validation results | |
# Expected result: | |
# <http://example.org/ns#Bob> schema:address <http://example.org/ns#BobsAddress> | |
# <http://example.org/ns#Bob> schema:birthDate 1971-07-07 | |
# <http://example.org/ns#Bob> schema:birthPlace <http://example.org/ns#Paris> | |
# <http://example.org/ns#Bob> schema:deathDate 1998-09-10 |
View gist:81b32e3235105a4a4743e9fa76ba9332
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
@prefix sh: <http://www.w3.org/ns/shacl#> . | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@prefix s: <http://schema.org/> . | |
@prefix ex1: <http://example.org/1/> . | |
@prefix ex2: <http://example.org/2/> . | |
@prefix voc: <http://example.org/myvocabulary/> . | |
@prefix taxi: <http://example.org/taxi/> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
View gist:5da0b32a0a11b1e0eb354a907d006e30
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
@prefix msg: <http://purl.org/webofneeds/message#> . | |
@prefix conn: <https://node.matchat.org/won/resource/connection/> . | |
@prefix need: <https://node.matchat.org/won/resource/need/> . | |
@prefix woncrypt: <http://purl.org/webofneeds/woncrypt#> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@prefix cert: <http://www.w3.org/ns/auth/cert#> . | |
@prefix local: <https://node.matchat.org/won/resource/> . | |
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> . | |
@prefix sig: <http://icp.it-risk.iwvi.uni-koblenz.de/ontologies/signature.owl#> . |
View gist:866e0bdfb90a1621a865c5879c02a734
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
# baseURI: http://ontology.tno.nl/logico | |
# imports: http://www.w3.org/2003/01/geo/wgs84_pos# | |
# imports: http://www.w3.org/2006/time | |
# c14n-version: 3 | |
@prefix LogiCO: <http://ontology.tno.nl/logico#> . | |
@prefix dcterms: <http://purl.org/dc/terms/> . | |
@prefix dul: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#> . | |
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> . | |
@prefix owl: <http://www.w3.org/2002/07/owl#> . |
View gist:f9ca53ee1466bf50dba6ce6d3c243b39
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
Mai 19, 2016 5:50:15 PM org.apache.tomcat.util.net.AprEndpoint$Acceptor run | |
FEIN: APR socket [461,374,656] opened with remote port [61,460] | |
Mai 19, 2016 5:50:15 PM org.apache.tomcat.util.net.AprEndpoint processSocketWithOptions | |
FEIN: socket [461,374,656] | |
Mai 19, 2016 5:50:15 PM org.apache.tomcat.util.threads.LimitLatch countUpOrAwait | |
FEIN: Counting up[http-apr-8443-Acceptor-0] latch=1 | |
Mai 19, 2016 5:50:15 PM org.apache.tomcat.util.net.AprEndpoint setSocketOptions | |
FEIN: Handshake failed: error:14089086:SSL routines:ssl3_get_client_certificate:certificate verify failed | |
Mai 19, 2016 5:50:15 PM org.apache.tomcat.util.net.AprEndpoint$Poller removeFromPoller | |
FEIN: Attempting to remove [461,374,656] from poller |
View gist:8b4c3932a1de4b51617eac5e03c0be29
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
19.5.16 17:50:15.517 [Thread-8] INFO o.a.http.impl.execchain.RetryExec - Retrying request to {s}->https://192.168.124.49:8443 | |
Allow unsafe renegotiation: false | |
Allow legacy hello messages: true | |
Is initial handshake: true | |
Is secure renegotiation: false | |
Ignoring unsupported cipher suite: TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 for TLSv1 | |
Ignoring unsupported cipher suite: TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 for TLSv1 | |
Ignoring unsupported cipher suite: TLS_RSA_WITH_AES_256_CBC_SHA256 for TLSv1 | |
Ignoring unsupported cipher suite: TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 for TLSv1 | |
Ignoring unsupported cipher suite: TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 for TLSv1 |