Last updated on 2026-05-27 09:55:33 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.2 | 2.23 | 21.26 | 23.49 | NOTE | |
| r-devel-linux-x86_64-debian-gcc | 1.2 | 2.04 | 17.21 | 19.25 | NOTE | |
| r-devel-linux-x86_64-fedora-clang | 1.2 | 36.68 | NOTE | |||
| r-devel-linux-x86_64-fedora-gcc | 1.2 | 34.55 | NOTE | |||
| r-devel-windows-x86_64 | 1.2 | 4.00 | 42.00 | 46.00 | NOTE | |
| r-patched-linux-x86_64 | 1.2 | 2.31 | 19.51 | 21.82 | NOTE | |
| r-release-linux-x86_64 | 1.2 | 2.25 | 19.51 | 21.76 | NOTE | |
| r-release-macos-arm64 | 1.2 | 1.00 | 9.00 | 10.00 | NOTE | |
| r-release-macos-x86_64 | 1.2 | 2.00 | 27.00 | 29.00 | NOTE | |
| r-release-windows-x86_64 | 1.2 | 4.00 | 40.00 | 44.00 | NOTE | |
| r-oldrel-macos-arm64 | 1.2 | NOTE | ||||
| r-oldrel-macos-x86_64 | 1.2 | 2.00 | 26.00 | 28.00 | NOTE | |
| r-oldrel-windows-x86_64 | 1.2 | 4.00 | 162943.00 | 162947.00 | ERROR |
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": 51796}
end
{"command": "emit", "anchors": [], "tuple": ["bolt initializing"]}
end
Flavor: r-oldrel-windows-x86_64