-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTAGS.world
19066 lines (16443 loc) · 524 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/luafilesystem/lfs.h,239
#define chdir(8,185
#define chdir_error 9,209
#define chdir_error 11,279
#define chdir(15,339
#define getcwd(16,370
#define rmdir(17,409
#define LFS_EXPORT 18,440
#define fileno(20,501
#define LFS_EXPORT23,551
pkgs/luafilesystem/lfs.c,3214
#define _FILE_OFFSET_BITS 25,671
#define _LARGE_FILES 27,737
#define _LARGEFILE64_SOURCE33,826
#define LFS_MAXPATHLEN 55,1273
#define LFS_MAXPATHLEN 63,1470
#define LFS_VERSION 72,1591
#define LFS_LIBNAME 73,1619
#define luaL_optlong 78,1709
# define luaL_newlib(84,1788
#define strerror(89,1946
#define DIR_METATABLE 92,2016
typedef struct dir_data 93,2060
int closed;94,2086
intptr_t hFile;96,2121
char pattern[pattern97,2145
DIR *dir;dir99,2185
} dir_data;101,2210
#define LOCK_METATABLE 103,2223
#define lfs_setmode(107,2299
#define STAT_STRUCT 108,2360
#define lfs_setmode(110,2404
#define STAT_STRUCT 111,2466
#define STAT_FUNC 113,2512
#define LSTAT_FUNC 114,2539
#define _O_TEXT 116,2574
#define _O_BINARY 117,2606
#define lfs_setmode(118,2638
#define STAT_STRUCT 119,2694
#define STAT_FUNC 120,2726
#define LSTAT_FUNC 121,2749
static int pusherror(127,2809
static int pushresult(138,3102
static int change_dir 150,3343
static int get_dir 168,3903
static FILE *check_file check_file203,4965
static int _file_lock 227,5653
typedef struct lfs_Lock 275,7637
HANDLE fd;276,7663
} lfs_Lock;277,7676
static int lfs_lock_dir(278,7688
static int lfs_unlock_dir(306,8660
typedef struct lfs_Lock 315,8903
char *ln;ln316,8929
} lfs_Lock;317,8941
static int lfs_lock_dir(318,8953
static int lfs_unlock_dir(339,9587
static int lfs_g_setmode 350,9805
static int lfs_f_setmode(371,10360
static int file_lock 382,10662
static int file_unlock 404,11335
static int make_link(425,11948
static int make_dir 443,12427
static int remove_dir 466,12984
static int dir_iter 485,13355
static int dir_close 532,14850
static int dir_iter_factory 551,15225
static int dir_create_meta 577,15945
static int lock_create_meta 598,16448
#define S_ISDIR(616,16879
#define S_ISREG(619,16946
#define S_ISLNK(622,17013
#define S_ISSOCK(625,17069
#define S_ISFIFO(628,17126
#define S_ISCHR(631,17182
#define S_ISBLK(634,17249
static const char *mode2string mode2string641,17364
static int file_utime 667,17942
static void push_st_mode 689,18596
static void push_st_dev 693,18746
static void push_st_ino 697,18886
static void push_st_nlink 701,19044
static void push_st_uid 705,19189
static void push_st_gid 709,19331
static void push_st_rdev 713,19491
static void push_st_atime 717,19638
static void push_st_mtime 721,19798
static void push_st_ctime 725,19959
static void push_st_size 729,20108
static void push_st_blocks 734,20275
static void push_st_blksize 738,20439
static const char *perm2string perm2string748,20654
static const char *perm2string perm2string761,21053
static void push_st_perm 779,21574
typedef void (*_push_function)_push_function783,21691
struct _stat_members 785,21758
const char *name;name786,21781
_push_function push;787,21807
struct _stat_members members[members790,21840
static int _file_info_ 813,22564
static int file_info 853,23984
static int push_link_target(864,24304
static int link_info 896,25220
static void set_info 916,25821
static const struct luaL_Reg fslib[fslib926,26256
LFS_EXPORT int luaopen_lfs 943,26753
pkgs/luafilesystem/Makefile,401
T 1,0
SONAME 2,16
SONAMEV 3,36
LIBRARY 4,60
SRC 5,87
OBJ 6,106
override CFLAGS override CFLAGS8,148
override CFLAGS override CFLAGS11,205
OS 14,257
LIB_OPTION=16,301
LIB_OPTION=18,367
all:all21,430
$(SONAMEV)$(SONAMEV23,469
$(SONAME)$(SONAME26,503
$(LIBRARY)$(LIBRARY29,536
install:install32,612
$(LIB)$(LIB35,653
clean:clean38,679
neat:neat40,730
echo:echo43,751
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,241
LIB_OPTION=15,285
LIB_OPTION=17,351
all:all20,414
$(SONAMEV)$(SONAMEV22,453
$(SONAME)$(SONAME25,487
$(LIBRARY)$(LIBRARY28,520
install:install31,596
$(LIB)/term $(SHARE)/term:$(LIB)/term $(SHARE)/term35,690
clean:clean39,732
neat:neat41,783
echo:echo44,804
pkgs/term/term/colors.lua,271
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 makecolor(44,1507
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/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,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/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,2783
export LMOD_DIR=121,2927
RmapDir=127,2983
MPATH=142,3428
XSEDE_dir=153,3852
timeStamp=157,3950
contrib/TACC/SitePackage.lua,220
local function load_hook(56,2281
local function writeCache_hook(99,3848
local function parse_updateFn_hook(108,4023
function avail_hook(146,5014
local function report_loads(165,5425
function safe_tonumber(176,5644
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,796
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(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/SitePackage.lua,59
function load_hook(47,2050
function report_loads(75,3114
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/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/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/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/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/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/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/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/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,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/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/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,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
.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
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,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/130_spider_cache.rst,56
System Spider Cache3,32
$ export LMOD_RC=130,5039
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/170_hooks.rst,39
function prependModulePath(48,1835
docs/source/090_configuring_lmod.rst,140
is lowercased first,27,977
is lowercased first, so NO,27,977
is lowercased first, so NO, No,27,977
this variable has no value,44,1502
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,114
export _INIT_LMOD=145,4657
clearMT # clear the stored module table 149,4917
docs/source/310_settarg.rst,470
.. _settarg-label:label1,0
between optimize or debug builds; change compiler or other modules;13,342
opt(179,6902
mdbg(180,6937
empty(181,6972
TARG_SUMMARY=189,7153
ModuleTbl 283,10083
TargetList 292,10453
SettargDirTemplate 294,10518
NoFamilyList 296,10603
TitleTbl 298,10650
TargPathLoc 312,11083
In other words,319,11274
TargetList 400,15324
Normally in any directory your TARG will be the default,402,15400
docs/source/125_personal_spider_cache.rst,23
User Spider Cache3,30
docs/source/095_tcl2lua.rst,27
function call.call25,848
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,45
Converting shell scripts to modulefiles3,29
docs/source/160_debugging_modulefiles.rst,461
Debugging Modulefiles3,34
setenv(39,1047
export FOO;74,2174
PATH=75,2190
LOADEDMODULES=83,2358
export LOADEDMODULES;84,2384
__LMFILES__=85,2411
export __LMFILES__;86,2435
MODULEPATH=87,2460
export MODULEPATH;88,2483
__LMOD_REF_COUNT_PATH=89,2507
PATH=91,2596
_ModuleTable001_=93,2649
export _ModuleTable001_;94,2678
_ModuleTable_Sz_=95,2708
export _ModuleTable_Sz_;96,2735
docs/source/190_Integration_of_EasyBuild_and_Lmod.rst,38
Integration of EasyBuild and Lmod1,0
docs/source/010_user.rst,134
second load,159,4046
family(173,4563
export BASHRC_READ=322,10344
If your site has a shared home file system,409,13083
docs/source/040_FAQ.rst,23
function in 12,381
docs/source/185_localization.rst,52
Lmod Localization3,19
Then configure Lmod 45,1671
docs/source/250_site_package.rst,39
function prependModulePath(69,2483
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/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 189,8273
function returns 201,8901
docs/source/060_locating.rst,139
How Lmod Picks which Modulefiles to Load3,23
$ module purge; module load intel boost;281,9957
$ module swap intel gcc;303,10530
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(57,1607
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,20
The spider tool1,0
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`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/050_lua_modulefiles.rst,28
function uses 120,4807
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/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,5176
function setPkgInfo(211,7750
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,4718
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
SETTARG_CMD 26,1116
MODULEPATH_INIT 27,1157
LMOD_HIDDEN_ITALIC 28,1204
LMOD_OVERRIDE_LANG 29,1249
SITE_MSG_FILE 30,1299
SITE_NAME 31,1344
SYSHOST 32,1385
SYS_LD_LIB_PATH 33,1424
SYS_LD_PRELOAD 34,1471
SYS_LUA_PATH 35,1517
SYS_LUA_CPATH 36,1561
CASE_INDEPENDENT_SORTING 37,1606
ZSH_SITE_FUNCTIONS_DIRS 38,1662
SPIDER_CACHE_DESCRIPT_FN 39,1717
ANCIENT 40,1773
ALLOW_TCL_MFILES 41,1807
MPATH_AVAIL 42,1855
TMOD_PATH_RULE 43,1898
TMOD_FIND_FIRST 44,1944
CACHED_LOADS 45,1991
EXACT_MATCH 46,2035
DUPLICATE_PATHS 47,2078
DISABLE_NAME_AUTOSWAP 48,2125
SHORT_TIME 49,2178
PIN_VERSIONS 50,2215
AUTO_SWAP 51,2259
SPIDER_CACHE_DIRS 52,2294
LEGACY_ORDERING 53,2338
EXPORT_MODULE 54,2385
BASENAME 55,2430
PS 56,2470
EXPR 57,2504
PATH_TO_HASHSUM 58,2540
PATH_TO_LUAC 59,2582
PATH_TO_PAGER 60,2626
PATH_TO_TCLSH 61,2664
MODULEPATH_ROOT 62,2709
VERSION_SRC 63,2751
LUA_INCLUDE 64,2797
UPDATE_SYSTEM_FN 65,2835
GIT_BRANCH 66,2878
GIT_PROG 67,2914
version 68,2957
GIT_VERSION 69,3062
prefix 70,3219
package 71,3244
PKGV 72,3266
PKG 73,3312
LIBEXEC 74,3357
SHELLS 75,3414
TOOLS 76,3482
I18N 77,3549
SETTARG 78,3621
INIT 79,3690
MESSAGEDIR 80,3741
LMOD_MF 81,3806
MAN_PAGES 82,3872
LMOD_MF_SOURCE 83,3948
SETTARG_SOURCE 84,4022
DIRLIST 86,4111
STANDALONE_PRGM 91,4447
STANDALONE_PRGM 98,5006
SHELL_INIT 99,5082
SHELL_INIT 102,5292
LMODRC_INIT 103,5358
ZSH_FUNCS 106,5433
ZSH_FUNCS 107,5474
STARTUP 109,5554
STARTUP 110,5591
MSGFNs 112,5653
MAIN_DIR 114,5722
CONTRIB_DIRS 117,5854
CONTRIB 130,6596
lua_code 131,6677
VDATE 133,6815
ComputeHashSum 135,6861
spiderCacheSupportCMD 136,6921
export L_PATH export L_PATH137,7009
export L_CPATH export L_CPATH138,7051
HAVE_LUA_TERM 140,7095
LIB 141,7140
PKGS 143,7234
HAVE_LUAFILESYSTEM 145,7255
PKGS 147,7339
.PHONY:.PHONY151,7369
all:all153,7398
uninstall:uninstall156,7416
pre-install:pre-install160,7541
install:install164,7750
echo:echo169,7878
man_pages:man_pages175,8002
$(DIRLIST)$(DIRLIST178,8119
__installMe:__installMe181,8146
bareN=183,8231
fn=184,8310
ext=185,8389
[ "$$ext" [ "$$ext"239,12428
if [ "$$ext" if [ "$$ext"241,12588
mname=242,12668
generate_doc:generate_doc249,13068
shell_init:shell_init253,13092
lmodrc_init:lmodrc_init256,13182
messageFns:messageFns259,13274
i18n:i18n262,13363
startup:startup265,13442
other_tools:other_tools268,13526
spiderCacheSupport:spiderCacheSupport271,13640
src/computeHashSum:src/computeHashSum277,13950
lfs:lfs281,14075
$(MAKE) LUA_INC=$(MAKE) LUA_INC283,14148
SHARE=284,14223
pkgs:pkgs285,14283
$(MAKE) LUA_INC=$(MAKE) LUA_INC287,14314
SHARE=288,14377
zsh_tab_funcs:zsh_tab_funcs290,14438
for i in `echo "$(ZSH_SITE_FUNCTIONS_DIRS)" | tr ':for i in `echo "$(ZSH_SITE_FUNCTIONS_DIRS)" | tr '292,14534
makefile:makefile298,14832
config.status:config.status301,14901
dist:dist304,14944
_dist:_dist321,15823
_distMkDir:_distMkDir324,15954
_distContrib:_distContrib329,16003
_distSrc:_distSrc333,16077
_distVersion:_distVersion340,16325
_distPkgs:_distPkgs344,16443
_distSetup:_distSetup348,16504
_distSetupZsh:_distSetupZsh352,16596
_distMainDir:_distMainDir358,16674
_distMF:_distMF361,16714
_distTar:_distTar365,16763
ml_dist:ml_dist374,17093
_ml_dist:_ml_dist377,17132
test:test386,17531
tags:tags389,17569
build_tags:build_tags392,17606
busted:busted452,21221
luachk:luachk459,21528
libexec:libexec463,21694
Inst_Tools:Inst_Tools466,21780
Inst_Shells:Inst_Shells469,21866
Inst_Settarg:Inst_Settarg472,21965
Inst_Lmod_MF:Inst_Lmod_MF476,22062
clean:clean479,22158
clobber:clobber484,22339
distclean:distclean486,22355
world_update:world_update489,22405
echo "All files not checked in echo "All files not checked in492,22582
echo "configure is out of date echo "configure is out of date494,22745
gittag:gittag504,23449
echo "configure is out of date echo "configure is out of date510,23808
echo ' local s echo ' local s516,24295
echo ' if (s echo ' if (s517,24382
echo ' if (s echo ' if (s518,24469
echo ' local a echo ' local a523,24890
my_docs/FindingUsersOfModules.txt,24
which users,56,1790
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/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/16/sc16_bof/booth_talk.tex,281
\newcommand{\bfnabla}\bfnabla19,477
\newcommand{\laplacian}\laplacian20,525
\newcommand{\grad}\grad21,567
\newcommand{\tgrad}\tgrad22,602
\newcommand{\dvg}\dvg23,640
\newcommand{\curl}\curl24,680
\newcommand{\lap}\lap25,722
\section{Introduction}Introduction33,817
my_docs/16/sc16_bof/Makefile,102
TALKS 1,0
TEX_SUFS 2,27
%.pdf:%.pdf4,93
all:all7,123
clean:clean9,138
clobber:clobber13,221
my_docs/16/fosdem16/abs.txt,58
Lmod is a modern,14,80
Lmod is a modern, flexible,14,80
my_docs/16/fosdem16/talk.tex,493
\newcommand{\bfnabla}\bfnabla28,936
\newcommand{\laplacian}\laplacian29,984
\newcommand{\grad}\grad30,1026
\newcommand{\tgrad}\tgrad31,1061
\newcommand{\dvg}\dvg32,1099
\newcommand{\curl}\curl33,1139
\newcommand{\lap}\lap34,1181
\section{Environment Modules}Environment96,4021
\section{Using Lua Features}Using212,7348
\section{Building a Community}Building317,10169
\section{Tech Solutions for reliable programs}Tech391,12665
\section{Conclusions}Conclusions495,15358
my_docs/16/fosdem16/abstract.org,38
* Questions the abstract should 3,48
my_docs/16/fosdem16/Makefile,102
TALKS 1,0
TEX_SUFS 2,21
%.pdf:%.pdf4,87
all:all7,117
clean:clean9,132
clobber:clobber13,215
my_docs/16/fosdem16/lmod.org,61
function setenv(68,2009
function setenv(111,3081
my_docs/16/ugent_16/talk.tex,355
\newcommand{\bfnabla}\bfnabla28,879
\newcommand{\laplacian}\laplacian29,927
\newcommand{\grad}\grad30,969
\newcommand{\tgrad}\tgrad31,1004
\newcommand{\dvg}\dvg32,1042
\newcommand{\curl}\curl33,1082
\newcommand{\lap}\lap34,1124