Róbert Papp

Results 837 comments of Róbert Papp
trafficstars

Also ```diff -Sitemap: https://neo4j.com/docs/migration-guide/current/sitemap.xml +Sitemap: https://neo4j.com/docs/upgrade-migration-guide/current/sitemap.xml ``` because as it turns out https://neo4j.com/docs/migration-guide is redirected, but I guess robot rules don't redirect.

Oh, I see, so https://neo4j.com/docs/java-reference/3.5/javadocs/ doesn't contain `TestServerBuilders` and `ServerControls`, so they're internal API. In 4.x `Neo4j` and `Neo4jBuilders` are also not listed. In 3.x there was no supported way...

Thank you for the responses, it helps a lot to understand this. Sorry if the tone was a bit strong, I was really upset not finding any documentation on the...

Could someone with access please do some or all of what's suggested in https://github.com/neo4j/neo4j/issues/12746#issuecomment-882697159? Note: there's still no "changelog" for harness that I could find, this issue ranks first, is...

Right now the only way I see for changes is: * Find the commit date for the old version: https://github.com/neo4j/neo4j/tree/4.2.4 * Mar 12, 2021 * Look for a commit just...

I get the first code example, but the second is weird. Are you saying there can be only one `not` and only as the last one? Also in common Boolean...

Re examples: @Phlow did a pretty good SEO in the template ;) https://www.google.com/search?q=%22with+JEKYLL+based+on+FEELING+RESPONSIVE.%22

@cowtowncoder To move this a bit forward... Here's a base repro: ```kotlin package test fun main(args: Array) { val mapper = XmlMapper().apply { registerModule(KotlinModule()) configure(FAIL_ON_UNKNOWN_PROPERTIES, false) } val feed =...

Note the actual Kotlin-compiled code looks like this: ```java public final class Attribute { private final String code; @JacksonXmlText private final String title; public Attribute( @JacksonXmlProperty(isAttribute = true) @NotNull String...

*Outdated*, I recommend to use [`setXMLTextElementName`](https://github.com/FasterXML/jackson-module-kotlin/issues/138#issuecomment-576484905). --- Based on the above discovery here's another workaround (instead of using [JsonNode](https://stackoverflow.com/a/47124451/253468)): ```kotlin data class Attribute( @JacksonXmlProperty(isAttribute = true) val code: String )...