Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
colibrics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
colibrics
Commits
096be61e
Commit
096be61e
authored
4 years ago
by
François Bobot
Browse files
Options
Downloads
Patches
Plain Diff
Remove default limit
parent
18712fa5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/bin/options.ml
+2
-2
2 additions, 2 deletions
src/bin/options.ml
with
2 additions
and
2 deletions
src/bin/options.ml
+
2
−
2
View file @
096be61e
...
@@ -240,13 +240,13 @@ let state =
...
@@ -240,13 +240,13 @@ let state =
let
doc
=
"Stop the program after a time lapse of $(docv).
let
doc
=
"Stop the program after a time lapse of $(docv).
Accepts usual suffixes for durations : s,m,h,d.
Accepts usual suffixes for durations : s,m,h,d.
Without suffix, default to a time in seconds."
in
Without suffix, default to a time in seconds."
in
Arg
.(
value
&
opt
c_time
300
.
&
info
[
"t"
;
"time"
]
~
docv
:
"TIME"
~
doc
~
docs
)
Arg
.(
value
&
opt
c_time
infinity
&
info
[
"t"
;
"time"
]
~
docv
:
"TIME"
~
doc
~
docs
)
in
in
let
size
=
let
size
=
let
doc
=
"Stop the program if it tries and use more the $(docv) memory space. "
^
let
doc
=
"Stop the program if it tries and use more the $(docv) memory space. "
^
"Accepts usual suffixes for sizes : k,M,G,T. "
^
"Accepts usual suffixes for sizes : k,M,G,T. "
^
"Without suffix, default to a size in octet."
in
"Without suffix, default to a size in octet."
in
Arg
.(
value
&
opt
c_size
1_000_000_000
.
&
info
[
"s"
;
"size"
]
~
docv
:
"SIZE"
~
doc
~
docs
)
Arg
.(
value
&
opt
c_size
infinity
&
info
[
"s"
;
"size"
]
~
docv
:
"SIZE"
~
doc
~
docs
)
in
in
let
in_lang
=
let
in_lang
=
let
doc
=
Format
.
asprintf
let
doc
=
Format
.
asprintf
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment