Last updated on 2025-10-09 02:51:58 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 1.2 | 2.70 | 21.25 | 23.95 | NOTE | |
r-devel-linux-x86_64-debian-gcc | 1.2 | 1.92 | 17.38 | 19.30 | NOTE | |
r-devel-linux-x86_64-fedora-clang | 1.2 | 36.17 | NOTE | |||
r-devel-linux-x86_64-fedora-gcc | 1.2 | 33.37 | NOTE | |||
r-devel-windows-x86_64 | 1.2 | 3.00 | 41.00 | 44.00 | NOTE | |
r-patched-linux-x86_64 | 1.2 | 2.51 | 20.22 | 22.73 | NOTE | |
r-release-linux-x86_64 | 1.2 | 2.46 | 20.27 | 22.73 | NOTE | |
r-release-macos-arm64 | 1.2 | 18.00 | NOTE | |||
r-release-macos-x86_64 | 1.2 | 28.00 | NOTE | |||
r-release-windows-x86_64 | 1.2 | 3.00 | 180120.00 | 180123.00 | ERROR | |
r-oldrel-macos-arm64 | 1.2 | 17.00 | NOTE | |||
r-oldrel-macos-x86_64 | 1.2 | 22.00 | NOTE | |||
r-oldrel-windows-x86_64 | 1.2 | 5.00 | 46.00 | 51.00 | NOTE |
Version: 1.2
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Allen Day <allenday@allenday.com>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: person(given = "Allen",
family = "Day",
role = c("aut", "cre"),
email = "allenday@allenday.com")
as necessary.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 1.2
Check: DESCRIPTION meta-information
Result: NOTE
Malformed Title field: should not end in a period.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Version: 1.2
Check: examples
Result: ERROR
Running examples in 'Storm-Ex.R' failed
The error most likely occurred in:
> ### Name: Storm-package
> ### Title: Write Storm Bolts in R using the Storm Multi-Language Protocol.
> ### Aliases: Storm-package Storm-class Tuple-class Storm Tuple
> ### Keywords: storm hadoop
>
> ### ** Examples
>
> #library(Storm)
> #source("Storm/R/Storm.R")
>
> #create a Storm object
> storm = Storm$new();
>
> #by default it has a handler that logs that the tuple was skipped.
> #let's replace it that with something more interesting and equally
> #useless.
>
> storm$lambda = function(s) {
+ #argument 's' is the Storm object.
+
+ #get the current Tuple object.
+ t = s$tuple;
+
+ #optional: acknowledge receipt of the tuple.
+ s$ack(t);
+
+ #optional: log a message.
+ s$log(c("processing tuple=",t$id));
+
+ #create contrived tuples to illustrate output.
+
+ #create 1st tuple...
+ t$output = vector(mode="character",length=1);
+ t$output[1] = as.numeric(t$input[3])+as.numeric(t$input[4]);
+ #...and emit it.
+ s$emit(t);
+
+ #create 2nd tuple...
+ t$output[1] = as.numeric(t$input[3])-as.numeric(t$input[4]);
+ #...and emit it.
+ s$emit(t);
+
+ #alternative/optional: mark the tuple as failed.
+ s$fail(t);
+ };
>
> #enter the main tuple-processing loop.
> storm$run();
{"pid": 181800}
end
{"command": "emit", "anchors": [], "tuple": ["bolt initializing"]}
end
Flavor: r-release-windows-x86_64