Fabien Renaud

Results 7 issues of Fabien Renaud

Triggers are optional: http://www.uml-diagrams.org/state-machine-diagrams.html (see "Behavioral Transition": list of triggers is optional). http://www.boost.org/doc/libs/1_55_0/libs/msm/doc/HTML/ch03s02.html#d0e713 Let's support that.

enhancement

I can not wrap my head around how the codegen build process is supposed to work _smoothly_... I did get it to work (with gradle), but steps were convoluted. The...

In [ByteSourceJsonBootstrapper#L247](https://github.com/FasterXML/jackson-core/blob/master/src/main/java/com/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper.java#L247): ``` public JsonParser constructParser(ObjectReadContext readCtxt, int streamReadFeatures, int formatReadFeatures, ByteQuadsCanonicalizer rootByteSymbols, CharsToNameCanonicalizer rootCharSymbols, int factoryFeatures) throws IOException { JsonEncoding enc = detectEncoding(); if (enc == JsonEncoding.UTF8) { /*...

### Issue Using a `JsonParser` instantiated via `JsonParser.createParser(DataInput)` does not update `JsonLocation` values returned by `JsonParser.getCurrentLocation` (everything defaults to -1). Switching to `JsonParser.createParser(InputStream)` with the same input object populates the...

I am trying to run JMH against [LoganSquare](https://github.com/bluelinelabs/LoganSquare), which depends on the gradle apt plugin and also does annotation processing. But every time I do and start the program using...

I expect the files in src/jmh/resources to have precedence to the main ones (src/main/resources). This is the normal behavior for tests. **Repro:** build.gradle plugins { id 'me.champeau.gradle.jmh' version '0.3.1' }...

I see some references to protobuf in the docs and code base but no method to send bytes. Is it possible to send and receive protobuf messages with the project...