├── .travis.yml ├── LICENSE ├── README.md └── solrdf ├── .gitignore ├── pom.xml ├── solrdf-client ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── gazzax │ │ │ └── labs │ │ │ └── solrdf │ │ │ └── client │ │ │ ├── SolRDF.java │ │ │ ├── UnableToAddException.java │ │ │ ├── UnableToBuildSolRDFClientException.java │ │ │ ├── UnableToCommitException.java │ │ │ ├── UnableToDeleteException.java │ │ │ ├── UnableToExecuteQueryException.java │ │ │ └── package-info.java │ └── resources │ │ ├── log4j.xml │ │ └── rebel.xml │ └── test │ └── java │ └── org │ └── gazzax │ └── labs │ └── solrdf │ └── client │ ├── AddTestCase.java │ ├── SearchTestCase.java │ └── TestUtility.java ├── solrdf-core ├── pom.xml └── src │ ├── main │ └── java │ │ ├── org │ │ └── gazzax │ │ │ └── labs │ │ │ └── solrdf │ │ │ ├── F.java │ │ │ ├── Field.java │ │ │ ├── NTriples.java │ │ │ ├── Names.java │ │ │ ├── Strings.java │ │ │ ├── graph │ │ │ ├── DatasetGraphSupertypeLayer.java │ │ │ ├── GraphEventConsumer.java │ │ │ ├── SolRDFGraph.java │ │ │ ├── cloud │ │ │ │ ├── CloudDatasetGraph.java │ │ │ │ ├── CloudGraph.java │ │ │ │ ├── DeepPagingIterator.java │ │ │ │ ├── FieldInjectorRegistry.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── standalone │ │ │ │ ├── DeepPagingIterator.java │ │ │ │ ├── FieldInjectorRegistry.java │ │ │ │ ├── LocalDatasetGraph.java │ │ │ │ ├── LocalGraph.java │ │ │ │ └── package-info.java │ │ │ ├── handler │ │ │ ├── Sparql11GraphStoreProtocolHandler.java │ │ │ ├── package-info.java │ │ │ ├── search │ │ │ │ └── handler │ │ │ │ │ ├── Sparql11SearchHandler.java │ │ │ │ │ └── package-info.java │ │ │ └── update │ │ │ │ ├── RdfBulkUpdateRequestHandler.java │ │ │ │ ├── RdfUpdateRequestHandler.java │ │ │ │ ├── Sparql11UpdateRdfDataLoader.java │ │ │ │ └── package-info.java │ │ │ ├── log │ │ │ ├── Log.java │ │ │ ├── MessageCatalog.java │ │ │ ├── MessageFactory.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── response │ │ │ ├── HybridResponseWriter.java │ │ │ ├── HybridXMLWriter.java │ │ │ └── package-info.java │ │ │ └── search │ │ │ ├── component │ │ │ ├── PagedResultSet.java │ │ │ └── SparqlSearchComponent.java │ │ │ └── qparser │ │ │ ├── SparqlQParser.java │ │ │ ├── SparqlQParserPlugin.java │ │ │ ├── SparqlQuery.java │ │ │ └── package-info.java │ │ └── rebel.xml │ ├── solr-home │ ├── solr.xml │ └── store │ │ ├── conf │ │ ├── schema.xml │ │ └── solrconfig.xml │ │ └── core.properties │ └── test │ └── java │ └── org │ └── gazzax │ └── labs │ └── solrdf │ ├── FTestCase.java │ ├── MisteryGuest.java │ ├── StringsTestCase.java │ ├── TestUtility.java │ ├── graph │ └── standalone │ │ └── FieldInjectorRegistryTestCase.java │ ├── handler │ ├── Sparql11GraphStoreProtocolHandlerTestCase.java │ ├── search │ │ └── handler │ │ │ └── Sparql11SearchHandlerTestCase.java │ └── update │ │ └── Sparql11UpdateRdfDataLoaderTestCase.java │ ├── log │ └── LogTestCase.java │ ├── response │ └── ResponseContentTypeChoiceTestCase.java │ └── search │ ├── component │ ├── PagedResultSetTestCase.java │ └── SparqlSearchComponentTestCase.java │ └── qparser │ └── SparqlQParserTestCase.java ├── solrdf-integration-tests ├── pom.xml └── src │ ├── assembly │ └── development.xml │ └── test │ ├── java │ ├── org │ │ └── gazzax │ │ │ └── labs │ │ │ └── solrdf │ │ │ ├── MisteryGuest.java │ │ │ ├── TestUtility.java │ │ │ └── integration │ │ │ ├── IntegrationTestSupertypeLayer.java │ │ │ └── sparql │ │ │ ├── FromAndFromNamedClauses_ITCase.java │ │ │ ├── Issue112_ITCase.java │ │ │ ├── Issue53_ITCase.java │ │ │ ├── Issue64_ITCase.java │ │ │ ├── LearningSparqlSupertypeLayer.java │ │ │ ├── LearningSparql_ASK_ITCase.java │ │ │ ├── LearningSparql_CONSTRUCT_DESCRIBE_ITCase.java │ │ │ ├── LearningSparql_SELECT_ITCase.java │ │ │ └── LearningSparql_UPDATE_ITCase.java │ └── rebel.xml │ └── resources │ ├── LearningSPARQLExamples │ ├── README │ ├── ex001.rq │ ├── ex002.ttl │ ├── ex003.rq │ ├── ex006.rq │ ├── ex007.rq │ ├── ex008.rq │ ├── ex010.rq │ ├── ex012.ttl │ ├── ex013.rq │ ├── ex015.rq │ ├── ex017.rq │ ├── ex019.rq │ ├── ex021.rq │ ├── ex023.rq │ ├── ex033.ttl │ ├── ex034.ttl │ ├── ex035.rdf │ ├── ex036.ttl │ ├── ex037.ttl │ ├── ex038.ttl │ ├── ex039.ttl │ ├── ex040.ttl │ ├── ex041.ttl │ ├── ex042.ttl │ ├── ex043.ttl │ ├── ex044.ttl │ ├── ex045.ttl │ ├── ex046.ttl │ ├── ex047.rq │ ├── ex048.rq │ ├── ex049.rq │ ├── ex050.ttl │ ├── ex052.rq │ ├── ex054.ttl │ ├── ex055.rq │ ├── ex057.rq │ ├── ex059.rq │ ├── ex061.rq │ ├── ex063.rq │ ├── ex065.rq │ ├── ex067.rq │ ├── ex068.rq │ ├── ex069.ttl │ ├── ex070.rq │ ├── ex072.ttl │ ├── ex073.ttl │ ├── ex074.ttl │ ├── ex075.rq │ ├── ex077.rq │ ├── ex078.rq │ ├── ex080.rq │ ├── ex082.rq │ ├── ex083.rq │ ├── ex084.rq │ ├── ex086.rq │ ├── ex088.rq │ ├── ex090.rq │ ├── ex092.rq │ ├── ex094.rq │ ├── ex098.rq │ ├── ex100.ttl │ ├── ex101.rq │ ├── ex103.rq │ ├── ex104.ttl │ ├── ex105.rq │ ├── ex107.rq │ ├── ex109.rq │ ├── ex111.rq │ ├── ex112.rq │ ├── ex114.rq │ ├── ex115.ttl │ ├── ex116.rq │ ├── ex118.rq │ ├── ex120.rq │ ├── ex122.ttl │ ├── ex123.rq │ ├── ex125.ttl │ ├── ex126.rq │ ├── ex128.rq │ ├── ex130.rq │ ├── ex132.ttl │ ├── ex133.ttl │ ├── ex134.ttl │ ├── ex135.rq │ ├── ex136.rq │ ├── ex137.rq │ ├── ex138.ttl │ ├── ex139.rq │ ├── ex141.rq │ ├── ex143.rq │ ├── ex144.rq │ ├── ex145.ttl │ ├── ex146.rq │ ├── ex148.rq │ ├── ex149.rq │ ├── ex151.rq │ ├── ex153.rq │ ├── ex155.rq │ ├── ex156.rq │ ├── ex158.rq │ ├── ex160.rq │ ├── ex162.rq │ ├── ex164.rq │ ├── ex166.rq │ ├── ex167.rq │ ├── ex170.rq │ ├── ex172.rq │ ├── ex174.rq │ ├── ex176.rq │ ├── ex178.rq │ ├── ex180.rq │ ├── ex182.rq │ ├── ex184.rq │ ├── ex185.rq │ ├── ex187.ttl │ ├── ex188.rq │ ├── ex190.rq │ ├── ex192.rq │ ├── ex193.ttl │ ├── ex194.rq │ ├── ex196.rq │ ├── ex198.ttl │ ├── ex199.rq │ ├── ex201.rq │ ├── ex202.rq │ ├── ex203.rq │ ├── ex205.rq │ ├── ex207.rq │ ├── ex209.rq │ ├── ex211.rq │ ├── ex212.rq │ ├── ex213.rq │ ├── ex215.rq │ ├── ex216.rq │ ├── ex217.ttl │ ├── ex218.rq │ ├── ex220.rq │ ├── ex221.rq │ ├── ex222.rq │ ├── ex223.rq │ ├── ex224.ttl │ ├── ex225.rq │ ├── ex227.ttl │ ├── ex228.rq │ ├── ex230.rq │ ├── ex232.rq │ ├── ex233.rq │ ├── ex235.rq │ ├── ex237.rq │ ├── ex239.rq │ ├── ex241.ttl │ ├── ex242.rq │ ├── ex244.rq │ ├── ex246.rq │ ├── ex248.rq │ ├── ex249.ttl │ ├── ex251.rq │ ├── ex253.rq │ ├── ex255.rq │ ├── ex257.rq │ ├── ex259.ttl │ ├── ex260.rq │ ├── ex262.rq │ ├── ex264.rq │ ├── ex266.ttl │ ├── ex267.rq │ ├── ex269.rq │ ├── ex270.rq │ ├── ex271.rq │ ├── ex273.rq │ ├── ex276.rq │ ├── ex278.ttl │ ├── ex279.rq │ ├── ex281.ttl │ ├── ex282.rq │ ├── ex284.ttl │ ├── ex285.rq │ ├── ex287.rq │ ├── ex289.ttl │ ├── ex290.rq │ ├── ex292.ttl │ ├── ex293.rq │ ├── ex295.rq │ ├── ex298.ttl │ ├── ex299.rq │ ├── ex301.rq │ ├── ex303.rq │ ├── ex305.rq │ ├── ex307.py │ ├── ex308.rq │ ├── ex311.rq │ ├── ex312.ru │ ├── ex313.ru │ ├── ex314.rq │ ├── ex316.ru │ ├── ex317.ru │ ├── ex318.rq │ ├── ex319.ttl │ ├── ex320.ru │ ├── ex321.ru │ ├── ex322.ru │ ├── ex323.ru │ ├── ex324.ru │ ├── ex325.ru │ ├── ex326.rq │ ├── ex327.ttl │ ├── ex328.ttl │ ├── ex329.ru │ ├── ex330.ru │ ├── ex331.ru │ ├── ex332.rq │ ├── ex333.ru │ ├── ex334.ru │ ├── ex335.ru │ ├── ex336.ru │ ├── ex337.ru │ ├── ex338.ru │ ├── ex339.ru │ ├── ex340.ru │ ├── ex341.rq │ ├── ex342.ru │ ├── ex343.ru │ ├── ex344.ru │ ├── ex345.ru │ ├── ex346.ru │ ├── ex347.ru │ ├── ex348.ru │ ├── ex349.ru │ ├── ex350.ru │ ├── ex351.ru │ ├── ex352.ru │ ├── ex353.ru │ ├── ex354.rq │ ├── ex355.rq │ ├── ex358.py │ ├── ex359.xml │ ├── ex361.py │ ├── ex363.py │ ├── ex365.html │ ├── ex366.xml │ ├── ex367.js │ ├── ex368.ttl │ ├── ex401.xml │ ├── ex402.xsl │ ├── ex403.xml │ ├── ex404.js │ ├── ex405.js │ ├── ex406.rq │ ├── ex407.js │ ├── ex408.rq │ ├── ex409.ttl │ ├── ex410.xml │ ├── ex411.js │ ├── ex412.csv │ ├── ex413.tsv │ ├── ex415.rq │ ├── ex417.ttl │ ├── ex418.rq │ ├── ex420.ttl │ ├── ex421.ttl │ ├── ex422.rq │ ├── ex424.ttl │ ├── ex425.rq │ ├── ex427.rq │ ├── ex428.rq │ ├── ex430.rq │ ├── ex432.rq │ ├── ex434.rq │ ├── ex436.rq │ ├── ex437.rq │ ├── ex438.ttl │ ├── ex439.rq │ ├── ex440.rq │ ├── ex442.ttl │ ├── ex443.ttl │ ├── ex444.rq │ ├── ex445.rq │ ├── ex447.rq │ ├── ex449.rq │ ├── ex451.rq │ ├── ex453.rq │ ├── ex454.rq │ ├── ex456.rq │ ├── ex457.rq │ ├── ex459.rq │ ├── ex461.rq │ ├── ex463.rq │ ├── ex465.rq │ ├── ex467.rq │ ├── ex469.rq │ ├── ex471.rq │ ├── ex473.rq │ ├── ex474.rq │ ├── ex475.rq │ ├── ex476.rq │ ├── ex477.ttl │ ├── ex478.ru │ ├── ex479.rq │ ├── ex480.rq │ ├── ex481.ru │ ├── ex482.ru │ ├── ex483.ttl │ ├── ex484.ru │ ├── ex485.rq │ ├── ex487.rq │ ├── ex488.ru │ ├── ex489.rq │ ├── ex491.rq │ ├── ex492.rq │ ├── ex494.rq │ ├── ex496.rq │ ├── ex498.rq │ ├── ex500.rq │ ├── ex503.ru │ ├── ex505.ru │ ├── ex507.rq │ ├── ex508.rq │ ├── ex509.rq │ ├── ex510.rq │ ├── ex511.rq │ ├── ex512.rq │ ├── ex513.rq │ ├── ex514.rq │ ├── ex515.rq │ ├── ex516.rq │ ├── ex517.rq │ ├── ex520.rq │ ├── ex521.ttl │ ├── ex522.rq │ ├── ex523.rq │ ├── ex524.rq │ ├── ex526.rq │ ├── ex528.rq │ ├── ex530.ttl │ ├── ex531.rdf │ ├── ex532.rq │ ├── ex532.ttl │ ├── ex533.rq │ ├── ex536.ttl │ ├── ex537.rq │ ├── ex538.rq │ ├── ex539.rq │ ├── ex540.rq │ ├── ex541.rq │ ├── ex543.ru │ ├── ex544.rq │ ├── ex546.ru │ ├── ex547.rq │ ├── ex548.ru │ ├── ex549.ru │ ├── ex550.ru │ ├── ex551.ru │ ├── exxyz.ttl │ ├── foaf.rdf │ ├── goodrelations-v1.owl │ ├── owl.ttl │ └── void.ttl │ ├── log4j.xml │ └── sample_data │ ├── answers_sw_1.rq │ ├── answers_sw_2.rq │ ├── bsbm-generated-dataset.nt │ ├── faceting_test_dataset.nt │ ├── issue_112_delete_all.ru │ ├── issue_112_delete_resource.ru │ ├── issue_112_delete_resources_with_a_date_object.ru │ ├── issue_112_delete_with_a_date_selector.ru │ ├── issue_112_insert_with_datetime.ru │ ├── issue_53_diacriticts.rq │ ├── issue_53_diacriticts.ttl │ ├── issue_53_square_brackets.rq │ ├── issue_53_square_brackets.ttl │ ├── issue_64_wrong_results.rq │ ├── issue_64_wrong_results.ttl │ ├── one_triple_1.ttl │ ├── one_triple_2.ttl │ ├── one_triple_3.ttl │ ├── one_triple_4.ttl │ └── one_triple_per_shard.nt └── src ├── dev └── eclipse │ ├── build-test-and-install.launch │ ├── gazzax_coding_rules.xml │ └── install-without-tests.launch └── doc └── response-examples └── facets-examples.xml /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/README.md -------------------------------------------------------------------------------- /solrdf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/.gitignore -------------------------------------------------------------------------------- /solrdf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/pom.xml -------------------------------------------------------------------------------- /solrdf/solrdf-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/pom.xml -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/SolRDF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/SolRDF.java -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToAddException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToAddException.java -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToBuildSolRDFClientException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToBuildSolRDFClientException.java -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToCommitException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToCommitException.java -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToDeleteException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToDeleteException.java -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToExecuteQueryException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/UnableToExecuteQueryException.java -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/main/java/org/gazzax/labs/solrdf/client/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/main/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/main/resources/log4j.xml -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/test/java/org/gazzax/labs/solrdf/client/AddTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/test/java/org/gazzax/labs/solrdf/client/AddTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/test/java/org/gazzax/labs/solrdf/client/SearchTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/test/java/org/gazzax/labs/solrdf/client/SearchTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-client/src/test/java/org/gazzax/labs/solrdf/client/TestUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-client/src/test/java/org/gazzax/labs/solrdf/client/TestUtility.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/pom.xml -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/F.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/F.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/Field.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/Field.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/NTriples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/NTriples.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/Names.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/Names.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/Strings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/Strings.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/DatasetGraphSupertypeLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/DatasetGraphSupertypeLayer.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/GraphEventConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/GraphEventConsumer.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/SolRDFGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/SolRDFGraph.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/cloud/CloudDatasetGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/cloud/CloudDatasetGraph.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/cloud/CloudGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/cloud/CloudGraph.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/cloud/DeepPagingIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/cloud/DeepPagingIterator.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/cloud/FieldInjectorRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/cloud/FieldInjectorRegistry.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/cloud/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/cloud/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/standalone/DeepPagingIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/standalone/DeepPagingIterator.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/standalone/FieldInjectorRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/standalone/FieldInjectorRegistry.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/standalone/LocalDatasetGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/standalone/LocalDatasetGraph.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/standalone/LocalGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/standalone/LocalGraph.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/standalone/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/graph/standalone/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/Sparql11GraphStoreProtocolHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/Sparql11GraphStoreProtocolHandler.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/search/handler/Sparql11SearchHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/search/handler/Sparql11SearchHandler.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/search/handler/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/search/handler/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/update/RdfBulkUpdateRequestHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/update/RdfBulkUpdateRequestHandler.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/update/RdfUpdateRequestHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/update/RdfUpdateRequestHandler.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/update/Sparql11UpdateRdfDataLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/update/Sparql11UpdateRdfDataLoader.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/update/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/handler/update/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/log/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/log/Log.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/log/MessageCatalog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/log/MessageCatalog.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/log/MessageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/log/MessageFactory.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/log/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/log/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/response/HybridResponseWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/response/HybridResponseWriter.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/response/HybridXMLWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/response/HybridXMLWriter.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/response/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/response/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/component/PagedResultSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/component/PagedResultSet.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/component/SparqlSearchComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/component/SparqlSearchComponent.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/qparser/SparqlQParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/qparser/SparqlQParser.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/qparser/SparqlQParserPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/qparser/SparqlQParserPlugin.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/qparser/SparqlQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/qparser/SparqlQuery.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/qparser/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/org/gazzax/labs/solrdf/search/qparser/package-info.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/main/java/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/main/java/rebel.xml -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/solr-home/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/solr-home/solr.xml -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/solr-home/store/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/solr-home/store/conf/schema.xml -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/solr-home/store/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/solr-home/store/conf/solrconfig.xml -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/solr-home/store/core.properties: -------------------------------------------------------------------------------- 1 | name=store -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/FTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/FTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/MisteryGuest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/MisteryGuest.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/StringsTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/StringsTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/TestUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/TestUtility.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/graph/standalone/FieldInjectorRegistryTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/graph/standalone/FieldInjectorRegistryTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/handler/Sparql11GraphStoreProtocolHandlerTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/handler/Sparql11GraphStoreProtocolHandlerTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/handler/search/handler/Sparql11SearchHandlerTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/handler/search/handler/Sparql11SearchHandlerTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/handler/update/Sparql11UpdateRdfDataLoaderTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/handler/update/Sparql11UpdateRdfDataLoaderTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/log/LogTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/log/LogTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/response/ResponseContentTypeChoiceTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/response/ResponseContentTypeChoiceTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/search/component/PagedResultSetTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/search/component/PagedResultSetTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/search/component/SparqlSearchComponentTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/search/component/SparqlSearchComponentTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/search/qparser/SparqlQParserTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-core/src/test/java/org/gazzax/labs/solrdf/search/qparser/SparqlQParserTestCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/pom.xml -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/assembly/development.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/assembly/development.xml -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/MisteryGuest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/MisteryGuest.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/TestUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/TestUtility.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/IntegrationTestSupertypeLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/IntegrationTestSupertypeLayer.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/FromAndFromNamedClauses_ITCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/FromAndFromNamedClauses_ITCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/Issue112_ITCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/Issue112_ITCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/Issue53_ITCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/Issue53_ITCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/Issue64_ITCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/Issue64_ITCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/LearningSparqlSupertypeLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/LearningSparqlSupertypeLayer.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/LearningSparql_ASK_ITCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/LearningSparql_ASK_ITCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/LearningSparql_CONSTRUCT_DESCRIBE_ITCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/LearningSparql_CONSTRUCT_DESCRIBE_ITCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/LearningSparql_SELECT_ITCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/LearningSparql_SELECT_ITCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/LearningSparql_UPDATE_ITCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/org/gazzax/labs/solrdf/integration/sparql/LearningSparql_UPDATE_ITCase.java -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/java/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/java/rebel.xml -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/README -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex001.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex001.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex002.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex003.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex003.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex006.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex006.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex007.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex007.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex008.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex008.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex010.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex010.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex012.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex012.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex013.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex013.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex015.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex015.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex017.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex017.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex019.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex019.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex021.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex021.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex023.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex023.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex033.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex033.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex034.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex034.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex035.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex035.rdf -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex036.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex036.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex037.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex037.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex038.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex038.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex039.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex039.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex040.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex040.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex041.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex041.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex042.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex042.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex043.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex043.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex044.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex044.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex045.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex045.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex046.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex046.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex047.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex047.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex048.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex048.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex049.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex049.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex050.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex050.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex052.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex052.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex054.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex054.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex055.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex055.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex057.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex057.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex059.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex059.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex061.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex061.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex063.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex063.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex065.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex065.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex067.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex067.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex068.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex068.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex069.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex069.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex070.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex070.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex072.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex072.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex073.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex073.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex074.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex074.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex075.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex075.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex077.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex077.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex078.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex078.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex080.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex080.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex082.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex082.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex083.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex083.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex084.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex084.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex086.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex086.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex088.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex088.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex090.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex090.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex092.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex092.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex094.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex094.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex098.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex098.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex100.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex100.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex101.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex101.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex103.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex103.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex104.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex104.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex105.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex105.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex107.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex107.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex109.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex109.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex111.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex111.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex112.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex112.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex114.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex114.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex115.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex115.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex116.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex116.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex118.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex118.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex120.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex120.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex122.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex122.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex123.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex123.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex125.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex125.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex126.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex126.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex128.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex128.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex130.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex130.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex132.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex132.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex133.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex133.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex134.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex134.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex135.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex135.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex136.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex136.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex137.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex137.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex138.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex138.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex139.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex139.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex141.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex141.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex143.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex143.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex144.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex144.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex145.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex145.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex146.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex146.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex148.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex148.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex149.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex149.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex151.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex151.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex153.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex153.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex155.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex155.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex156.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex156.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex158.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex158.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex160.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex160.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex162.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex162.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex164.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex164.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex166.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex166.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex167.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex167.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex170.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex170.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex172.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex172.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex174.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex174.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex176.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex176.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex178.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex178.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex180.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex180.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex182.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex182.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex184.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex184.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex185.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex185.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex187.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex187.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex188.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex188.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex190.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex190.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex192.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex192.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex193.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex193.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex194.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex194.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex196.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex196.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex198.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex198.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex199.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex199.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex201.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex201.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex202.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex202.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex203.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex203.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex205.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex205.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex207.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex207.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex209.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex209.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex211.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex211.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex212.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex212.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex213.rq: -------------------------------------------------------------------------------- 1 | # filename: ex213.rq 2 | 3 | DESCRIBE 4 | 5 | -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex215.rq: -------------------------------------------------------------------------------- 1 | # filename: ex215.rq 2 | 3 | DESCRIBE 4 | 5 | -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex216.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex216.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex217.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex217.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex218.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex218.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex220.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex220.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex221.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex221.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex222.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex222.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex223.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex223.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex224.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex224.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex225.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex225.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex227.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex227.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex228.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex228.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex230.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex230.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex232.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex232.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex233.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex233.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex235.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex235.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex237.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex237.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex239.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex239.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex241.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex241.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex242.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex242.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex244.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex244.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex246.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex246.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex248.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex248.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex249.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex249.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex251.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex251.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex253.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex253.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex255.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex255.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex257.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex257.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex259.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex259.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex260.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex260.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex262.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex262.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex264.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex264.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex266.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex266.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex267.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex267.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex269.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex269.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex270.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex270.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex271.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex271.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex273.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex273.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex276.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex276.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex278.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex278.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex279.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex279.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex281.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex281.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex282.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex282.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex284.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex284.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex285.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex285.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex287.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex287.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex289.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex289.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex290.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex290.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex292.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex292.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex293.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex293.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex295.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex295.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex298.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex298.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex299.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex299.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex301.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex301.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex303.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex303.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex305.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex305.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex307.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex307.py -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex308.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex308.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex311.rq: -------------------------------------------------------------------------------- 1 | # filename: ex311.rq 2 | 3 | SELECT * 4 | WHERE 5 | { ?s ?p ?o } 6 | 7 | -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex312.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex312.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex313.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex313.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex314.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex314.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex316.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex316.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex317.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex317.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex318.rq: -------------------------------------------------------------------------------- 1 | # filename ex318.rq 2 | 3 | SELECT * WHERE 4 | { ?p ?o } 5 | 6 | -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex319.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex319.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex320.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex320.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex321.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex321.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex322.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex322.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex323.ru: -------------------------------------------------------------------------------- 1 | # filename: ex323.ru 2 | 3 | DELETE WHERE { ?s ?p "Tommy_Potter" } 4 | 5 | -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex324.ru: -------------------------------------------------------------------------------- 1 | # filename: ex324.ru 2 | 3 | CLEAR DEFAULT 4 | 5 | -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex325.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex325.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex326.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex326.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex327.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex327.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex328.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex328.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex329.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex329.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex330.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex330.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex331.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex331.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex332.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex332.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex333.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex333.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex334.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex334.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex335.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex335.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex336.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex336.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex337.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex337.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex338.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex338.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex339.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex339.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex340.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex340.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex341.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex341.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex342.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex342.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex343.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex343.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex344.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex344.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex345.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex345.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex346.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex346.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex347.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex347.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex348.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex348.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex349.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex349.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex350.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex350.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex351.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex351.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex352.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex352.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex353.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex353.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex354.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex354.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex355.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex355.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex358.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex358.py -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex359.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex359.xml -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex361.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex361.py -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex363.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex363.py -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex365.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex365.html -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex366.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex366.xml -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex367.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex367.js -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex368.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex368.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex401.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex401.xml -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex402.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex402.xsl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex403.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex403.xml -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex404.js -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex405.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex405.js -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex406.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex406.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex407.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex407.js -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex408.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex408.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex409.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex409.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex410.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex410.xml -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex411.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex411.js -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex412.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex412.csv -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex413.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex413.tsv -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex415.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex415.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex417.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex417.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex418.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex418.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex420.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex420.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex421.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex421.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex422.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex422.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex424.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex424.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex425.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex425.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex427.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex427.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex428.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex428.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex430.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex430.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex432.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex432.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex434.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex434.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex436.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex436.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex437.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex437.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex438.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex438.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex439.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex439.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex440.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex440.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex442.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex442.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex443.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex443.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex444.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex444.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex445.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex445.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex447.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex447.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex449.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex449.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex451.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex451.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex453.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex453.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex454.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex454.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex456.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex456.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex457.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex457.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex459.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex459.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex461.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex461.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex463.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex463.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex465.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex465.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex467.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex467.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex469.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex469.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex471.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex471.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex473.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex473.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex474.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex474.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex475.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex475.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex476.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex476.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex477.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex477.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex478.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex478.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex479.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex479.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex480.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex480.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex481.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex481.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex482.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex482.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex483.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex483.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex484.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex484.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex485.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex485.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex487.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex487.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex488.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex488.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex489.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex489.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex491.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex491.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex492.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex492.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex494.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex494.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex496.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex496.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex498.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex498.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex500.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex500.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex503.ru: -------------------------------------------------------------------------------- 1 | # filename: ex503.ru 2 | 3 | PREFIX d: 4 | COPY DEFAULT TO d:g2 5 | -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex505.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex505.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex507.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex507.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex508.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex508.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex509.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex509.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex510.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex510.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex511.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex511.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex512.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex512.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex513.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex513.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex514.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex514.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex515.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex515.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex516.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex516.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex517.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex517.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex520.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex520.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex521.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex521.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex522.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex522.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex523.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex523.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex524.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex524.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex526.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex526.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex528.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex528.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex530.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex530.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex531.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex531.rdf -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex532.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex532.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex532.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex532.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex533.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex533.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex536.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex536.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex537.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex537.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex538.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex538.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex539.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex539.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex540.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex540.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex541.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex541.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex543.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex543.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex544.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex544.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex546.ru: -------------------------------------------------------------------------------- 1 | # filename: ex546.rq 2 | 3 | LOAD 4 | 5 | -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex547.rq: -------------------------------------------------------------------------------- 1 | # filename: ex547.rq 2 | 3 | SELECT * WHERE 4 | { ?s ?p ?o } 5 | -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex548.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex548.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex549.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex549.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex550.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex550.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/ex551.ru: -------------------------------------------------------------------------------- 1 | # filename: ex551.ru 2 | 3 | DELETE WHERE { ?p ?o } 4 | -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/exxyz.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/exxyz.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/foaf.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/foaf.rdf -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/goodrelations-v1.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/goodrelations-v1.owl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/owl.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/owl.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/void.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/LearningSPARQLExamples/void.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/log4j.xml -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/answers_sw_1.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/answers_sw_1.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/answers_sw_2.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/answers_sw_2.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/bsbm-generated-dataset.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/bsbm-generated-dataset.nt -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/faceting_test_dataset.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/faceting_test_dataset.nt -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_112_delete_all.ru: -------------------------------------------------------------------------------- 1 | DELETE WHERE { ?l ?x ?y } -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_112_delete_resource.ru: -------------------------------------------------------------------------------- 1 | DELETE WHERE { ?x ?y } -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_112_delete_resources_with_a_date_object.ru: -------------------------------------------------------------------------------- 1 | DELETE WHERE { ?s ?o } -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_112_delete_with_a_date_selector.ru: -------------------------------------------------------------------------------- 1 | DELETE WHERE { ?l ?x "2000-12-31"^^ } -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_112_insert_with_datetime.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_112_insert_with_datetime.ru -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_53_diacriticts.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_53_diacriticts.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_53_diacriticts.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_53_diacriticts.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_53_square_brackets.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_53_square_brackets.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_53_square_brackets.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_53_square_brackets.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_64_wrong_results.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_64_wrong_results.rq -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_64_wrong_results.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/issue_64_wrong_results.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/one_triple_1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/one_triple_1.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/one_triple_2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/one_triple_2.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/one_triple_3.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/one_triple_3.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/one_triple_4.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/one_triple_4.ttl -------------------------------------------------------------------------------- /solrdf/solrdf-integration-tests/src/test/resources/sample_data/one_triple_per_shard.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/solrdf-integration-tests/src/test/resources/sample_data/one_triple_per_shard.nt -------------------------------------------------------------------------------- /solrdf/src/dev/eclipse/build-test-and-install.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/src/dev/eclipse/build-test-and-install.launch -------------------------------------------------------------------------------- /solrdf/src/dev/eclipse/gazzax_coding_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/src/dev/eclipse/gazzax_coding_rules.xml -------------------------------------------------------------------------------- /solrdf/src/dev/eclipse/install-without-tests.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/src/dev/eclipse/install-without-tests.launch -------------------------------------------------------------------------------- /solrdf/src/doc/response-examples/facets-examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaziocodice/SolRDF/HEAD/solrdf/src/doc/response-examples/facets-examples.xml --------------------------------------------------------------------------------