Skip to content

Commit

Permalink
r_arguments defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Aug 30, 2024
1 parent a35c967 commit 11f27e5
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion R/crew_controller_lsf.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ crew_controller_lsf <- function(
reset_options = FALSE,
garbage_collection = FALSE,
launch_max = 5L,
r_arguments = NULL,
r_arguments = c("--no-save", "--no-restore"),
verbose = FALSE,
command_submit = as.character(Sys.which("bsub")),
command_terminate = as.character(Sys.which("bkill")),
Expand Down
2 changes: 1 addition & 1 deletion R/crew_controller_pbs.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ crew_controller_pbs <- function(
reset_options = FALSE,
garbage_collection = FALSE,
launch_max = 5L,
r_arguments = NULL,
r_arguments = c("--no-save", "--no-restore"),
verbose = FALSE,
command_submit = as.character(Sys.which("qsub")),
command_terminate = as.character(Sys.which("qdel")),
Expand Down
2 changes: 1 addition & 1 deletion R/crew_controller_sge.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ crew_controller_sge <- function(
reset_options = FALSE,
garbage_collection = FALSE,
launch_max = 5L,
r_arguments = NULL,
r_arguments = c("--no-save", "--no-restore"),
verbose = FALSE,
command_submit = as.character(Sys.which("qsub")),
command_terminate = as.character(Sys.which("qdel")),
Expand Down
2 changes: 1 addition & 1 deletion R/crew_controller_slurm.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ crew_controller_slurm <- function(
reset_options = FALSE,
garbage_collection = FALSE,
launch_max = 5L,
r_arguments = NULL,
r_arguments = c("--no-save", "--no-restore"),
verbose = FALSE,
command_submit = as.character(Sys.which("sbatch")),
command_terminate = as.character(Sys.which("scancel")),
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_cluster.R
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ crew_launcher_cluster <- function(
garbage_collection = FALSE,
launch_max = 5L,
tls = crew::crew_tls(mode = "automatic"),
r_arguments = NULL,
r_arguments = c("--no-save", "--no-restore"),
verbose = FALSE,
command_submit = "",
command_terminate = "",
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_lsf.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ crew_launcher_lsf <- function(
garbage_collection = FALSE,
launch_max = 5L,
tls = crew::crew_tls(mode = "automatic"),
r_arguments = NULL,
r_arguments = c("--no-save", "--no-restore"),
verbose = FALSE,
command_submit = as.character(Sys.which("bsub")),
command_terminate = as.character(Sys.which("bkill")),
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_pbs.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ crew_launcher_pbs <- function(
garbage_collection = FALSE,
launch_max = 5L,
tls = crew::crew_tls(mode = "automatic"),
r_arguments = NULL,
r_arguments = c("--no-save", "--no-restore"),
verbose = FALSE,
command_submit = as.character(Sys.which("qsub")),
command_terminate = as.character(Sys.which("qdel")),
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_sge.R
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ crew_launcher_sge <- function(
garbage_collection = FALSE,
launch_max = 5L,
tls = crew::crew_tls(mode = "automatic"),
r_arguments = NULL,
r_arguments = c("--no-save", "--no-restore"),
verbose = FALSE,
command_submit = as.character(Sys.which("qsub")),
command_terminate = as.character(Sys.which("qdel")),
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_slurm.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ crew_launcher_slurm <- function(
garbage_collection = FALSE,
launch_max = 5L,
tls = crew::crew_tls(mode = "automatic"),
r_arguments = NULL,
r_arguments = c("--no-save", "--no-restore"),
verbose = FALSE,
command_submit = as.character(Sys.which("sbatch")),
command_terminate = as.character(Sys.which("scancel")),
Expand Down
2 changes: 1 addition & 1 deletion man/crew_controller_lsf.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_controller_pbs.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_controller_sge.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_controller_slurm.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_cluster.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_lsf.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_pbs.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_sge.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_slurm.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 11f27e5

Please sign in to comment.