-
Notifications
You must be signed in to change notification settings - Fork 0
/
TAGS.world
23526 lines (19764 loc) · 650 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
pkgs/tcl2lua/tcl2lua.c,258
#define MYNAME 8,134
#define MYVERSION 9,166
static char* resultStr 11,204
static int rlen 12,235
#define TclNewLiteralStringObj(18,400
int setResultsObjCmd(21,530
int Tcl_AppInit(50,1170
static int runTCLprog(58,1397
int luaopen_tcl2lua(177,4241
pkgs/tcl2lua/Makefile,330
SONAME 1,0
SONAMEV 2,23
LIBRARY 3,47
SRC 4,74
OBJ 5,96
OS 6,137
LIB_OPTION 10,189
LIB_OPTION 12,257
override CFLAGS override CFLAGS14,321
all:all16,405
$(SONAMEV)$(SONAMEV18,444
$(SONAME)$(SONAME21,478
$(LIBRARY)$(LIBRARY24,511
install:install27,618
clean:clean33,788
neat:neat35,839
echo:echo38,860
pkgs/luafilesystem/lfs.h,220
#define chdir(9,188
#define chdir_error 10,210
#define chdir_error 12,278
#define chdir(16,336
#define getcwd(17,365
#define rmdir(18,402
#define LFS_EXPORT 19,431
#define fileno(21,488
#define LFS_EXPORT24,532
pkgs/luafilesystem/lfs.def,27
LIBRARY 1,0
VERSION 2,17
pkgs/luafilesystem/lfs.c,3492
#define _FILE_OFFSET_BITS 26,674
#define _LARGE_FILES 28,743
#define _WIN32_WINNT 34,821
#define _LARGEFILE64_SOURCE38,890
#define LFS_MAXPATHLEN 64,1315
#define LFS_MAXPATHLEN 76,1528
#define LFS_MAXPATHLEN 79,1626
#define LFS_VERSION 90,1758
#define LFS_LIBNAME 91,1786
#define luaL_optlong 96,1882
#define new_lib(102,1962
#define new_lib(104,2010
#define strerror(109,2165
#define DIR_METATABLE 112,2235
typedef struct dir_data 113,2279
int closed;114,2305
intptr_t hFile;116,2333
char pattern[pattern117,2351
DIR *dir;dir119,2387
} dir_data;121,2406
#define LOCK_METATABLE 123,2419
#define lfs_setmode(128,2495
#define STAT_STRUCT 129,2554
#define lfs_setmode(131,2595
#define STAT_STRUCT 132,2655
#define _S_IFLNK 136,2716
#define S_ISDIR(140,2763
#define S_ISREG(143,2825
#define S_ISLNK(146,2887
#define S_ISSOCK(149,2950
#define S_ISFIFO(152,3002
#define S_ISCHR(155,3053
#define S_ISBLK(158,3115
#define STAT_FUNC 161,3150
#define LSTAT_FUNC 162,3177
#define _O_TEXT 166,3220
#define _O_BINARY 167,3252
#define lfs_setmode(168,3284
#define STAT_STRUCT 169,3340
#define STAT_FUNC 170,3372
#define LSTAT_FUNC 171,3395
#define lfs_mkdir 176,3443
#define lfs_mkdir(178,3474
int lfs_win32_pusherror(184,3622
#define TICKS_PER_SECOND 195,3869
#define EPOCH_DIFFERENCE 196,3903
time_t windowsToUnixTime(197,3942
int lfs_win32_lstat(205,4149
static int pusherror(234,4940
static int pushresult(245,5182
static int change_dir(259,5421
static int get_dir(278,5883
static FILE *check_file(check_file318,6922
static int _file_lock(343,7500
typedef struct lfs_Lock 413,9294
HANDLE fd;414,9320
} lfs_Lock;415,9333
static int lfs_lock_dir(416,9345
static int lfs_unlock_dir(445,10113
typedef struct lfs_Lock 455,10357
char *ln;ln456,10383
} lfs_Lock;457,10395
static int lfs_lock_dir(458,10407
static int lfs_unlock_dir(486,11065
static int lfs_g_setmode(498,11286
static int lfs_f_setmode(520,11846
static int file_lock(532,12149
static int file_unlock(555,12712
static int make_link(577,13222
static int make_dir(619,14343
static int remove_dir(630,14535
static int dir_iter(640,14694
static int dir_close(688,15786
static int dir_iter_factory(708,16093
static int dir_create_meta(741,16803
static int lock_create_meta(768,17333
static const char *mode2string(mode2string789,17742
static int file_utime(820,18456
static void push_st_mode(838,18871
static void push_st_dev(844,19015
static void push_st_ino(850,19150
static void push_st_nlink(856,19303
static void push_st_uid(862,19444
static void push_st_gid(868,19582
static void push_st_rdev(874,19738
static void push_st_atime(880,19880
static void push_st_mtime(886,20035
static void push_st_ctime(892,20191
static void push_st_size(898,20335
static void push_st_blocks(905,20498
static void push_st_blksize(911,20658
static const char *perm2string(perm2string922,20872
static const char *perm2string(perm2string946,21312
static void push_st_perm(975,21880
typedef void (*_push_function)_push_function980,21994
struct _stat_members 982,22062
const char *name;name983,22085
_push_function push;984,22105
struct _stat_members members[members987,22132
static int _file_info_(1010,22675
static int file_info(1054,23820
static int push_link_target(1066,24133
static int link_info(1121,25508
static void set_info(1142,25987
static const struct luaL_Reg fslib[fslib1156,26482
LFS_EXPORT int luaopen_lfs(1173,26923
pkgs/luafilesystem/Makefile,359
T 1,0
SONAME 2,16
SONAMEV 3,36
LIBRARY 4,60
SRC 5,87
OBJ 6,106
OS 7,147
LIB_OPTION 10,198
LIB_OPTION 12,266
override CFLAGS override CFLAGS15,331
all:all18,380
$(SONAMEV)$(SONAMEV20,419
$(SONAME)$(SONAME23,453
$(LIBRARY)$(LIBRARY26,486
install:install29,573
$(LIB)$(LIB32,629
clean:clean35,655
neat:neat37,706
echo:echo40,727
pkgs/Makefile,39
install:install1,0
clean:clean4,36
pkgs/term/core.c,43
lua_isatty(7,90
luaopen_term_core(16,250
pkgs/term/Makefile,432
SONAME 1,0
SONAMEV 2,20
LIBRARY 3,44
SRC 4,71
OBJ 5,90
override CFLAGS override CFLAGS7,132
override CFLAGS override CFLAGS10,189
OS 13,239
LIB_OPTION=15,283
LIB_OPTION=17,349
all:all20,412
$(SONAMEV)$(SONAMEV22,451
$(SONAME)$(SONAME25,485
$(LIBRARY)$(LIBRARY28,518
install:install31,605
$(LIB)/term $(SHARE)/term:$(LIB)/term $(SHARE)/term35,732
clean:clean39,774
neat:neat41,825
echo:echo44,846
pkgs/term/term/colors.lua,273
function colormt:__tostring(30,1272
function colormt:__tostring(__tostring30,1272
function colormt:__concat(34,1329
function colormt:__concat(__concat34,1329
function colormt:__call(38,1412
function colormt:__call(__call38,1412
local function l_makecolor(44,1507
contrib/cache_check/cache_check.lua,109
function check_module(48,2120
function scan_dir(61,2397
function argparse(76,2789
function usage(98,3216
contrib/Personal/SitePackage.lua,44
local function l_colorize_fullName(39,1745
contrib/lmod_beta.sh,45
MCLAY=1,0
PKG_DIR=5,109
module 21,435
contrib/hook/SitePackage.lua,28
function load_hook(43,1901
contrib/more_hooks/SitePackage.lua,336
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
local function get_avail_memory(199,6135
contrib/SitePackage/SitePackage.lua,134
function checkRestrictedGroup(9,204
function logUsage(29,771
function prependModulePath(47,1327
function appendModulePath(53,1496
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/TACC/checkModuleSyntax,68
usage(6,87
runMe(11,121
QUIET=43,645
export MODULEPATH=62,830
contrib/TACC/buildSpiderCache.sh,229
force=19,583
force=21,620
readTS(45,1141
getModifyTime(55,1355
buildNewDB(68,1584
LmodVersion=119,2784
export LMOD_DIR=121,2928
RmapDir=127,2984
MPATH=142,3429
XSEDE_dir=153,3853
timeStamp=157,3951
contrib/TACC/CollectModuleDate4Web.sh,189
MCLAY=4,36
LMOD_DIR=7,163
lua_version=12,212
LUATOOLS=16,407
export LUA_PATH=21,456
first=30,727
SYSHOST=31,747
BASE_MODULE_PATH=35,804
BASE_MODULE_PATH=39,926
contrib/TACC/SitePackage.lua,238
local function l_load_hook(57,2300
local function l_parse_updateFn_hook(90,3584
local function l_avail_hook(128,4577
local function l_report_loads(146,4995
function safe_tonumber(154,5192
local function l_colorize_fullName(161,5327
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/TACC/rpm,28
writeTS(12,241
arg=34,797
contrib/hostTypeCacheBuilder/may_i_build_cache,76
function masterTbl(21,455
function main(27,505
function options(139,3670
contrib/hostTypeCacheBuilder/buildSystemCache.sh,77
LMOD_DIR=15,446
first=23,690
SYSHOST=24,710
CacheDir=28,767
ans=58,1388
contrib/lmod_beta.csh,15
foreach i 2,1
contrib/Bright/SitePackage.lua,59
function load_hook(44,1926
function report_loads(72,3055
contrib/tracking_module_usage/progressBar.py,171
def getTerminalSize(26,1132
def ioctl_GWINSZ(33,1332
class ProgressBar(67,2068
def __init__(70,2135
def update(108,3265
def fini(133,3904
def main(139,4030
contrib/tracking_module_usage/SitePackage.lua,59
function load_hook(47,2050
function report_loads(77,3139
contrib/tracking_module_usage/csv_store_module_data,134
class CmdLineOptions(9,198
def __init__(12,266
def execute(16,321
def dbConfigFn(25,861
def convert(32,990
def main(37,1135
contrib/tracking_module_usage/LMODdb.py,372
def __LINE__(16,436
def __FILE__(22,556
def convertToInt(27,703
class LMODdb(39,938
def __init__(49,1169
def __readFromUser(58,1414
def __readConfig(66,1699
def connect(81,2322
def db(116,3248
def dump_db(121,3316
def data_to_db(186,5265
def counts(315,9459
def numtimes(376,11289
def usernames(418,12492
def modules_used_by(463,13766
contrib/tracking_module_usage/store_json_module_data,36
def syshost(7,135
def main(14,248
contrib/tracking_module_usage/conf_create,226
class CmdLineOptions(41,1460
def __init__(42,1490
def execute(45,1522
class CreateConf(55,1979
def __init__(56,2005
def __readFromUser(62,2162
def __writeConfig(68,2489
def create(82,2887
def main(89,2962
contrib/tracking_module_usage/analyzeLmodDB,163
import os,19,645
import os, sys,19,645
import os, sys, re,19,645
import os, sys, re, time,19,645
import os, sys, re, time, datetime,19,645
parser 32,974
contrib/tracking_module_usage/createDB.py,117
def dbConfigFn(27,832
class CmdLineOptions(34,961
def __init__(37,1029
def execute(41,1084
def main(51,1595
contrib/tracking_module_usage/store_module_data,120
import os,19,645
import os, sys,19,645
import os, sys, re,19,645
import os, sys, re, time,19,645
parser 31,922
contrib/tracking_module_usage/BeautifulTbl.py,116
class BeautifulTbl(5,66
def __init__(6,94
def __build_tbl(13,439
def build_tbl(56,1546
def main(139,3689
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/write_usage_to_influx,51
function saveRecords(11,195
function main(23,447
contrib/tracking_module_usage/dump_db,114
class CmdLineOptions(8,193
def __init__(11,261
def execute(15,316
def dbConfigFn(26,887
def main(33,1016
contrib/RPMs/lmod-6.0.24.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/RPMs/rpm-dir.inc,27
Buildroot:Buildroot7,217
contrib/RPMs/lmod-7.7.3.spec,215
myhost=55,1112
first=57,1168
SYSHOST=58,1188
CACHE_DIR=60,1210
EXTRA=67,1385
luaPath=76,1669
./configure --prefix=prefix84,1799
./configure --prefix=%{APPS} $CACHE_DIR --with-settarg=settarg84,1799
contrib/settarg/make_example/hello.c,17
void hello(3,20
contrib/settarg/make_example/main.c,15
int main(2,19
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.h,21
#define HELLO_H2,16
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
build.rtm,398
PKG_VERSION=3,35
save_old_version(25,754
make_symlink(37,1067
runMe(47,1373
BUILD_TYPE=78,1859
BUILD_TYPE=80,1906
myhost=89,2075
first=90,2099
SYSHOST=91,2119
SUDO=92,2140
MY_ARCH=95,2187
MAKE_EXTRA=107,2411
EXTRA=127,3129
SUDO=132,3242
base=142,3593
UPDATE_FN=146,3731
ADMIN_DIR=154,3966
BASE_DIR=161,4184
EXTRA_CMD=164,4228
MAKE=175,4407
.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
config.ld,41
project 1,0
topics 8,194
format=9,288
docs/source/index.rst,42
Lmod: A New Environment Module System2,1
docs/source/098_dependent_modules.rst,504
Dependent Modules3,30
$ module purge; module load X;27,803
$ module purge; module load X; module unload X 27,803
$ module purge; module load A;28,880
$ module purge; module load A; module load X;28,880
$ module purge; module load A; module load X; module unload X 28,880
$ module purge; module load X Y;34,1099
$ module purge; module load X Y; module unload X 34,1099
$ module purge; module load X Y;35,1166
$ module purge; module load X Y; module unload X Y 35,1166
docs/source/051_tcl_modulefiles.rst,25
function to 197,6704
docs/source/079_hidden_modules.rst,24
To hide modules,12,166
docs/source/130_spider_cache.rst,56
System Spider Cache3,32
$ export LMOD_RC=167,6612
docs/source/110_lmod_mpi_parallel_filesystem.rst,230
The Interaction between Modules,1,0
The Interaction between Modules, MPI and Parallel Filesystems1,0
export __BASHRC_SOURCED__=43,1925
Normally,65,2561
export ENVIRONMENT=70,2795
export LMOD_CMD=74,2929
docs/source/170_hooks.rst,72
function prependModulePath(48,1830
function myMsgHook(173,5810
docs/source/350_community.rst,31
.. _community-label:label1,0
docs/source/090_configuring_lmod.rst,20
entry is 53,1870
docs/source/080_hierarchy.rst,44
How to use a Software Module hierarchy3,31
docs/source/070_standard_modules.rst,266
export __Init_Default_Modules=20,753
LMOD_SYSTEM_DEFAULT_MODULES=23,852
export __Init_Default_Modules=79,3087
Lmod,90,3339
In general,93,3406
*set-group-id*id95,3534
export __Init_Default_Modules=104,3957
set of modules 112,4144
docs/source/015_writing_modules.rst,31
function built-built157,5776
docs/source/045_transition.rst,35
export _INIT_LMOD=151,4853
docs/source/310_settarg.rst,471
.. _settarg-label:label1,0
between optimized or debug builds; change compiler or other modules;13,342
opt(202,7940
mdbg(203,7975
empty(204,8010
TARG_SUMMARY=212,8191
ModuleTbl 306,11121
TargetList 315,11491
SettargDirTemplate 317,11556
NoFamilyList 319,11641
TitleTbl 321,11688
TargPathLoc 335,12121
In other words,342,12312
TargetList 423,16362
Normally in any directory your TARG will be the default,425,16438
docs/source/125_personal_spider_cache.rst,23
User Spider Cache3,30
docs/source/095_tcl2lua.rst,28
function call.call28,1016
docs/source/340_inherit.rst,113
.. _inherit-label:label1,0
$ export MY_MODULEPATH_ROOT=41,1886
$ cd ~/my_modules/Core/gcc;gcc75,2953
docs/source/320_improving_perf.rst,36
.. _improving_perf-label:label1,0
docs/source/210_load_storms.rst,89
Load Storms: Long load times or Fails to Load1,0
MasterControl:load(load38,1012
docs/source/260_sh_to_modulefile.rst,47
function with 116,4350
function add 145,5482
docs/source/160_debugging_modulefiles.rst,468
Debugging Modulefiles3,34
setenv(51,1490
export FOO;86,2617
PATH=87,2633
LOADEDMODULES=95,2801
export LOADEDMODULES;96,2827
__LMFILES__=97,2854
export __LMFILES__;98,2878
MODULEPATH=99,2903
export MODULEPATH;100,2926
__LMOD_REF_COUNT_PATH=101,2950
PATH=103,3039
_ModuleTable001_=105,3092
export _ModuleTable001_;106,3121
_ModuleTable_Sz_=107,3151
export _ModuleTable_Sz_;108,3178
docs/source/025_new.rst,97
New Features in Lmod1,0
**Collection are written to both ~/.config/lmod and ~/.lmod.d*d25,972
docs/source/052_Environment_Variables.rst,31
Lmod Environment variables1,0
docs/source/190_Integration_of_EasyBuild_and_Lmod.rst,38
Integration of EasyBuild and Lmod1,0
docs/source/010_user.rst,280
It is rare,264,7995
second load,292,8731
family(306,9248
export BASHRC_READ=455,15051
then "**module restore**" will load the default A,568,18878
then "**module restore**" will load the default A, B,568,18878
If your site has a shared home file system,588,19624
docs/source/040_FAQ.rst,66
function in 12,381
function edit_modulefile 329,12060
docs/source/185_localization.rst,52
Lmod Localization3,19
Then configure Lmod 45,1671
docs/source/250_site_package.rst,39
function prependModulePath(69,2482
docs/source/360_check_syntax.rst,107
Checking Syntax in Your Sites Modulefiles3,28
**execute{}**, **load()**, **depends_on(depends_on47,1812
docs/source/030_installing.rst,754
Installing Lua and Lmod4,29
$ cd /opt/apps/lua;lua72,3168
$ mkdir /usr/local/bin;bin73,3208
The last command is optional,75,3284
``lua`` command in your path. Also obviously,76,3351
with the actual version 77,3419
./?.lua;/usr/share/lua/5.1/?.lua;lua160,6080
./?.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;lua160,6080
./?.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;/usr/lib64/lua/5.1/?.lua;lua160,6080
./?.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;lua160,6080
./?.so;/usr/lib64/lua/5.1/?.so;so165,6280
./?.so;/usr/lib64/lua/5.1/?.so;/usr/lib64/lua/5.1/loadall.so;so165,6280
LUAROCKS_PREFIX=170,6457
docs/source/220_tracing.rst,39
Tracing Lmod3,14
} Time 46,1532
docs/source/055_module_names.rst,65
Module names and module naming conventions1,0
fullName 43,1450
docs/source/140_deprecating_modules.rst,24
Deprecating Modules1,0
docs/source/100_modulefile_examples.rst,53
function parses 196,8677
function returns 208,9305
docs/source/093_modulerc.rst,30
.. _modulerc-label:label1,0
docs/source/060_locating.rst,169
How Lmod Picks which Modulefiles to Load3,23
module_version(173,6077
$ module purge; module load intel boost;389,13679
$ module swap intel gcc;411,14252
docs/source/075_bug_reporting.rst,33
How to report a bug in Lmod3,26
docs/source/300_tracking_module_usage.rst,27
Tracking Module Usage3,21
docs/source/200_avail_custom.rst,34
function avail_hook(62,1820
docs/source/120_shared_home_directories.rst,38
Lmod on Shared Home File Systems4,31
docs/source/240_sticky_modules.rst,20
Sticky Modules3,27
docs/source/136_spider.rst,21
The spider tool3,24
docs/source/077_ref_counting.rst,18
entry it 31,1149
docs/source/145_properties.rst,528
Module Properties3,19
The possible color values are: `black`black134,5427
The possible color values are: `black`, `red`red134,5427
The possible color values are: `black`, `red`, `green`green134,5427
The possible color values are: `black`, `red`, `green`, `yellow`yellow134,5427
`blue`blue135,5493
`blue`, `magenta`magenta135,5493
`blue`, `magenta`, `cyan`cyan135,5493
`blue`, `magenta`, `cyan`, and `white`. In practice,135,5493
backgrounds,137,5626
backgrounds, sites may wish to avoid `black`black137,5626
docs/source/050_lua_modulefiles.rst,52
function to 58,2563
function uses 215,8728
docs/source/135_module_spider.rst,37
Using the module spider command3,30
docs/source/073_tmod_to_lmod.rst,54
Converting from TCL/C Environment Modules to Lmod1,0
docs/source/330_extensions.rst,32
.. _extensions-label:label1,0
docs/requirements.txt,13
sphinx=2,14
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
cookbook/Generic_Module_files.txt,91
function is 52,2199
function loadPkgDefaults(124,5172
function setPkgInfo(211,7746
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
cookbook/inherit.txt,104
I now think I understand the question. Suppose a user has their own version of a parallel library 5,4
tcl/tacc/apps/TERAGRID-BASIC,46
setenv TG_CLUSTER_HOME $env(28,1128
tcl/tacc/apps/gridshell/0.9.9,16
} else 30,1356
tcl/tacc/apps/mycluster/0.9.9,16
} else 30,1356
tcl/tacc/apps/gsissh/4.1,41
setenv GLOBUS_TCP_PORT_RANGE 37,1633
tcl/tacc/TACC,34
set MODULEPATH_ROOT env(49,1350
tcl/modulecmd.tcl,153
set g_debug 38,1355
set error_count 39,1401
set g_inhibit_interp 41,1459
set flag_default_mf 47,1846
set DEF_COLUMNS 70,2245
set ignoreDir(84,2711
Makefile.in,5053
srcdir 1,0
prefix 2,38
package 3,76
PATH_TO_SRC 5,149
PATH_TO_LUA 7,186
version 8,229
SITE_CONTROLLED_PREFIX 9,356
LMOD_ROOT 10,410
MY_PACKAGE 11,460
MY_PKG_PACKAGE 12,521
LMOD_CONFIG_DIR 13,582
LMOD_ROOT 16,667
MY_PACKAGE 17,709
MY_PKG_PACKAGE 18,748
CC 20,793
PATH_TO_SRC 21,827
path_to_src 22,870
TOOL_SRC 25,913
I18N_SRC 26,976
CONF_PY 28,1045
CONF_PY_PATTERN 29,1104
CURRENT_MK 30,1181
export IGNORE_DIRS export IGNORE_DIRS31,1239
REDIRECT 32,1348
LMOD_SETTARG_FULL_SUPPORT 33,1388
USE_DOT_FILES 34,1478
PREPEND_BLOCK 35,1568
COLORIZE 36,1658
SETTARG_CMD 37,1748
MODULEPATH_INIT 38,1789
LMOD_AVAIL_EXTENSIONS 39,1836
LMOD_HIDDEN_ITALIC 40,1884
LMOD_OVERRIDE_LANG 41,1929
LMOD_ALLOW_ROOT_USE 42,1979
LMOD_USE_DOT_CONFIG_ONLY 43,2030
SITE_MSG_FILE 44,2085
SITE_NAME 45,2130
SUPPORT_KSH 46,2171
SYSHOST 47,2214
DYNAMIC_SPIDER_CACHE 48,2253
SILENCE_SHELL_DEBUGGING 49,2305
SYS_LD_LIB_PATH 50,2360
SYS_LD_PRELOAD 51,2407
SYS_LUA_PATH 52,2453
SYS_LUA_CPATH 53,2497
CASE_INDEPENDENT_SORTING 54,2542
ZSH_SITE_FUNCTIONS_DIRS 55,2598
ZSH_FPATH 56,2653
SPIDER_CACHE_DESCRIPT_FN 57,2694
ANCIENT 58,2750
ALLOW_TCL_MFILES 59,2789
MPATH_AVAIL 60,2837
EXTENDED_DEFAULT 61,2880
TMOD_PATH_RULE 62,2928
TMOD_FIND_FIRST 63,2974
CACHED_LOADS 64,3021
EXACT_MATCH 65,3065
DUPLICATE_PATHS 66,3108
DISABLE_NAME_AUTOSWAP 67,3155
SHORT_TIME 68,3208
PIN_VERSIONS 69,3250
AUTO_SWAP 70,3294
SPIDER_CACHE_DIRS 71,3335
LEGACY_ORDERING 72,3384
EXPORT_MODULE 73,3431
BASENAME 74,3476
UPDATE_VERSION 75,3516
PS 76,3579
READLINK 77,3613
EXPR 78,3653
PATH_TO_HASHSUM 79,3689
PATH_TO_LUAC 80,3736
PATH_TO_PAGER 81,3780
PATH_TO_TCLSH 82,3825
PATH_TO_LS 83,3870
MODULEPATH_ROOT 84,3912
VERSION_SRC 85,3959
SETTARG_VSRC 86,4014
LUA_INCLUDE 87,4073
UPDATE_SYSTEM_FN 88,4116
GIT_PROG 89,4164
PKG 90,4207
PKGV 91,4254
LIB 92,4297
LIBEXEC 93,4344
SHELLS 94,4395
TOOLS 95,4445
I18N 96,4494
SETTARG 97,4548
INIT 98,4599
INIT_KSH_FUNCS 99,4647
FISH_TAB 100,4705
MESSAGEDIR 101,4773
LMOD_MF 102,4827
MAN_PAGES 103,4887
LMOD_MF_SOURCE 104,4945
SETTARG_SOURCE 105,5019
DATE_cmd 106,5107
UNAME_S 107,5168
MODE 108,5215
SED 111,5277
SED 113,5301
MODE_X 116,5326
MODE_R 117,5392
LUA_INCLUDE 121,5485
LUA_INCLUDE 123,5508
GIT_VERSION 126,5572
DIRLIST 130,5744
STANDALONE_PRGM 135,6159
STANDALONE_PRGM 143,6813
SHELL_INIT 144,6889
SHELL_INIT 147,7126
LMODRC_INIT 148,7202
ZSH_FUNCS 151,7277
ZSH_FUNCS 152,7318
FISH_FUNCS 154,7398
FISH_FUNCS 155,7442
KSH_FUNCS 157,7524
KSH_FUNCS 158,7589
STARTUP 160,7675
STARTUP 161,7754
MSGFNs 163,7828
MAIN_DIR 165,7897
CONTRIB_DIRS 168,8041
CONTRIB 181,8783
lua_code 182,8864
VDATE 184,9014
ComputeHashSum 186,9081
spiderCacheSupportCMD 187,9146
export L_PATH export L_PATH188,9230
export L_CPATH export L_CPATH189,9272
HAVE_LUA_TERM 191,9316
PKGS 193,9390
HAVE_LUAFILESYSTEM 195,9411
PKGS 197,9495
PKG_LFS 198,9517
FAST_TCL_INTERP 200,9540
TCL_INCLUDE 201,9587
TCL_LIBS 202,9623
PKGS 204,9686
PKG_T2L 205,9715
.PHONY:.PHONY208,9743
all:all210,9772
uninstall:uninstall213,9790
pre-install:pre-install217,9912
lmod_install_targets:lmod_install_targets219,9958
install:install223,10206
echo:echo238,11151
man_pages:man_pages241,11219
LUA_PATH=243,11330
$(DIRLIST)$(DIRLIST247,11563
__installMe:__installMe250,11605
generate_doc:generate_doc335,17946