pulquero

Results 47 comments of pulquero

Yes, modulus is going to be implemented in software - most MCUs dont have an instruction for it.

Don't think it does work either as ` encodeRDFStar = this instanceof TupleQueryResultWriter && !((TupleQueryResultWriter) this).getTupleQueryResultFormat().supportsRDFStar() && getWriterConfig().get(BasicWriterSettings.ENCODE_RDF_STAR); ` I think will do the lookup against SPARQLResultsXMLWriter.

This has just happened to me too. Was running fine, and now it only gets as far as the splash screen before being marked as not responding and then killed.

I got v0.391 working again by installing v0.38 over the top, checking that works, and then v0.391 over the top of that.

AccX/Y/Z are three individual sensors (0700,0710,0720), not 3 values from a single sensor. (Smartport) sensor values are 32bit (little endian). Values are normally integers with a predetermined fixed point. One...

Encountered this issue yesterday using 4.2.2, ` Caused by: java.lang.NullPointerException: statement may not be null at java.base/java.util.Objects.requireNonNull(Objects.java:246) at org.eclipse.rdf4j.model.util.Values.triple(Values.java:731) at org.eclipse.rdf4j.rio.turtle.TurtleParser.parseAnnotation(TurtleParser.java:1410) at org.eclipse.rdf4j.rio.turtle.TurtleParser.parseObjectList(TurtleParser.java:378) at org.eclipse.rdf4j.rio.turtle.TurtleParser.parsePredicateObjectList(TurtleParser.java:348) at org.eclipse.rdf4j.rio.trig.TriGParser.parseGraph(TriGParser.java:192) at org.eclipse.rdf4j.rio.trig.TriGParser.parseStatement(TriGParser.java:115) at...

Reproduced the issue with ``` import java.io.StringReader; import org.eclipse.rdf4j.rio.RDFFormat; import org.eclipse.rdf4j.rio.RDFParser; import org.eclipse.rdf4j.rio.Rio; public class TestParser { public static void main(String[] arg) throws Exception { RDFParser parser = Rio.createParser(RDFFormat.TRIGSTAR); parser.parse(new...

I think the fix is easy, trigparser should not override reportStatement(). Also, parseTriples() could be made DRY-er by having an isEndOfStatement() and overriding that rather than repeat the entire method.

See https://github.com/eclipse/rdf4j-storage/blob/master/evaluation/src/main/java/org/eclipse/rdf4j/query/algebra/evaluation/impl/ExtendedEvaluationStrategy.java but note https://github.com/eclipse/rdf4j/issues/1033.