Browse Source

removed out log and err from requirements R

master
ma0 5 years ago
parent
commit
287ca5d3e5

+ 0
- 0
docker/R/requirements/requirements_R_err.err View File


+ 0
- 19
docker/R/requirements/requirements_R_log.log View File

@@ -1,19 +0,0 @@
1
-000 (051.000.000) 05/10 12:05:50 Job submitted from host: <192.168.27.25:9618?addrs=192.168.27.25-9618&noUDP&sock=1446571_f6bf_4>
2
-...
3
-001 (051.000.000) 05/10 12:05:52 Job executing on host: <192.168.27.17:9618?addrs=192.168.27.17-9618&noUDP&sock=27247_c111_3>
4
-...
5
-005 (051.000.000) 05/10 12:05:56 Job terminated.
6
-	(1) Normal termination (return value 0)
7
-		Usr 0 00:00:00, Sys 0 00:00:00  -  Run Remote Usage
8
-		Usr 0 00:00:00, Sys 0 00:00:00  -  Run Local Usage
9
-		Usr 0 00:00:00, Sys 0 00:00:00  -  Total Remote Usage
10
-		Usr 0 00:00:00, Sys 0 00:00:00  -  Total Local Usage
11
-	2015  -  Run Bytes Sent By Job
12
-	24  -  Run Bytes Received By Job
13
-	2015  -  Total Bytes Sent By Job
14
-	24  -  Total Bytes Received By Job
15
-	Partitionable Resources :    Usage  Request Allocated 
16
-	   Cpus                 :        0        1         1 
17
-	   Disk (KB)            :       18        1     45972 
18
-	   Memory (MB)          :                 0      1024 
19
-...

+ 0
- 42
docker/R/requirements/requirements_R_out.out View File

@@ -1,42 +0,0 @@
1
-function (file, dir = ".") 
2
-{
3
-    dirMode <- NULL
4
-    if (!missing(file) && !missing(dir)) {
5
-        stop("You must set either the file or the directory parameter, not both")
6
-    }
7
-    else if (missing(file)) {
8
-        if (identical(dir, "")) {
9
-            stop("You must specify either a file or directory parameter")
10
-        }
11
-        dirMode <- TRUE
12
-        dir <- sub("/$", "", dir)
13
-        file <- list.files(dir, "^plumber\\.r$", ignore.case = TRUE, 
14
-            full.names = TRUE)
15
-        if (length(file) == 0) {
16
-            stop("No plumber.R file found in the specified directory: ", 
17
-                dir)
18
-        }
19
-    }
20
-    else {
21
-        dirMode <- FALSE
22
-    }
23
-    entrypoint <- list.files(dir, "^entrypoint\\.r$", ignore.case = TRUE)
24
-    if (dirMode && length(entrypoint) > 0) {
25
-        old <- setwd(dir)
26
-        on.exit(setwd(old))
27
-        x <- source(entrypoint)
28
-        pr <- x$value
29
-        if (!("plumber" %in% class(pr))) {
30
-            stop("entrypoint.R must return a runnable Plumber router.")
31
-        }
32
-        pr
33
-    }
34
-    else if (file.exists(file)) {
35
-        plumber$new(file)
36
-    }
37
-    else {
38
-        stop("File does not exist: ", file)
39
-    }
40
-}
41
-<bytecode: 0x55df34386588>
42
-<environment: namespace:plumber>

Loading…
Cancel
Save