@@ -1166,7 +1166,7 @@ $graph:
1166
1166
" _id " : " @type"
1167
1167
" _type " : " @vocab"
1168
1168
- name : coresMin
1169
- type : ["null", long, float, Expression]
1169
+ type : ["null", int, long, float, Expression]
1170
1170
# default: 1
1171
1171
# Don't set the default here, we need to be able to distinguish between
1172
1172
# a value not provided and the textual default to be able to implement
@@ -1199,14 +1199,14 @@ $graph:
1199
1199
next whole number.
1200
1200
1201
1201
- name : coresMax
1202
- type : ["null", long, float, Expression]
1202
+ type : ["null", int, long, float, Expression]
1203
1203
doc : |
1204
1204
Maximum reserved number of CPU cores.
1205
1205
1206
1206
See `coresMin` for discussion about fractional CPU requests.
1207
1207
1208
1208
- name : ramMin
1209
- type : ["null", long, float, Expression]
1209
+ type : ["null", int, long, float, Expression]
1210
1210
# default: 256
1211
1211
# Don't set the default here, we need to be able to distinguish between
1212
1212
# a value not provided and the textual default to be able to implement
@@ -1223,14 +1223,14 @@ $graph:
1223
1223
non-zero integer.
1224
1224
1225
1225
- name : ramMax
1226
- type : ["null", long, float, Expression]
1226
+ type : ["null", int, long, float, Expression]
1227
1227
doc : |
1228
1228
Maximum reserved RAM in mebibytes (2**20)
1229
1229
1230
1230
See `ramMin` for discussion about fractional RAM requests.
1231
1231
1232
1232
- name : tmpdirMin
1233
- type : ["null", long, float, Expression]
1233
+ type : ["null", int, long, float, Expression]
1234
1234
# default: 1024
1235
1235
# Don't set the default here, we need to be able to distinguish between
1236
1236
# a value not provided and the textual default to be able to implement
@@ -1247,14 +1247,14 @@ $graph:
1247
1247
must be a non-zero integer.
1248
1248
1249
1249
- name : tmpdirMax
1250
- type : ["null", long, float, Expression]
1250
+ type : ["null", int, long, float, Expression]
1251
1251
doc : |
1252
1252
Maximum reserved filesystem based storage for the designated temporary directory, in mebibytes (2**20)
1253
1253
1254
1254
See `tmpdirMin` for discussion about fractional storage requests.
1255
1255
1256
1256
- name : outdirMin
1257
- type : ["null", long, float, Expression]
1257
+ type : ["null", int, long, float, Expression]
1258
1258
# default: 1024
1259
1259
# Don't set the default here, we need to be able to distinguish between
1260
1260
# a value not provided and the textual default to be able to implement
@@ -1271,7 +1271,7 @@ $graph:
1271
1271
must be a non-zero integer.
1272
1272
1273
1273
- name : outdirMax
1274
- type : ["null", long, float, Expression]
1274
+ type : ["null", int, long, float, Expression]
1275
1275
doc : |
1276
1276
Maximum reserved filesystem based storage for the designated output directory, in mebibytes (2**20)
1277
1277
@@ -1413,7 +1413,7 @@ $graph:
1413
1413
" _id " : " @type"
1414
1414
" _type " : " @vocab"
1415
1415
- name : timelimit
1416
- type : [long, Expression]
1416
+ type : [int, long, Expression]
1417
1417
doc : |
1418
1418
The time limit, in seconds. A time limit of zero means no
1419
1419
time limit. Negative time limits are an error.
0 commit comments