1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
archive of deleted filebot
Go to file
Reinhard Pointner a9285d53fd [!] Stream.count() may short-circuit and not traverse any elements at all.
@apiNote
An implementation may choose to not execute the stream pipeline (either sequentially or in parallel) if it is capable of computing the count directly from the stream source. In such cases no source elements will be traversed and no intermediate operations will be evaluated. Behavioral parameters with side-effects, which are strongly discouraged except for harmless cases such as debugging, may be affected. For example, consider the following stream:

List<String> l = Arrays.asList("A", "B", "C", "D");
long count = l.stream().peek(System.out::println).count();

The number of elements covered by the stream source, a List, is known and the intermediate operation, peek, does not inject into or remove elements from the stream (as may be the case for flatMap or filter operations). Thus the count is the size of the List and there is no need to execute the pipeline and, as a side-effect, print out the list elements.
2019-05-20 13:13:12 +07:00
build-data Sleep limits don't work 2019-05-19 20:38:24 +07:00
installer Use Recommends instead of Requires to make sure it works on different RPM distros (even if the package names are different, so users can then just install them manually themselves instead of the package not installing at all) 2019-05-10 21:22:52 +07:00
lib JNA 5.3.1 2019-05-14 18:40:21 +07:00
source [!] Stream.count() may short-circuit and not traverse any elements at all. 2019-05-20 13:13:12 +07:00
test/net/filebot Added test case 2019-04-30 00:45:35 +07:00
.gitignore Refactor and optimize built-in workflows 2019-02-21 17:27:56 +07:00
app.properties Workaround for JDK-8222825 2019-05-09 20:30:31 +07:00
build.xml compress="yes" level="9" 2019-05-18 11:09:02 +07:00
CHANGES.md Allow *.groovy files as argument value for --format, --filter and --file-filter CLI options (e.g. --format /path/to/MyFormat.groovy) 2019-05-19 18:41:46 +07:00
ivy.xml Update all dependencies to the latest 2019-05-14 18:25:00 +07:00
jdk8.patch Fix JDK8 patch 2019-05-18 03:04:33 +07:00
LICENSE.md RESPECT THE WORK. RESPECT THE AUTHOR. 2018-06-26 15:51:31 +07:00
README.md Update README.md 2018-10-01 13:27:56 +07:00

FileBot

The FileBot source code is available for your convenience:

  • You may view the source code and learn from it.
  • You may build FileBot for private use on unsupported platforms.
  • You may NOT use the source code to publish binary builds without explicit authorization.

Please respect the author that is kindly making the source code available under the MODIFIED DON'T BE A DICK PUBLIC LICENSE.