Nicholas DiPiazza
Nicholas DiPiazza
When closing streams from async http client that are opened via PipedInputStreams: ``` PipedInputStream pipedInputStream = new PipedInputStream(); PipedOutputStream pipedOutputStream = new PipedOutputStream(pipedInputStream); BodyDeferringAsyncHandler bodyDeferringAsyncHandler = new BodyDeferringAsyncHandler(pipedOutputStream); BoundRequestBuilder getRequestBuilder...
Add parsing support for AC1027 and AC1032. If `dwgread` is installed, use it to parse the document. Test data is from https://github.com/LibreDWG/libredwg/tree/master/test/test-data/2018
https://issues.apache.org/jira/browse/TIKA-3221 Need a parameter that can tell the `WriteOutContentHandler` to halt writing chars if a certain number of milliseconds has elapsed since the first chars were written.
I have loaded checkstyle.xml into the intellij formatter with the following separator wraps: ``` ``` yet when i format ``` this.idMatcher = new IdMatcher(config.getRegexCacheSize(), diagnosticMode, properties.getIncludedFileExtensions(), properties.getExcludedFileExtensions(), properties.getIncludedFilenameRegexes(), properties.getExcludedFilenameRegexes()); ```...
The webdriver spec https://w3c.github.io/webdriver/webdriver-spec.html#add-cookie forces the current browser session to be on the domain where you are adding the cookie to. This makes tons of sense and I agree with...
## Description See https://bz.apache.org/bugzilla/show_bug.cgi?id=66062 we need a way to control sub-results in the summary report from jmeter's GUI.  ## Motivation and Context Cannot see the...
add a new reducer that can keep only the latest scenario run. useful for times when you have flaky scenarios and you do retries on the given scenario, but don't...
We should add the ability to specify a list of Solr URLs. This allows us to focus on Solr HTTP calls instead of having to deal with zookeeper, which can...
When indexing to solr, it is very common to have the solr server hiccup while you are using spark-solr to bulk import huge amounts of data. Need the ability to...
I find myself wishing there was a simple SDK with the ability to pretty print (format) gherkin files. Like how intellij cucumber plugin formats them is exactly what I want....