-
Notifications
You must be signed in to change notification settings - Fork 128
/
TAGS.world
25847 lines (21812 loc) · 713 KB
/
TAGS.world
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
init/profile.in,346
LMOD_ALLOW_ROOT_USE=7,262
export MODULEPATH_ROOT=14,457
export LMOD_sys=16,561
LMOD_MODULEPATH_INIT=20,677
export MODULEPATH=30,1059
OLD_IFS=44,1650
export MODULEPATH=47,1718
export MANPATH=58,1987
my_shell=87,2569
bash|zsh|sh)sh95,2761
ksh*) my_shell=96,2780
*) my_shell=97,2806
init/sh.in,43
LMOD_ROOT=3,11
clearMT(19,239
ml(31,685
init/bash.in,429
*v*x*) __lmod_vx=10,259
*v*) __lmod_vx=11,289
*x*) __lmod_vx=12,319
esac;13,349
__build_FPATH_for_zsh_ksh(26,681
export FPATH=46,1170
export LMOD_ROOT=52,1305
module(97,2973
module(104,3180
LMOD_VERSION=138,4223
settarg 142,4319
ml(158,4800
clearMT(173,5146
clearLmod(178,5217
xSetTitleLmod(184,5316
set -$__lmod_vx;$__lmod_vx200,5790
unset __lmod_vx;201,5809
fi;202,5828
init/lisp,578
;; call-process on Emacs cannot write stderr to a separate buffer35,1322
;; so it must go to a file and then get pulled into the log buffer36,1400
;; Run any setenv, etc commands produced by Lmod55,2291
;; cmd-buffer should currently contain the pathname of file to run56,2350
;; Note: use eval-buffer instead of load-file to avoid stomping57,2427
;; and run it carefully. If an error is thrown, catch it and64,2835
;; propagate the fact upwards as a nil, but be sure to still65,2913
init/cmake,288
function(73,3534
else(89,4038
endif(91,4086
file(113,4619
endif(119,4810
endif(122,4914
list(136,5282
list(138,5350
endfunction(142,5459
endfunction(147,5612
foreach(160,5940
list(170,6272
else(172,6366
endif(174,6414
endfunction(178,6487
init/rc.in,15
LMOD_PKG=4,44
init/lmod_bash_completions,327
_module_avail(1,0
_module_dir(8,255
_module_spider(66,1950
_module_loaded_modules(70,2041
_module_savelist(74,2199
_module_disable(78,2294
_module_loaded_modules_negated(82,2388
_module_mcc(86,2563
_module_describe(90,2653
_module_not_yet_loaded(94,2748
_module_long_arg_list(98,2844
_module(118,3381
_ml(185,5416
init/fish.in,71
function module14,298
function module18,372
function ml23,460
init/ksh_funcs/settarg,19
settarg 7,249
init/ksh_funcs/clearLmod,20
clearLmod(6,202
init/ksh_funcs/module,39
module(7,252
module(12,365
init/ksh_funcs/clearMT,18
clearMT(6,202
init/ksh_funcs/ml,13
ml 6,202
init/zsh/_ml,396
_ml(4,31
_ml_loaded_modules_negated(167,5725
_ml_loaded_modules(172,5912
_ml_available_modules(180,6113
_ml_spider_list(188,6363
_ml_unload(194,6461
_ml_restore(200,6537
_ml_mcc(206,6670
_ml_describe(212,6799
_ml_disable(218,6933
_ml_help(224,7066
_ml_swap(230,7146
_ml_show(242,7389
_ml_load(249,7500
_ml_use(256,7610
_ml_unuse(264,7786
_ml_whatis(270,7874
_ml_spider(276,7956
init/zsh/_module,443
_module(4,35
_module_command(39,2628
_module_loaded_modules(98,4572
_module_available_modules(104,4774
_module_spider_list(112,5026
_module_restore(117,5127
_module_disable(123,5264
_ml_mcc(129,5401
_ml_describe(135,5530
_module_help(142,5695
_module_load(149,5818
_module_spider(156,5939
_module_unload(163,6053
_module_swap(170,6175
_module_show(184,6468
_module_use(194,6644
_module_unuse(202,6824
_module_whatis(208,6916
init/cshrc.in,19
set MY_NAME=9,249
init/env_modules_python.py.in,70
from subprocess import PIPE,3,55
import os,4,90
numArgs 27,810
init/fish/module.fish,261
function __fish_lmod_commands5,51
function __fish_lmod_av26,543
function __fish_lmod_list30,637
function __fish_lmod_savelist39,844
function _get_commandline_list48,1062
function __fish_lmod_needs_command53,1167
function __fish_lmod_using_command64,1374
init/R,23
args <- paste(6,130
settarg/settarg_cmd.in.lua,77
function cmdDir(65,2547
function optionTbl(75,2680
function main(124,4075
settarg/Bash.lua,140
function Bash.expandVar(42,1840
function Bash.expandVar(expandVar42,1840
function Bash.unset(61,2302
function Bash.unset(unset61,2302
settarg/Csh.lua,136
function Csh.expandVar(44,1880
function Csh.expandVar(expandVar44,1880
function Csh.unset(52,2056
function Csh.unset(unset52,2056
settarg/ModifyPath.lua,29
function ModifyPath(38,1745
settarg/Version.lua,325
function M.branch(2,11
function M.branch(branch2,11
function M.branchStr(5,52
function M.branchStr(branchStr5,52
function M.tag(12,195
function M.tag(tag12,195
function M.git(13,235
function M.git(git13,235
function M.date(19,403
function M.date(date19,403
function M.name(20,458
function M.name(name20,458
settarg/TargValue.lua,174
function M.new(45,1819
function M.new(new45,1819
function M.value(61,2119
function M.value(value61,2119
function M.display(71,2372
function M.display(display71,2372
settarg/ProcessModuleTable.lua,70
function extractVersion(42,1872
function processModuleTable(51,2080
settarg/CmdLineOptions.lua,96
local function l_new(51,2054
function M.options(60,2163
function M.options(options60,2163
settarg/bash.settarg,126
export SETTARG_CMD=7,211
dbg(14,360
opt(18,387
mdbg(22,414
gopt(26,443
chk(30,472
targ(34,499
cdt(39,532
PATH=48,753
settarg/BuildTarget.lua,548
function M.default_MACH(69,2583
function M.default_MACH(default_MACH69,2583
function M.default_OS(73,2644
function M.default_OS(default_OS73,2644
function M.default_HOST(81,2834
function M.default_HOST(default_HOST81,2834
function M.default_BUILD_SCENARIO(110,3395
function M.default_BUILD_SCENARIO(default_BUILD_SCENARIO110,3395
local function l_string2Tbl(162,4950
function M.buildTbl(187,5711
function M.buildTbl(buildTbl187,5711
local function l_readDotFiles(245,7277
function M.exec(352,10487
function M.exec(exec352,10487
settarg/STT.lua,1042
local function l_stt_version(55,2135
local function l_new(59,2183
function M.get_targA(92,3075
function M.get_targA(get_targA92,3075
function M.add2ExtraT(96,3128
function M.add2ExtraT(add2ExtraT96,3128
function M.getBuildScenario(102,3218
function M.getBuildScenario(getBuildScenario102,3218
function M.getBuildScenarioState(110,3389
function M.getBuildScenarioState(getBuildScenarioState110,3389
function M.setBuildScenarioState(114,3467
function M.setBuildScenarioState(setBuildScenarioState114,3467
function M.getEXTRA(119,3614
function M.getEXTRA(getEXTRA119,3614
function M.removeFromExtra(130,3838
function M.removeFromExtra(removeFromExtra130,3838
function M.purgeExtraT(140,4056
function M.purgeExtraT(purgeExtraT140,4056
function M.registerVars(144,4110
function M.registerVars(registerVars144,4110
function M.clearEnv(154,4273
function M.clearEnv(clearEnv154,4273
function M.stt(165,4512
function M.stt(stt165,4512
function M.serializeTbl(175,4676
function M.serializeTbl(serializeTbl175,4676
settarg/getUname.lua,27
function getUname(66,2448
settarg/utils.lua,111
function argsPack(50,2045
function findFileInTree(56,2224
function STError(74,2575
function getSTT(84,2786
settarg/Bare.lua,67
function Bare.expand(43,1821
function Bare.expand(expand43,1821
settarg/Output.lua,25
function Output(37,1689
settarg/BaseShell.lua,344
function M.name(56,2301
function M.name(name56,2301
function M.getMT(60,2351
function M.getMT(getMT60,2351
local function l_valid_shell(78,2722
function M.build(85,2881
function M.build(build85,2881
function M.expand(102,3289
function M.expand(expand102,3289
function M.expandSTT(112,3480
function M.expandSTT(expandSTT112,3480
configure.ac,1267
FOLLOW_READLINK 23,294
ERR_MSG=45,690
AC_MSG_RESULT(686,28074
AC_MSG_RESULT(703,28607
FAST_TCL_INTERP=726,29372
OS=730,29437
export PKG_CONFIG_PATH=743,29942
DIR=748,30166
TCL_INCLUDE=753,30353
TCL_INCLUDE=770,30814
FOUND_ERROR=784,31224
PATH_TO_SRC=804,32370
mode=820,32662
MSG=823,32738
AC_PATH_PROG(845,33127
AC_PATH_PROGS(854,33325
AC_PATH_PROGS(863,33525
AC_PATH_PROGS(872,33759
AC_PATH_PROG(881,33925
PATH_TO_HASHSUM=888,34226
AC_PATH_PROG(897,34451
AC_PATH_PROGS(905,34681
PATH_TO_LUA=924,35193
mismatch=930,35391
mismatch=933,35495
AC_PATH_PROG(949,35855
AC_PATH_PROG(960,36140
lmodV=971,36569
LUA_PATH=989,37068
missingModules=1011,37966
AC_SUBST(1028,38302
missingModules=1036,38537
lfsV=1043,38641
AC_SUBST(1048,38825
missingModules=1057,39047
AC_SUBST(1064,39167
PATH_TO_LUA_DIR=1075,39304
LUA_INCLUDE=1080,39373
AC_PATH_PROG(1084,39455
PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1087,39564
LUA_INCLUDE=1089,39653
LUA_INCLUDE=1099,39960
exit 1131,40690
AC_SUBST(1134,40710
resultA=1140,40848
result=1154,41099
ORIG_ZSH_VERSION=1174,41569
ZSH_FPATH=1188,41800
tools/ColumnTable.lua,850
local function l_sizeMe(66,2587
function M.new(84,3040
function M.new(new84,3040
function M._clearEmptyColumns2D(129,4170
function M._clearEmptyColumns2D(_clearEmptyColumns2D129,4170
function M._entry_width1(171,5127
function M._entry_width1(_entry_width1171,5127
function M._entry_width2(201,6022
function M._entry_width2(_entry_width2201,6022
function M._columnSum1(254,7699
function M._columnSum1(_columnSum1254,7699
function M._columnSum2(274,8360
function M._columnSum2(_columnSum2274,8360
function M._display1(315,9564
function M._display1(_display1315,9564
function M._display2(330,10062
function M._display2(_display2330,10062
function M._number_of_columns_rows(368,11077
function M._number_of_columns_rows(_number_of_columns_rows368,11077
function M.build_tbl(480,14661
function M.build_tbl(build_tbl480,14661
tools/Optiks_Option.lua,263
function M.optionNames(65,2309
function M.optionNames(optionNames65,2309
function M.bless(83,2750
function M.bless(bless83,2750
function M.setDefault(120,3792
function M.setDefault(setDefault120,3792
function M.new(135,4362
function M.new(new135,4362
tools/replaceStr.lua,125
local function l_replaceStrValue(30,1315
function(prev,(prev32,1396
local function l_replaceStr(42,1640
tools/Dbg.lua,1865
local function l_rPrint(104,3081
local function l_argsPack(121,3690
local function l_changeIndentLevel(127,3879
local function l_new(132,4007
function M.dbg(153,4545
function M.dbg(dbg153,4545
function M.set_prefix(164,4900
function M.set_prefix(set_prefix164,4900
function M.activateDebug(175,5319
function M.activateDebug(activateDebug175,5319
function M.indentLevel(212,6568
function M.indentLevel(indentLevel212,6568
function M.active(218,6723
function M.active(active218,6723
function M.currentLevel(224,6869
function M.currentLevel(currentLevel224,6869
function M.deactivateWarning(230,7033
function M.deactivateWarning(deactivateWarning230,7033
function M.activateWarning(236,7195
function M.activateWarning(activateWarning236,7195
function M._quiet(242,7355
function M._quiet(_quiet242,7355
local function l_extractVPL(247,7486
local function l_startExtractVPL(252,7568
function M._start(260,7783
function M._start(_start260,7783
function M._zeroIndent(276,8134
function M._zeroIndent(_zeroIndent276,8134
function M._indent(282,8289
function M._indent(_indent282,8289
function M._fini(288,8447
function M._fini(_fini288,8447
function M._warning(310,9069
function M._warning(_warning310,9069
function M._error(321,9367
function M._error(_error321,9367
function M.errorExit(334,9659
function M.errorExit(errorExit334,9659
function M.warningCalled(341,9846
function M.warningCalled(warningCalled341,9846
function M._print(349,10032
function M._print(_print349,10032
function M._textA(384,10905
function M._textA(_textA384,10905
function M._printA(405,11357
function M._printA(_printA405,11357
function M._print2D(424,11756
function M._print2D(_print2D424,11756
function M.flush(441,12153
function M.flush(flush441,12153
function M._printT(445,12198
function M._printT(_printT445,12198
tools/json.lua,592
function json.encode 67,2820
function json.encode encode67,2820
function json.decode(123,4461
function json.decode(decode123,4461
function null(153,5535
function decode_scanArray(168,6263
function decode_scanComment(195,7381
function decode_scanConstant(208,8104
function decode_scanNumber(228,8971
function decode_scanObject(249,9899
function decode_scanString(303,12201
function decode_scanWhitespace(356,14628
function json_private.encodeString(381,15364
function json_private.encodeString(encodeString381,15364
function isArray(394,16044
function isEncodable(421,17321
tools/MF_TCL.lua,557
function MF_TCL.setenv(59,2444
function MF_TCL.setenv(setenv59,2444
function MF_TCL.prepend_path(68,2716
function MF_TCL.prepend_path(prepend_path68,2716
function MF_TCL.append_path(78,3000
function MF_TCL.append_path(append_path78,3000
function MF_TCL.alias(82,3094
function MF_TCL.alias(alias82,3094
function MF_TCL.shell_function(86,3180
function MF_TCL.shell_function(shell_function86,3180
function MF_TCL.complete(90,3279
function MF_TCL.complete(complete90,3279
function MF_TCL.header(95,3400
function MF_TCL.header(header95,3400
tools/lmod_system_execute.lua,38
function lmod_system_execute(42,1751
tools/inherits.lua,116
function inheritsFrom(38,1646
function new_class:create(49,2022
function new_class:create(create49,2022
tools/string_utils.lua,755
function string.escape(44,1901
function string.escape(escape44,1901
function string.split(59,2362
function string.split(split59,2362
local function l_getter(62,2467
local function l_splitter(66,2633
function string.trim(72,2763
function string.trim(trim72,2763
function string.caseIndependent(85,3141
function string.caseIndependent(caseIndependent85,3141
function string.multiEscaped(106,3808
function string.multiEscaped(multiEscaped106,3808
function string.doubleQuoteString(119,4234
function string.doubleQuoteString(doubleQuoteString119,4234
function string.atSymbolEscaped(132,4587
function string.atSymbolEscaped(atSymbolEscaped132,4587
function string.fillWords(144,5004
function string.fillWords(fillWords144,5004
tools/Optiks.lua,1471
local function l_argsPack(33,1446
function Optiks_Error(42,1780
function Optiks_Exit(52,1983
local function l_prt(81,2671
local function l_prtend(85,2723
function M.new(92,2916
function M.new(new92,2916
function M.add_option(154,4398
function M.add_option(add_option154,4398
function M._getValue(190,5592
function M._getValue(_getValue190,5592
function M.store(216,6400
function M.store(store216,6400
function M.store_true(229,6911
function M.store_true(store_true229,6911
function M.append(242,7429
function M.append(append242,7429
function M.store_false(259,8019
function M.store_false(store_false259,8019
function M.count(272,8534
function M.count(count272,8534
function M.display_store(282,8834
function M.display_store(display_store282,8834
function M.display_flag(302,9350
function M.display_flag(display_flag302,9350
function M.display_count(315,9704
function M.display_count(display_count315,9704
function M.setDefaults(323,9971
function M.setDefaults(setDefaults323,9971
function M.parseOpt(338,10513
function M.parseOpt(parseOpt338,10513
function M.buildHelpMsg(351,10964
function M.buildHelpMsg(buildHelpMsg351,10964
function M.printHelp(374,11588
function M.printHelp(printHelp374,11588
function M.buildManPod(379,11669
function M.buildManPod(buildManPod379,11669
function M.parseEnvArg(406,12421
function M.parseEnvArg(parseEnvArg406,12421
function M.parse(461,13773
function M.parse(parse461,13773
tools/declare.lua,85
function declare(38,1669
function isDefined(46,1894
function isNotDefined(50,1960
tools/MF_Base.lua,871
function M.name(56,2255
function M.name(name56,2255
function M.build(65,2508
function M.build(build65,2508
local function l_safe_eval(79,2859
function M.process(101,3539
function M.process(process101,3539
local function l_extractAliases(131,4557
function M.processAliases(147,5044
function M.processAliases(processAliases147,5044
local function l_extractFuncs(168,5766
function M.processFuncs(185,6285
function M.processFuncs(processFuncs185,6285
local function l_extractComplete(207,6998
function M.processComplete(231,7757
function M.processComplete(processComplete231,7757
function l_indexPath(248,8281
function l_splice(303,9297
function M.processVars(315,9458
function M.processVars(processVars315,9458
function M.complete(385,11561
function M.complete(complete385,11561
function M.header(388,11616
function M.header(header388,11616
tools/Banner.lua,291
local function l_new(51,1998
function M.singleton(64,2252
function M.singleton(singleton64,2252
function M.width(77,2561
function M.width(width77,2561
function M.border(85,2864
function M.border(border85,2864
function M.bannerStr(102,3442
function M.bannerStr(bannerStr102,3442
tools/Cosmic.lua,694
function M.singleton(54,2164
function M.singleton(singleton54,2164
function M.init(68,2375
function M.init(init68,2375
local function l_build_string(121,3724
function M.reportChangesFromDefault(131,3907
function M.reportChangesFromDefault(reportChangesFromDefault131,3907
function M.assign(155,4458
function M.assign(assign155,4458
function M.value(165,4639
function M.value(value165,4639
function M.default(170,4761
function M.default(default170,4761
function M.changed(174,4829
function M.changed(changed174,4829
function M.get_key(179,4949
function M.get_key(get_key179,4949
function M.set_key(183,5001
function M.set_key(set_key183,5001
function l_new(187,5059
tools/TermWidth.lua,64
local function l_askSystem(49,1883
function TermWidth(74,2477
tools/serializeTbl.lua,180
local function l_quoteValue(67,2556
local function l_nsformat(79,2839
local function wrap_name(112,3897
local function outputTblHelper(129,4393
function serializeTbl(235,7257
tools/deepcopy.lua,24
function deepcopy(3,19
tools/haveTermSupport.lua,67
function haveTermSupport(44,1846
function connected2Term(53,1985
tools/pairsByKeys.lua,29
function pairsByKeys 18,714
tools/.luatools_modules.list,12
fileA=4,36
tools/strict.lua,30
local function l_what 18,496
tools/MF_Lua.lua,498
function MF_Lmod.setenv(54,2234
function MF_Lmod.setenv(setenv54,2234
function MF_Lmod.prepend_path(64,2548
function MF_Lmod.prepend_path(prepend_path64,2548
function MF_Lmod.append_path(74,2873
function MF_Lmod.append_path(append_path74,2873
function MF_Lmod.alias(78,3008
function MF_Lmod.alias(alias78,3008
function MF_Lmod.shell_function(82,3135
function MF_Lmod.shell_function(shell_function82,3135
function MF_Lmod.complete(86,3285
function MF_Lmod.complete(complete86,3285
tools/capture.lua,26
function capture(46,2022
tools/BeautifulTbl.lua,199
function M.new(89,3873
function M.new(new89,3873
function M._build_tbl(120,4857
function M._build_tbl(_build_tbl120,4857
function M.build_tbl(184,6533
function M.build_tbl(build_tbl184,6533
tools/i18n/init.lua,1175
local function dotSplit(21,511
local function isPluralTable(30,688
local function isPresent(34,783
local function assertPresent(38,862
local function assertPresentOrPlural(45,1126
local function assertPresentOrTable(52,1443
local function assertFunctionOrNil(59,1749
local function defaultPluralizeFunction(66,2047
local function pluralize(70,2159
local function treatNode(78,2379
local function recursiveLoad(87,2595
local function localizedTranslate(101,2996
function i18n.set(115,3271
function i18n.set(set115,3271
function i18n.translate(132,3604
function i18n.translate(translate132,3604
function i18n.setLocale(147,3968
function i18n.setLocale(setLocale147,3968
function i18n.setFallbackLocale(154,4256
function i18n.setFallbackLocale(setFallbackLocale154,4256
function i18n.getFallbackLocale(159,4426
function i18n.getFallbackLocale(getFallbackLocale159,4426
function i18n.getLocale(163,4489
function i18n.getLocale(getLocale163,4489
function i18n.reset(167,4536
function i18n.reset(reset167,4536
function i18n.load(174,4665
function i18n.load(load174,4665
function i18n.loadFile(178,4722
function i18n.loadFile(loadFile178,4722
tools/i18n/plural.lua,444
local function assertPresentString(5,67
local function assertNumber(12,378
local function words(20,720
local function isInteger(29,888
local function between(33,949
local function inside(37,1033
function plural.get(261,6911
function plural.get(get261,6911
function plural.setDefaultFunction(270,7136
function plural.setDefaultFunction(setDefaultFunction270,7136
function plural.reset(274,7201
function plural.reset(reset274,7201
tools/i18n/interpolate.lua,195
local function interpolateValue(4,122
function (previous,(previous6,216
local function interpolateField(16,415
function (previous,(previous18,529
local function interpolate(27,727
tools/i18n/variants.lua,365
local function reverse(3,21
local function concat(9,159
function variants.ancestry(16,293
function variants.ancestry(ancestry16,293
function variants.isParent(26,548
function variants.isParent(isParent26,548
function variants.root(30,646
function variants.root(root30,646
function variants.fallbacks(34,714
function variants.fallbacks(fallbacks34,714
tools/base64.lua,242
local function lsh(17,307
local function rsh(22,393
local function bit(27,497
local function lor(32,594
function M.encode64(49,1545
function M.encode64(encode6449,1545
function M.decode64(76,3032
function M.decode64(decode6476,3032
tools/fileOps.lua,612
local function l_argsPack(45,1815
function findInPath(54,2215
function find_exec_path(91,3194
function isDir(126,4069
function isFile(145,4569
function exists(156,4788
function isExec(169,5124
function dirname(178,5429
function extname(193,5810
function removeExt(210,6197
function barefilename(227,6606
function splitFileName(244,7038
function pathJoin(264,7568
function mkdir_recursive(306,8602
local function l_abspath 334,9245
function realpath(377,10234
function path_regularize(389,10582
local function l_walk_dir(456,11975
local function l_walker(477,12573
function dir_walk(485,12753
docker/Dockerfile,323
RUN mkdir /tmp/git-repo;repo44,927
RUN mkdir /tmp/git-repo; cd /tmp/git-repo repo44,927
cd Lmod 46,1025
git fetch --tags;tags47,1041
git checkout origin/debian debian docker 49,1099
cd Lmod 50,1148
cd Lmod ; debuild -b -uc -us;us50,1148
cd .. ; dpkg -i ./lmod_8.7.34_all.deb deb51,1184
docker/build.sh,29
VERSION=12,227
lmod 24,593
ML_README.txt,184
module load baz goo;13,312
Unless you know what you are doing,79,1763
alias provided above on a system where Lmod is installed. Therefore,80,1833
Hermes.db,18
ProjectData 3,52
debian/changelog,2045
lmod (8.7.34) unstable;1,0
lmod (8.7.34) unstable; urgency=1,0
lmod (8.7.32) unstable; urgency=8,152
lmod (8.7.31) unstable; urgency=15,304
lmod (8.7.30) unstable; urgency=22,456
lmod (8.7.29) unstable; urgency=29,608
lmod (8.7.28) unstable; urgency=36,760
lmod (8.7.27) unstable; urgency=43,912
lmod (8.7.25) unstable; urgency=50,1064
lmod (8.7.24) unstable; urgency=57,1216
lmod (8.7.23) unstable; urgency=64,1368
lmod (8.7.22) unstable; urgency=71,1520
lmod (8.7.21) unstable; urgency=78,1672
lmod (8.7.20) unstable; urgency=85,1824
lmod (8.7.19) unstable; urgency=92,1976
lmod (8.7.18) unstable; urgency=99,2128
lmod (8.7.17) unstable; urgency=106,2280
lmod (8.7.15) unstable; urgency=113,2432
lmod (8.7.14) unstable; urgency=120,2584
lmod (8.7.13) unstable; urgency=127,2736
lmod (8.7.12) unstable; urgency=134,2888
lmod (8.7.11) unstable; urgency=141,3040
lmod (8.7.8) unstable; urgency=148,3192
lmod (8.7.7) unstable; urgency=155,3342
lmod (8.7.6) unstable; urgency=162,3492
lmod (8.7.5) unstable; urgency=169,3642
lmod (8.7.4) unstable; urgency=176,3792
lmod (8.7.3) unstable; urgency=183,3942
lmod (8.7.2) unstable; urgency=190,4092
lmod (8.7) unstable; urgency=197,4242
lmod (8.6.17) unstable; urgency=204,4388
lmod (8.6.15) unstable; urgency=211,4540
lmod (8.6.14) unstable; urgency=218,4692
lmod (8.6.12) unstable; urgency=225,4844
lmod (8.6.9) unstable; urgency=232,4996
lmod (8.6.8) unstable; urgency=239,5146
lmod (8.6.7) unstable; urgency=246,5296
lmod (8.6.6) unstable; urgency=253,5446
lmod (8.6.5) unstable; urgency=260,5596
lmod (8.6.4) unstable; urgency=267,5746
lmod (8.6.3) unstable; urgency=274,5896
lmod (8.6.2) unstable; urgency=281,6046
lmod (8.6.1) unstable; urgency=288,6196
lmod (8.5.25) unstable; urgency=295,6346
lmod (6.6-0.3) unstable; urgency=302,6513
lmod (6.6-0.2) unstable; urgency=310,6776
lmod (6.6-0.1) unstable; urgency=317,6981
lmod (5.8-1) unstable; urgency=335,7681
lmod (5.6.2-1) unstable; urgency=345,7992
lmod (5.5.1-1) unstable; urgency=354,8234
debian/patches/change_paths,32
prefix 4,56
-PKGV PKGV7,211
debian/patches/set_modulespath,45
export LMOD_FULL_SETTARG_SUPPORT=9,215
debian/lmod.substvars,26
misc:Depends=Depends1,0
debian/gbp.conf,23
pristine-tar=tar2,10
debian/rules,12
TDIR=7,103
debian/control,39
Build-Depends: autotools-dev,dev5,97
Makefile.in,5446
srcdir 1,0
prefix 2,38
SYS_LUA_PATH 3,76
SYS_LUA_CPATH 4,120
package 5,165
PATH_TO_SRC 7,238
PATH_TO_LUA 9,275
version 10,318
SITE_CONTROLLED_PREFIX 11,460
LMOD_ROOT 12,514
MY_PACKAGE 13,564
MY_PKG_PACKAGE 14,625
LMOD_CONFIG_DIR 15,686
LMOD_ROOT 18,771
MY_PACKAGE 19,813
MY_PKG_PACKAGE 20,852
CC 22,897
PATH_TO_SRC 23,931
path_to_src 24,974
TOOL_SRC 27,1017
I18N_SRC 28,1080
CONF_PY 30,1149
CONF_PY_PATTERN 31,1208
CURRENT_MK 32,1285
export IGNORE_DIRS export IGNORE_DIRS33,1343
REDIRECT 34,1452
LMOD_SETTARG_FULL_SUPPORT 35,1492
USE_DOT_FILES 36,1582
PREPEND_BLOCK 37,1672
COLORIZE 38,1762
SETTARG_CMD 39,1852
MODULEPATH_INIT 40,1893
LMOD_TERSE_DECORATIONS 41,1940
LMOD_AVAIL_EXTENSIONS 42,1989
LMOD_HIDDEN_ITALIC 43,2037
LMOD_OVERRIDE_LANG 44,2082
LMOD_ALLOW_ROOT_USE 45,2132
LMOD_USE_DOT_CONFIG_ONLY 46,2183
SITE_MSG_FILE 47,2238
SITE_NAME 48,2283
SUPPORT_KSH 49,2324
SYSHOST 50,2367
DYNAMIC_SPIDER_CACHE 51,2406
SILENCE_SHELL_DEBUGGING 52,2458
SYS_LD_LIB_PATH 53,2513
SYS_LD_PRELOAD 54,2560
CASE_INDEPENDENT_SORTING 55,2606
ZSH_SITE_FUNCTIONS_DIRS 56,2662
SPIDER_CACHE_DESCRIPT_FN 57,2717
ANCIENT 58,2773
ALLOW_TCL_MFILES 59,2812
MPATH_AVAIL 60,2860
EXTENDED_DEFAULT 61,2903
TMOD_PATH_RULE 62,2951
TMOD_FIND_FIRST 63,2997
CACHED_LOADS 64,3044
EXACT_MATCH 65,3088
DUPLICATE_PATHS 66,3131
DISABLE_NAME_AUTOSWAP 67,3178
SHORT_TIME 68,3231
PIN_VERSIONS 69,3273
AUTO_SWAP 70,3317
SPIDER_CACHE_DIRS 71,3358
LEGACY_ORDERING 72,3407
EXPORT_MODULE 73,3454
LMOD_DOWNSTREAM_CONFLICTS 74,3499
MODULES_AUTO_HANDLING 75,3556
BASENAME 76,3609
UPDATE_VERSION 77,3649
BUILD_V_src 78,3776
PS 79,3935
READLINK 80,3969
EXPR 81,4009
MODULES_AUTO_HANDLING 82,4045
PATH_TO_POD2MAN 83,4098
PATH_TO_HASHSUM 84,4145
PATH_TO_LUAC 85,4192
PATH_TO_PAGER 86,4236
PATH_TO_TCLSH 87,4281
PATH_TO_LS 88,4326
MODULEPATH_ROOT 89,4368
VDateFn 90,4415
VERSION_SRC 91,4467
SETTARG_VSRC 92,4522
LUA_INCLUDE 93,4581
UPDATE_SYSTEM_FN 94,4624
GIT_PROG 95,4672
PKG 96,4715
PKGV 97,4762
LIB 98,4805
LIBEXEC 99,4852
SHELLS 100,4903
TOOLS 101,4953
I18N 102,5002
SETTARG 103,5056
INIT 104,5107
INIT_KSH_FUNCS 105,5155
FISH_TAB 106,5213
MESSAGEDIR 107,5281
LMOD_MF 108,5335
MAN_PAGES_CAT 109,5395
MAN_PAGES 110,5453
LMOD_MF_SOURCE 111,5511
SETTARG_SOURCE 112,5585
DATE_cmd 113,5673
UNAME_S 114,5734
VersionDate 115,5781
MODE 116,5834
SED 119,5896
SED 121,5920
MODE_X 124,5945
MODE_R 125,6011
LUA_INCLUDE 129,6104
LUA_INCLUDE 131,6127
GIT_VERSION 134,6191
GIT_BRANCH 138,6384
DIRLIST 142,6605
STANDALONE_PRGM 148,7091
STANDALONE_PRGM 156,7745
SHELL_INIT 157,7821
SHELL_INIT 160,8058
LMODRC_INIT 161,8134
ZSH_FUNCS 164,8209
ZSH_FUNCS 165,8250
FISH_FUNCS 167,8330
FISH_FUNCS 168,8374
KSH_FUNCS 170,8456
KSH_FUNCS 171,8521
STARTUP 173,8607
STARTUP 174,8686
MSGFNs 176,8760
MAIN_DIR 178,8829
CONTRIB_DIRS 181,8973
CONTRIB 194,9715
lua_code 195,9796
lua_code 196,9881
CurDATE 197,9995
ComputeHashSum 199,10062
spiderCacheSupportCMD 200,10127
export L_PATH export L_PATH201,10211
export L_CPATH export L_CPATH202,10253
HAVE_LUA_TERM 204,10297
PKGS 206,10371
HAVE_LUAFILESYSTEM 208,10392
PKGS 210,10476
PKG_LFS 211,10498