-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates and fixes to components and configs
- Loading branch information
1 parent
7b0cc1f
commit f38ce7a
Showing
18 changed files
with
288 additions
and
12,540 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ | |
"ignoreComponents": [ | ||
"BindingsStreamAdaptiveHeuristics", | ||
"Buffer", | ||
"Map" | ||
"RegExp", | ||
"Map", | ||
"Set" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
engines/config-query-sparql-components/config/context-preprocess/actors.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"@context": [ | ||
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/runner/^2.0.0/components/context.jsonld", | ||
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-context-preprocess-membership-filter/^0.0.0/components/context.jsonld" | ||
], | ||
"@id": "urn:comunica:default:Runner", | ||
"@type": "Runner", | ||
"actors": [ | ||
{ | ||
"@id": "urn:comunica:default:context-preprocess/actors#membership-filter", | ||
"@type": "ActorContextPreprocessMembershipFilter" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
engines/config-query-sparql-components/config/rdf-parse/actors.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"@context": [ | ||
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/runner/^2.0.0/components/context.jsonld", | ||
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-parse-membership-filter-bloom/^0.0.0/components/context.jsonld", | ||
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-parse-membership-filter-gcs/^0.0.0/components/context.jsonld" | ||
], | ||
"@id": "urn:comunica:default:Runner", | ||
"@type": "Runner", | ||
"actors": [ | ||
{ | ||
"@id": "urn:comunica:default:rdf-parse-membership-filter/actors#bloom", | ||
"@type": "ActorRdfParseMembershipFilterBloom" | ||
}, | ||
{ | ||
"@id": "urn:comunica:default:rdf-parse-membership-filter/actors#gcs", | ||
"@type": "ActorRdfParseMembershipFilterGcs" | ||
} | ||
] | ||
} |
15 changes: 15 additions & 0 deletions
15
engines/config-query-sparql-components/config/rdf-parse/mediators.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"@context": [ | ||
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/bus-rdf-parse-membership-filter/^0.0.0/components/context.jsonld", | ||
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/mediator-race/^2.0.0/components/context.jsonld" | ||
], | ||
"@graph": [ | ||
{ | ||
"@id": "urn:comunica:default:rdf-parse-membership-filter/mediators#parse", | ||
"@type": "MediatorRace", | ||
"bus": { | ||
"@id": "ActorRdfParseMembershipFilter:_default_bus" | ||
} | ||
} | ||
] | ||
} |
28 changes: 28 additions & 0 deletions
28
engines/config-query-sparql-components/config/rdf-resolve-hypermedia-links-queue/actors.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"@context": [ | ||
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/runner/^2.0.0/components/context.jsonld", | ||
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-resolve-hypermedia-links-queue-wrapper-membership-filter/^0.0.0/components/context.jsonld" | ||
], | ||
"@id": "urn:comunica:default:Runner", | ||
"@type": "Runner", | ||
"actors": [ | ||
{ | ||
"@id": "urn:comunica:default:rdf-resolve-hypermedia-links-queue/actors#wrapper-membership-filter", | ||
"@type": "ActorRdfResolveHypermediaLinksQueueWrapperMembershipFilter", | ||
"beforeActors": { | ||
"@id": "urn:comunica:default:rdf-resolve-hypermedia-links-queue/actors#fifo" | ||
}, | ||
"mediatorRdfResolveHypermediaLinksQueue": { | ||
"@id": "urn:comunica:default:rdf-resolve-hypermedia-links-queue/mediators#main" | ||
}, | ||
"ignorePatterns": [ | ||
"^(.*\\/(public|private)TypeIndex)$" | ||
], | ||
"members": [ | ||
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subject", | ||
"http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate", | ||
"http://www.w3.org/1999/02/22-rdf-syntax-ns#object" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.