-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTAGS.world
19309 lines (16696 loc) · 535 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
.luacheckrc,290
std 1,0
files[files7,149
files[files8,213
files[files9,279
files[files10,344
files[files11,416
files[files13,614
files[files14,676
files[files15,767
files[files16,842
files[files17,905
files[files19,1133
files[files20,1204
files[files21,1276
files[files24,1579
.travis.yml,109
- LUA=6,96
echo ">>>> ${dir}/out.txt"; diff -u ${dir}/out.txt ${dir}/t1/*/out.txt;txt51,1293
Hermes.db,18
ProjectData 3,52
INSTALL,759
Lmod and install lua-X.X.X.tar.gz file. It contains the lua command,13,371
following rpms;31,1013
$ luarocks install luaposix;44,1322
by lua. On our Centos system,47,1471
./?.lua;/usr/share/lua/5.1/?.lua;lua51,1602
./?.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;lua51,1602
./?.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;/usr/lib64/lua/5.1/?.lua;lua51,1602
./?.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;/usr/lib64/lua/5.1/?.lua;/usr/lib64/lua/5.1/?/init.lua;lua51,1602
./?.so;/usr/lib64/lua/5.1/?.so;so56,1817
./?.so;/usr/lib64/lua/5.1/?.so;/usr/lib64/lua/5.1/loadall.so;so56,1817
LUAROCKS_PREFIX=66,2149
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
Makefile.in,4697
srcdir 1,0
CC 2,38
PATH_TO_SRC 3,72
path_to_src 4,115
PATH_TO_SRC 6,195
TOOL_SRC 11,235
HAVE_LUA_JSON 12,298
TOOL_SRC 14,371
I18N_SRC 16,458
CURRENT_MK 18,527
PATH_TO_LUA 19,585
export IGNORE_DIRS export IGNORE_DIRS20,619
REDIRECT 21,726
LMOD_FULL_SETTARG_SUPPORT 22,766
USE_DOT_FILES 23,856
PREPEND_BLOCK 24,946
COLORIZE 25,1031
MODULEPATH_INIT 26,1116
LMOD_HIDDEN_ITALIC 27,1163
LMOD_OVERRIDE_LANG 28,1208
SITE_MSG_FILE 29,1258
SITE_NAME 30,1303
SYSHOST 31,1344
SYS_LD_LIB_PATH 32,1383
SYS_LD_PRELOAD 33,1430
SYS_LUA_PATH 34,1476
SYS_LUA_CPATH 35,1520
CASE_INDEPENDENT_SORTING 36,1565
ZSH_SITE_FUNCTIONS_DIRS 37,1621
SPIDER_CACHE_DESCRIPT_FN 38,1676
ANCIENT 39,1732
ALLOW_TCL_MFILES 40,1766
MPATH_AVAIL 41,1814
TMOD_PATH_RULE 42,1857
TMOD_FIND_FIRST 43,1903
CACHED_LOADS 44,1950
EXACT_MATCH 45,1994
DUPLICATE_PATHS 46,2037
DISABLE_NAME_AUTOSWAP 47,2084
SHORT_TIME 48,2137
PIN_VERSIONS 49,2174
AUTO_SWAP 50,2218
SPIDER_CACHE_DIRS 51,2253
LEGACY_ORDERING 52,2297
EXPORT_MODULE 53,2344
BASENAME 54,2389
PS 55,2429
EXPR 56,2463
PATH_TO_HASHSUM 57,2499
PATH_TO_LUAC 58,2541
PATH_TO_PAGER 59,2585
PATH_TO_TCLSH 60,2623
MODULEPATH_ROOT 61,2668
VERSION_SRC 62,2710
LUA_INCLUDE 63,2756
UPDATE_SYSTEM_FN 64,2794
GIT_BRANCH 65,2837
GIT_PROG 66,2873
version 67,2916
GIT_VERSION 68,3021
prefix 69,3178
package 70,3203
PKGV 71,3225
PKG 72,3271
LIBEXEC 73,3316
SHELLS 74,3373
TOOLS 75,3441
I18N 76,3508
SETTARG 77,3580
INIT 78,3649
MESSAGEDIR 79,3700
LMOD_MF 80,3765
MAN_PAGES 81,3831
LMOD_MF_SOURCE 82,3907
SETTARG_SOURCE 83,3981
DIRLIST 85,4070
STANDALONE_PRGM 90,4406
STANDALONE_PRGM 97,4965
SHELL_INIT 98,5041
SHELL_INIT 101,5251
LMODRC_INIT 102,5317
ZSH_FUNCS 105,5392
ZSH_FUNCS 106,5433
STARTUP 108,5513
STARTUP 109,5550
MSGFNs 111,5612
MAIN_DIR 113,5681
CONTRIB_DIRS 116,5813
CONTRIB 129,6555
lua_code 130,6636
VDATE 132,6774
ComputeHashSum 134,6820
spiderCacheSupportCMD 135,6880
export L_PATH export L_PATH136,6968
export L_CPATH export L_CPATH137,7010
HAVE_LUA_TERM 139,7054
LIB 140,7099
PKGS 142,7193
HAVE_LUAFILESYSTEM 144,7214
PKGS 146,7298
.PHONY:.PHONY150,7328
all:all152,7357
uninstall:uninstall155,7375
pre-install:pre-install159,7500
install:install163,7709
echo:echo168,7837
man_pages:man_pages174,7961
$(DIRLIST)$(DIRLIST177,8078
__installMe:__installMe180,8105
bareN=182,8190
fn=183,8269
ext=184,8348
[ "$$ext" [ "$$ext"237,12303
if [ "$$ext" if [ "$$ext"239,12463
mname=240,12543
generate_doc:generate_doc247,12943
shell_init:shell_init251,12967
lmodrc_init:lmodrc_init254,13057
messageFns:messageFns257,13149
i18n:i18n260,13238
startup:startup263,13317
other_tools:other_tools266,13401
spiderCacheSupport:spiderCacheSupport269,13515
src/computeHashSum:src/computeHashSum275,13825
lfs:lfs279,13950
$(MAKE) LUA_INC=$(MAKE) LUA_INC281,14023
SHARE=282,14098
pkgs:pkgs283,14158
$(MAKE) LUA_INC=$(MAKE) LUA_INC285,14189
SHARE=286,14252
zsh_tab_funcs:zsh_tab_funcs288,14313
for i in `echo "$(ZSH_SITE_FUNCTIONS_DIRS)" | tr ':for i in `echo "$(ZSH_SITE_FUNCTIONS_DIRS)" | tr '290,14409
makefile:makefile296,14707
config.status:config.status299,14776
dist:dist302,14819
_dist:_dist319,15698
_distMkDir:_distMkDir322,15829
_distContrib:_distContrib327,15878
_distSrc:_distSrc331,15952
_distVersion:_distVersion338,16200
_distPkgs:_distPkgs342,16318
_distSetup:_distSetup346,16379
_distSetupZsh:_distSetupZsh350,16471
_distMainDir:_distMainDir356,16549
_distMF:_distMF359,16589
_distTar:_distTar363,16638
ml_dist:ml_dist372,16968
_ml_dist:_ml_dist375,17007
test:test384,17406
tags:tags387,17444
build_tags:build_tags390,17481
busted:busted450,21096
luachk:luachk457,21403
libexec:libexec461,21569
Inst_Tools:Inst_Tools464,21655
Inst_Shells:Inst_Shells467,21741
Inst_Settarg:Inst_Settarg470,21840
Inst_Lmod_MF:Inst_Lmod_MF474,21937
clean:clean477,22033
clobber:clobber482,22214
distclean:distclean484,22230
world_update:world_update487,22280
echo "All files not checked in echo "All files not checked in490,22457
echo "configure is out of date echo "configure is out of date492,22620
gittag:gittag502,23324
echo "configure is out of date echo "configure is out of date508,23683
echo ' local s echo ' local s514,24170
echo ' if (s echo ' if (s515,24257
echo ' if (s echo ' if (s516,24344
echo ' local a echo ' local a521,24765
README.new,62
(7.6.3) Merged in PR #311: making settarg more EB,6,285
README.old,518
b) Thanks to Kenneth Hoste,6,70
b) Thanks to Kenneth Hoste, a parameterized script,6,70
update_lmod_system_cache_files,7,132
createSystemCacheFile.sh sh9,265
t 116,4871
t 121,5028
f) New option,130,5359
f) New option, --show_hidden,show_hidden130,5359
prepend-path --delim ";" LUA_PATH "/a/lua/share/5.1/?.lua;lua847,33261
prepend_path("LUA_PATH", "/a/lua/share/5.1/?.lua;lua852,33477
append_path( "LUA_CPATH", "/a/lua/share/5.1/?.so"so853,33558
README_lua_modulefiles.txt,19
whatis(52,1780
build.rtm,373
PKG_VERSION=3,35
make_install(6,178
runMe(18,485
BUILD_TYPE=49,971
BUILD_TYPE=51,1018
first=57,1137
SYSHOST=58,1157
SUDO=59,1178
MY_ARCH=62,1225
MAKE_EXTRA=74,1449
EXTRA=88,1841
base=93,1958
base=98,2141
UPDATE_FN=103,2271
ADMIN_DIR=111,2573
ADMIN_DIR=118,2842
BASE_DIR=125,3059
EXTRA_CMD=132,3171
MAKE=140,3321
config.ld,41
project 1,0
topics 8,194
format=9,288
configure.ac,84
function main(543,17606
function string.string581,18300
function main(594,18685
contrib/Bright/SitePackage.lua,59
function load_hook(44,1926
function report_loads(72,3055
contrib/RPMs/rpm-dir.inc,27
Buildroot:Buildroot7,217
contrib/RPMs/stampede.lmod.spec,197
myhost=49,941
first=51,997
SYSHOST=52,1017
CACHE_DIR=55,1076
luaPath=69,1536
./configure --prefix=prefix77,1666
./configure --prefix=%{APPS} $CACHE_DIR --with-settarg=settarg77,1666
contrib/SitePackage/SitePackage.lua,134
function checkRestrictedGroup(9,204
function logUsage(29,771
function prependModulePath(47,1327
function appendModulePath(53,1496
contrib/TACC/SitePackage.lua,221
local function load_hook(56,2281
local function writeCache_hook(103,3986
local function parse_updateFn_hook(112,4161
function avail_hook(150,5152
local function report_loads(169,5563
function safe_tonumber(180,5782
contrib/TACC/buildSpiderCache.sh,229
force=19,583
force=21,620
readTS(45,1141
getModifyTime(55,1355
buildNewDB(68,1584
LmodVersion=119,2783
export LMOD_DIR=121,2927
RmapDir=127,2983
MPATH=142,3428
XSEDE_dir=153,3852
timeStamp=157,3950
contrib/TACC/checkModuleSyntax,68
usage(6,87
runMe(11,121
QUIET=43,645
export MODULEPATH=62,830
contrib/TACC/rpm,28
writeTS(12,241
arg=34,796
contrib/TACC/updateLocalCache.sh,118
LMOD_DIR=14,445
first=22,659
SYSHOST=23,679
CacheDir=27,736
getModifyTime(49,1365
buildNewDB(62,1594
a=90,2072
contrib/bash_patch/bash42_config.patch,185
#define DEFAULT_PATH_VALUE 6,206
#define STANDARD_UTILS_PATH 14,509
#define KSH_COMPATIBLE_SELECT21,706
#define DEFAULT_HOSTS_FILE 48,1859
#define DEBUGGER_START_FILE 55,2102
contrib/cache_check/cache_check.lua,109
function check_module(48,2120
function scan_dir(61,2398
function argparse(76,2790
function usage(98,3217
contrib/hook/SitePackage.lua,28
function load_hook(43,1901
contrib/hostTypeCacheBuilder/buildSystemCache.sh,77
LMOD_DIR=15,446
first=23,690
SYSHOST=24,710
CacheDir=28,767
ans=58,1388
contrib/hostTypeCacheBuilder/may_i_build_cache,76
function masterTbl(21,455
function main(27,505
function options(139,3670
contrib/lmod_beta.csh,15
foreach i 2,1
contrib/lmod_beta.sh,45
MCLAY=1,0
PKG_DIR=5,109
module 21,435
contrib/more_hooks/SitePackage.lua,294
local function logmsg(17,443
local function load_hook(34,1011
local function startup_hook(55,1709
local function msg_hook(92,2839
local function errwarnmsg_hook(110,3266
local function site_name_hook(162,5103
local function packagebasename(170,5270
local function visible_hook(177,5422
contrib/settarg/Settarg.txt,269
ModuleTbl 114,4185
TargetList 123,4523
SettargDirTemplate 125,4584
NoFamilyList 127,4665
TitleTbl 129,4708
TargPathLoc 143,5089
In other words,151,5345
opt(243,9339
TargetList 267,10285
Normally in any directory your TARG will be the default,269,10361
contrib/settarg/make_example/Makefile,476
CC 5,164
CC 9,221
override O_DIR override O_DIR19,490
CF 27,722
CF 31,778
DEPENDENCY_FLAG 37,800
EXEC 38,825
SRC 39,851
OBJS 40,878
override CFLAGS override CFLAGS41,927
all:all43,965
_all:_all46,994
$(O_DIR)$(O_DIR48,1010
$(EXEC)$(EXEC51,1040
neat:neat54,1078
clean:clean57,1095
clobber:clobber59,1122
$(O_DIR)%.o $(O_DIR)%.o69,1268
$(O_DIR)%.d:$(O_DIR)%.d72,1313
| sed -e '\''s;\($*\)\.o[ | sed -e '\''s;\($*\)\.o[74,1408
contrib/settarg/make_example/Makefile.simple,12
ifeq 4,129
contrib/settarg/make_example/README.txt,70
the first target in the Makefile. It depends on the $(12,544
contrib/settarg/make_example/hello.c,17
void hello(3,20
contrib/settarg/make_example/hello.h,21
#define HELLO_H2,16
contrib/settarg/make_example/main.c,15
int main(2,19
contrib/tracking_module_usage/BeautifulTbl.py,117
class BeautifulTbl(6,88
def __init__(7,116
def __build_tbl(14,461
def build_tbl(57,1570
def main(140,3715
contrib/tracking_module_usage/LMODdb.py,371
def __LINE__(11,365
def __FILE__(17,485
def convertToInt(22,632
class LMODdb(34,867
def __init__(44,1098
def __readFromUser(53,1343
def __readConfig(61,1628
def connect(76,2231
def db(111,3156
def dump_db(116,3224
def data_to_db(181,5176
def counts(296,8688
def numtimes(338,9913
def usernames(380,11116
def modules_used_by(425,12390
contrib/tracking_module_usage/README,93
Once you have a module system,4,21
-- t.fn: The file name:name56,2081
contrib/tracking_module_usage/SitePackage.lua,59
function load_hook(47,2050
function report_loads(75,3114
contrib/tracking_module_usage/add_stored_proc.py,188
def dbConfigFn(13,265
def strDate2dA(20,394
def add_month(25,490
def substract_month(33,585
class CmdLineOptions(42,689
def __init__(45,757
def execute(49,812
def main(61,1358
contrib/tracking_module_usage/analyzeLmodDB,153
import os,4,77
import os, sys,4,77
import os, sys, re,4,77
import os, sys, re, time,4,77
import os, sys, re, time, datetime,4,77
parser 17,406
contrib/tracking_module_usage/conf_create,204
import os,28,1148
import os, sys,28,1148
import os, sys, re,28,1148
import os, sys, re, ConfigParser,28,1148
import os, sys, re, ConfigParser, getpass,28,1148
dirNm,30,1199
dirNm, execName 30,1199
contrib/tracking_module_usage/createDB.py,188
def dbConfigFn(13,265
def strDate2dA(20,394
def add_month(25,490
def substract_month(33,585
class CmdLineOptions(42,689
def __init__(45,757
def execute(49,812
def main(61,1358
contrib/tracking_module_usage/csv_store_module_data,219
import os,4,77
import os, sys,4,77
import os, sys, re,4,77
import os, sys, re, time,4,77
import os, sys, re, time, csv,4,77
import os, sys, re, time, csv, datetime,4,77
parser 18,411
dataT[dataT55,1536
contrib/tracking_module_usage/dump_db,153
import os,4,77
import os, sys,4,77
import os, sys, re,4,77
import os, sys, re, time,4,77
import os, sys, re, time, datetime,4,77
parser 17,406
contrib/tracking_module_usage/progressBar.py,171
def getTerminalSize(27,1154
def ioctl_GWINSZ(34,1354
class ProgressBar(68,2090
def __init__(71,2157
def update(109,3287
def fini(134,3926
def main(140,4052
contrib/tracking_module_usage/store_json_module_data,112
import os,4,77
import os, sys,4,77
import os, sys, re,4,77
import os, sys, re, time,4,77
def syshost(7,135
contrib/tracking_module_usage/store_module_data,81
import os,4,77
import os, sys,4,77
import os, sys, re,4,77
def syshost(7,129
contrib/tracking_module_usage/write_usage_to_influx,51
function saveRecords(11,195
function main(23,447
cookbook/Generic_Module_files.txt,91
function is 52,2199
function loadPkgDefaults(124,5176
function setPkgInfo(211,7750
cookbook/inherit.txt,104
I now think I understand the question. Suppose a user has their own version of a parallel library 5,4
cookbook/settarg.org,110
with no prompt command,9,184
with no prompt command, no changing the title bar,9,184
** Note: Could,12,273
docs/Makefile,1466
SPHINXOPTS 5,92
SPHINXBUILD 6,108
PAPER 7,137
BUILDDIR 8,153
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http:$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http12,281
PAPEROPT_a4 16,654
PAPEROPT_letter 17,695
ALLSPHINXOPTS 18,740
I18NSPHINXOPTS 20,901
.PHONY:.PHONY22,962
html:html24,1114
help:help29,1251
clean:clean56,2778
dirhtml:dirhtml60,2809
singlehtml:singlehtml65,2958
pickle:pickle70,3117
json:json75,3258
htmlhelp:htmlhelp80,3391
qthelp:qthelp86,3598
applehelp:applehelp95,3971
devhelp:devhelp103,4283
epub:epub112,4563
latex:latex117,4698
latexpdf:latexpdf124,4976
latexpdfja:latexpdfja130,5202
text:text136,5444
man:man141,5581
texinfo:texinfo146,5716
info:info153,5998
gettext:gettext159,6225
changes:changes164,6379
linkcheck:linkcheck169,6514
doctest:doctest175,6723
coverage:coverage180,6918
xml:xml185,7117
pseudoxml:pseudoxml190,7249
docs/source/010_user.rst,133
second load,141,3618
family(155,4135
export BASHRC_READ=304,9916
If your site has a shared home file system,383,12306
docs/source/015_writing_modules.rst,31
function built-built157,5776
docs/source/030_installing.rst,872
Installing Lua and Lmod3,28
$ cd /opt/apps/lua;lua69,3056
$ mkdir /usr/local/bin;bin70,3096
The last command is optional,72,3172
``lua`` command in your path. Also obviously,73,3239
with the actual version 74,3307
If you have installed lua but still need luafilesystem and luaposix,108,4070
by lua. On our Centos system,116,4480
./?.lua;/usr/share/lua/5.1/?.lua;lua120,4596
./?.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;lua120,4596
./?.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;/usr/lib64/lua/5.1/?.lua;lua120,4596
./?.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;/usr/lib64/lua/5.1/?.lua;/usr/lib64/lua/5.1/?/init.lua;lua120,4596
./?.so;/usr/lib64/lua/5.1/?.so;so125,4796
./?.so;/usr/lib64/lua/5.1/?.so;/usr/lib64/lua/5.1/loadall.so;so125,4796
LUAROCKS_PREFIX=130,4973
docs/source/040_FAQ.rst,23
function in 12,381
docs/source/045_transition.rst,114
export _INIT_LMOD=145,4657
clearMT # clear the stored module table 149,4917
docs/source/050_lua_modulefiles.rst,28
function uses 120,4807
docs/source/055_module_names.rst,65
Module names and module naming conventions1,0
fullName 43,1450
docs/source/060_locating.rst,139
How Lmod Picks which Modulefiles to Load3,23
$ module purge; module load intel boost;281,9955
$ module swap intel gcc;303,10528
docs/source/070_standard_modules.rst,266
export __Init_Default_Modules=18,724
LMOD_SYSTEM_DEFAULT_MODULES=21,823
export __Init_Default_Modules=77,3058
Lmod,88,3310
In general,91,3377
*set-group-id*id93,3505
export __Init_Default_Modules=102,3928
set of modules 110,4115
docs/source/073_tmod_to_lmod.rst,54
Converting from TCL/C Environment Modules to Lmod1,0
docs/source/075_bug_reporting.rst,33
How to report a bug in Lmod3,26
docs/source/080_hierarchy.rst,44
How to use a Software Module hierarchy3,31
docs/source/095_tcl2lua.rst,27
function call.call25,848
docs/source/098_dependent_modules.rst,513
Dependent Modules3,30
$ module purge; module load X;94,3023
$ module purge; module load X; module unload X 94,3023
$ module purge; module load A;95,3100
$ module purge; module load A; module load X;95,3100
$ module purge; module load A; module load X; module unload X 95,3100
$ module purge; module load X Y;101,3319
$ module purge; module load X Y; module unload X 101,3319
$ module purge; module load X Y;102,3386
$ module purge; module load X Y; module unload X Y 102,3386
docs/source/100_generic_modules.rst,53
function parses 132,6324
function returns 144,6952
docs/source/110_lmod_mpi_parallel_filesystem.rst,103
The Interaction between Modules,1,0
The Interaction between Modules, MPI and Parallel Filesystems1,0
docs/source/120_shared_home_directories.rst,38
Lmod on Shared Home File Systems4,31
docs/source/125_personal_spider_cache.rst,23
User Spider Cache3,30
docs/source/130_spider_cache.rst,56
System Spider Cache3,32
$ export LMOD_RC=130,5039
docs/source/135_module_spider.rst,37
Using the module spider command3,30
docs/source/136_spider.rst,20
The spider tool1,0
docs/source/140_deprecating_modules.rst,24
Deprecating Modules1,0
docs/source/145_properties.rst,528
Module Properties3,19
The possible color values are: `black`black133,5365
The possible color values are: `black`, `red`red133,5365
The possible color values are: `black`, `red`, `green`green133,5365
The possible color values are: `black`, `red`, `green`, `yellow`yellow133,5365
`blue`blue134,5431
`blue`, `magenta`magenta134,5431
`blue`, `magenta`, `cyan`cyan134,5431
`blue`, `magenta`, `cyan`, and `white`. In practice,134,5431
backgrounds,136,5564
backgrounds, sites may wish to avoid `black`black136,5564
docs/source/150_kitchen_sink_module.rst,29
Kitchen Sink Modulefiles1,0
docs/source/160_debugging_modulefiles.rst,27
Debugging Modulefiles3,34
docs/source/170_hooks.rst,39
function prependModulePath(48,1835
docs/source/185_localization.rst,52
Lmod Localization3,19
Then configure Lmod 45,1671
docs/source/190_Integration_of_EasyBuild_and_Lmod.rst,38
Integration of EasyBuild and Lmod1,0
docs/source/200_avail_custom.rst,34
function avail_hook(57,1607
docs/source/210_load_storms.rst,89
Load Storms: Long load times or Fails to Load1,0
MasterControl:load(load38,1012
docs/source/220_tracing.rst,39
Tracing Lmod3,14
} Time 46,1532
docs/source/230_lmod_env_vars.rst,163
Controlling Lmod behavior through Environment Variables3,21
is lowercased first,25,992
is lowercased first, so NO,25,992
is lowercased first, so NO, No,25,992
docs/source/240_sticky_modules.rst,20
Sticky Modules3,27
docs/source/250_site_package.rst,39
function prependModulePath(69,2483
docs/source/260_sh_to_modulefile.rst,45
Converting shell scripts to modulefiles3,29
docs/source/index.rst,42
Lmod: A New Environment Module System2,1
init/R.in,23
args <- paste(6,130
init/bash.in,165
[[ ${-/x} != $- ]] && XTRACE_STATE=10,301
LMOD_VERSION=62,2167
settarg 66,2263
ml(82,2743
clearMT(97,3087
xSetTitleLmod(102,3139
# # define the 128,3873
init/cmake.in,288
function(73,3533
else(89,4037
endif(91,4085
file(113,4618
endif(119,4809
endif(122,4913
list(136,5281
list(138,5349
endfunction(142,5458
endfunction(147,5611
foreach(160,5939
list(170,6271
else(172,6365
endif(174,6413
endfunction(178,6486
init/csh.in,19
set prefix 10,340
init/cshrc.in,19
set MY_NAME=9,249
init/env_modules_python.py.in,33
import os,2,17
def module(3,35
init/fish.in,94
function module7,135
function module11,209
function ml16,297
function clearMT20,352
init/lisp.in,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,2295
;; cmd-buffer should currently contain the pathname of file to run56,2354
;; Note: use eval-buffer instead of load-file to avoid stomping57,2431
;; and run it carefully. If an error is thrown, catch it and64,2839
;; propagate the fact upwards as a nil, but be sure to still65,2917
init/lmod_bash_completions,327
_module_avail(1,0
_module_dir(8,228
_module_spider(66,1923
_module_loaded_modules(70,2014
_module_savelist(74,2146
_module_disable(78,2241
_module_loaded_modules_negated(82,2335
_module_mcc(86,2484
_module_describe(90,2574
_module_not_yet_loaded(94,2669
_module_long_arg_list(98,2765
_module(118,3302
_ml(182,5038
init/profile.in,294
export USER=12,326
export LMOD_sys=13,387
export MODULEPATH=20,678
export MANPATH=34,1185
PS_CMD=42,1361
PS_CMD=44,1422
EXPR_CMD=50,1551
EXPR_CMD=52,1618
BASENAME_CMD=58,1759
BASENAME_CMD=60,1838
init/sh.in,42
LMOD_PKG=3,13
clearMT(18,231
ml(30,658
init/zsh/_ml,396
_ml(4,31
_ml_loaded_modules_negated(146,4450
_ml_loaded_modules(151,4611
_ml_available_modules(159,4786
_ml_spider_list(167,5009
_ml_unload(173,5107
_ml_restore(179,5183
_ml_mcc(185,5316
_ml_describe(191,5445
_ml_disable(197,5579
_ml_help(203,5712
_ml_swap(209,5792
_ml_show(221,6035
_ml_load(228,6146
_ml_use(235,6256
_ml_unuse(243,6432
_ml_whatis(249,6520
_ml_spider(255,6602
init/zsh/_module,440
_module(4,35
_module_command(23,1182
_module_loaded_modules(80,3030
_module_available_modules(86,3206
_module_spider_list(94,3432
_module_restore(99,3533
_module_disable(105,3670
_ml_mcc(111,3807
_ml_describe(117,3936
_module_help(124,4101
_module_load(131,4224
_module_spider(138,4345
_module_unload(145,4459
_module_swap(152,4581
_module_show(166,4874
_module_use(176,5050
_module_unuse(184,5230
_module_whatis(190,5322
my_docs/03-internal-working.md,56
function setenv(141,5674
function which 158,6457
my_docs/12/sc12_bof/Makefile,102
TALKS 1,0
TEX_SUFS 2,25
%.pdf:%.pdf4,91
all:all7,121
clean:clean9,136
clobber:clobber13,219
my_docs/12/sc12_bof/sc12_bof.tex,438
\newcommand{\bfnabla}\bfnabla19,475
\newcommand{\laplacian}\laplacian20,523
\newcommand{\grad}\grad21,565
\newcommand{\tgrad}\tgrad22,600
\newcommand{\dvg}\dvg23,638
\newcommand{\curl}\curl24,678
\newcommand{\lap}\lap25,720
\section{Introduction}Introduction33,815
\section{Recent Features}Recent59,1499
\section{Topics to Discuss}Topics134,4175
\section{Conclusion}Conclusion177,5584
\section{Extra}Extra188,5920
my_docs/13/easybuild_bof_sc13/Makefile,103
TALKS 1,0
TEX_SUFS 2,35
%.pdf:%.pdf4,101
all:all7,131
clean:clean9,146
clobber:clobber13,229
my_docs/13/easybuild_bof_sc13/easybuild_bof_sc13.tex,238
\newcommand{\bfnabla}\bfnabla19,485
\newcommand{\laplacian}\laplacian20,533
\newcommand{\grad}\grad21,575
\newcommand{\tgrad}\tgrad22,610
\newcommand{\dvg}\dvg23,648
\newcommand{\curl}\curl24,688
\newcommand{\lap}\lap25,730
my_docs/13/sc13_bof/Makefile,102
TALKS 1,0
TEX_SUFS 2,25
%.pdf:%.pdf4,91
all:all7,121
clean:clean9,136
clobber:clobber13,219
my_docs/13/sc13_bof/sc13_bof.tex,411
\newcommand{\bfnabla}\bfnabla19,460
\newcommand{\laplacian}\laplacian20,508
\newcommand{\grad}\grad21,550
\newcommand{\tgrad}\tgrad22,585
\newcommand{\dvg}\dvg23,623
\newcommand{\curl}\curl24,663
\newcommand{\lap}\lap25,705
\section{Introduction}Introduction33,800
\section{Recent Developments}Recent62,1585
\section{Topics to Discuss}Topics145,4592
\section{Conclusion}Conclusion172,5405
my_docs/14/sc14_bof/Makefile,102
TALKS 1,0
TEX_SUFS 2,25
%.pdf:%.pdf4,91
all:all7,121
clean:clean9,136
clobber:clobber13,219
my_docs/14/sc14_bof/sc14_bof.tex,402
\newcommand{\bfnabla}\bfnabla19,485
\newcommand{\laplacian}\laplacian20,533
\newcommand{\grad}\grad21,575
\newcommand{\tgrad}\tgrad22,610
\newcommand{\dvg}\dvg23,648
\newcommand{\curl}\curl24,688
\newcommand{\lap}\lap25,730
\section{Introduction}Introduction33,825
\section{A Transition Strategy}A87,2566
\section{A Site Story}A137,4266
\section{What's new in Lmod}What's146,4458
my_docs/14/sea14/talk/Makefile,102
TALKS 1,0
TEX_SUFS 2,21
%.pdf:%.pdf4,87
all:all7,117
clean:clean9,132
clobber:clobber13,215
my_docs/14/sea14/talk/talk.tex,1311
\newcommand{\bfnabla}\bfnabla19,450
\newcommand{\laplacian}\laplacian20,498
\newcommand{\grad}\grad21,540
\newcommand{\tgrad}\tgrad22,575
\newcommand{\dvg}\dvg23,613
\newcommand{\curl}\curl24,653
\newcommand{\lap}\lap25,695
\section{Introduction}Introduction33,790
\section{Software Hierarchy}Software264,8457
\section{Lmod}Lmod428,14331
\subsection{Searching for Modules}Searching591,19787
\label{sec:search}sec:search592,19822
\subsection{Installing Lmod}Installing707,23343
\label{sec:installing}sec:installing708,23372
\subsection{Deploying Lmod}Deploying898,29594
\label{sec:deploying_lmod}sec:deploying_lmod899,29622
\subsection{HPC issues}HPC968,31150
\section{User Inspired Features to Lmod}User1033,33467
\label{sec:inspired}sec:inspired1034,33508
\subsection{Version Sorting}Version1036,33530
\label{sec:sorting}sec:sorting1037,33559
\subsection{New Lmod Commands}New1061,34284
\label{sec:cmds}sec:cmds1062,34315
\subsection{SitePackage.lua}SitePackage.lua1193,37840
\label{sec:sitePackage}sec:sitePackage1194,37869
\subsection{Settarg}Settarg1223,38696
\label{sec:sitePackage}sec:sitePackage1224,38717
\subsection{Spider Cache}Spider1281,40338
\label{sec:cache}sec:cache1282,40364
\section{Lessons learned and Conclusions}Lessons1387,43760