@@ -384,42 +384,42 @@ func (s HistorySize) Contents() tableContents {
384
384
"Overall repository size" ,
385
385
S (
386
386
"Commits" ,
387
- I ("Count" , nil , s .UniqueCommitCount , metric , " " , 500e3 ),
387
+ I ("Count" , nil , s .UniqueCommitCount , metric , "" , 500e3 ),
388
388
I ("Total size" , nil , s .UniqueCommitSize , binary , "B" , 250e6 ),
389
389
),
390
390
391
391
S (
392
392
"Trees" ,
393
- I ("Count" , nil , s .UniqueTreeCount , metric , " " , 1.5e6 ),
393
+ I ("Count" , nil , s .UniqueTreeCount , metric , "" , 1.5e6 ),
394
394
I ("Total size" , nil , s .UniqueTreeSize , binary , "B" , 2e9 ),
395
- I ("Total tree entries" , nil , s .UniqueTreeEntries , metric , " " , 50e6 ),
395
+ I ("Total tree entries" , nil , s .UniqueTreeEntries , metric , "" , 50e6 ),
396
396
),
397
397
398
398
S (
399
399
"Blobs" ,
400
- I ("Count" , nil , s .UniqueBlobCount , metric , " " , 1.5e6 ),
400
+ I ("Count" , nil , s .UniqueBlobCount , metric , "" , 1.5e6 ),
401
401
I ("Total size" , nil , s .UniqueBlobSize , binary , "B" , 10e9 ),
402
402
),
403
403
404
404
S (
405
405
"Annotated tags" ,
406
- I ("Count" , nil , s .UniqueTagCount , metric , " " , 25e3 ),
406
+ I ("Count" , nil , s .UniqueTagCount , metric , "" , 25e3 ),
407
407
),
408
408
409
409
S (
410
410
"References" ,
411
- I ("Count" , nil , s .ReferenceCount , metric , " " , 25e3 ),
411
+ I ("Count" , nil , s .ReferenceCount , metric , "" , 25e3 ),
412
412
),
413
413
),
414
414
415
415
S ("Biggest objects" ,
416
416
S ("Commits" ,
417
417
I ("Maximum size" , s .MaxCommitSizeCommit , s .MaxCommitSize , binary , "B" , 50e3 ),
418
- I ("Maximum parents" , s .MaxParentCountCommit , s .MaxParentCount , metric , " " , 10 ),
418
+ I ("Maximum parents" , s .MaxParentCountCommit , s .MaxParentCount , metric , "" , 10 ),
419
419
),
420
420
421
421
S ("Trees" ,
422
- I ("Maximum entries" , s .MaxTreeEntriesTree , s .MaxTreeEntries , metric , " " , 1000 ),
422
+ I ("Maximum entries" , s .MaxTreeEntriesTree , s .MaxTreeEntries , metric , "" , 1000 ),
423
423
),
424
424
425
425
S ("Blobs" ,
@@ -428,21 +428,21 @@ func (s HistorySize) Contents() tableContents {
428
428
),
429
429
430
430
S ("History structure" ,
431
- I ("Maximum history depth" , nil , s .MaxHistoryDepth , metric , " " , 500e3 ),
432
- I ("Maximum tag depth" , s .MaxTagDepthTag , s .MaxTagDepth , metric , " " , 1.001 ),
431
+ I ("Maximum history depth" , nil , s .MaxHistoryDepth , metric , "" , 500e3 ),
432
+ I ("Maximum tag depth" , s .MaxTagDepthTag , s .MaxTagDepth , metric , "" , 1.001 ),
433
433
),
434
434
435
435
S ("Biggest checkouts" ,
436
- I ("Number of directories" , s .MaxExpandedTreeCountTree , s .MaxExpandedTreeCount , metric , " " , 2000 ),
437
- I ("Maximum path depth" , s .MaxPathDepthTree , s .MaxPathDepth , metric , " " , 10 ),
436
+ I ("Number of directories" , s .MaxExpandedTreeCountTree , s .MaxExpandedTreeCount , metric , "" , 2000 ),
437
+ I ("Maximum path depth" , s .MaxPathDepthTree , s .MaxPathDepth , metric , "" , 10 ),
438
438
I ("Maximum path length" , s .MaxPathLengthTree , s .MaxPathLength , binary , "B" , 100 ),
439
439
440
- I ("Number of files" , s .MaxExpandedBlobCountTree , s .MaxExpandedBlobCount , metric , " " , 50e3 ),
440
+ I ("Number of files" , s .MaxExpandedBlobCountTree , s .MaxExpandedBlobCount , metric , "" , 50e3 ),
441
441
I ("Total size of files" , s .MaxExpandedBlobSizeTree , s .MaxExpandedBlobSize , binary , "B" , 1e9 ),
442
442
443
- I ("Number of symlinks" , s .MaxExpandedLinkCountTree , s .MaxExpandedLinkCount , metric , " " , 25e3 ),
443
+ I ("Number of symlinks" , s .MaxExpandedLinkCountTree , s .MaxExpandedLinkCount , metric , "" , 25e3 ),
444
444
445
- I ("Number of submodules" , s .MaxExpandedSubmoduleCountTree , s .MaxExpandedSubmoduleCount , metric , " " , 100 ),
445
+ I ("Number of submodules" , s .MaxExpandedSubmoduleCountTree , s .MaxExpandedSubmoduleCount , metric , "" , 100 ),
446
446
),
447
447
)
448
448
}
0 commit comments