-
Notifications
You must be signed in to change notification settings - Fork 0
/
TAGS
7340 lines (6868 loc) · 228 KB
/
TAGS
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
Lessons_learned.txt,80
* The linker can be called ld,11,385
* When building Intel PIN library,13,448
contrib/clear_stack_execute_bit/report_bit_execs.sh,51
syshost=4,21
result=11,134
host=13,214
contrib/clear_stack_execute_bit/xalt_db_clear_bit_link.py,171
class CmdLineOptions(17,461
def __init__(20,529
def execute(24,586
def find_link_files(36,1375
def capture(50,1736
def clear_stack_bit(66,2141
def main(72,2316
contrib/clear_stack_execute_bit/xalt_db_clear_bit_run.py,170
class CmdLineOptions(16,460
def __init__(19,528
def execute(23,585
def find_run_files(35,1374
def capture(53,1823
def clear_stack_bit(69,2228
def main(73,2333
contrib/clear_stack_execute_bit/example.c,40
void sort_bytes(8,218
int main(21,511
contrib/clear_stack_execute_bit/clear_bit.sh,51
syshost=4,37
result=13,223
host=15,304
contrib/clear_stack_execute_bit/monthly_clear_bits.sh,49
left=7,114
rght=8,141
strt=10,169
contrib/clear_stack_execute_bit/migration_for_execstack_issue.txt,67
If we have cleared this execstack bit,8,212
int main(84,3022
contrib/argparse/argparse.py,5073
def sorted(108,3670
def _callable(116,3838
class _AttributeHolder(133,4183
def __repr__(142,4507
def _get_kwargs(151,4841
def _get_args(154,4914
def _ensure_value(158,4959
class HelpFormatter(168,5182
def __init__(175,5438
def _indent(207,6408
def _dedent(211,6512
class _Section(216,6686
def __init__(218,6715
def format_help(224,6912
def _add_item(249,7899
def start_section(255,8087
def end_section(261,8307
def add_text(265,8419
def add_usage(269,8558
def add_argument(274,8758
def add_arguments(292,9517
def format_help(299,9715
def _join_parts(306,9933
def _format_usage(311,10112
def get_lines(355,11872
def _format_actions_usage(403,13950
def _format_text(499,17610
def _format_action(506,17889
def _format_action_invocation(553,19817
def _metavar_formatter(576,20613
def format(585,20961
def _format_args(592,21153
def _expand_help(611,21941
def _iter_indented_subactions(624,22493
def _split_lines(635,22808
def _fill_text(639,22956
def _get_help_string(644,23202
class RawDescriptionHelpFormatter(648,23271
def _fill_text(655,23550
class RawTextHelpFormatter(659,23673
def _split_lines(666,23956
class ArgumentDefaultsHelpFormatter(670,24032
def _get_help_string(677,24311
def _get_action_name(691,24756
class ArgumentError(704,25109
def __init__(711,25349
def __str__(715,25480
class ArgumentTypeError(724,25770
class Action(733,25944
def __init__(784,28392
def _get_kwargs(806,29013
def __call__(820,29333
class _StoreAction(824,29470
def __init__(826,29499
def __call__(855,30524
class _StoreConstAction(859,30643
def __init__(861,30677
def __call__(878,31149
class _StoreTrueAction(882,31272
def __init__(884,31316
class _StoreFalseAction(899,31712
def __init__(901,31757
class _AppendAction(916,32154
def __init__(918,32184
def __call__(947,33217
class _AppendConstAction(953,33432
def __init__(955,33467
def __call__(973,33969
class _CountAction(979,34188
def __init__(981,34217
def __call__(995,34604
class _HelpAction(1000,34789
def __init__(1002,34817
def __call__(1014,35152
class _VersionAction(1019,35275
def __init__(1021,35306
def __call__(1035,35742
class _SubParsersAction(1044,36044
class _ChoicesPseudoAction(1046,36078
def __init__(1048,36119
def __init__(1052,36296
def add_parser(1073,36882
def _get_subactions(1089,37484
def __call__(1092,37553
class FileType(1121,38612
def __init__(1134,39088
def __call__(1138,39195
def __repr__(1155,39769
class Namespace(1164,40067
def __init__(1171,40261
def __eq__(1177,40391
def __ne__(1180,40462
def __contains__(1183,40527
class _ActionsContainer(1187,40598
def __init__(1189,40632
def register(1241,42514
def _registry_get(1245,42668
def set_defaults(1251,42924
def get_default(1260,43258
def add_argument(1270,43571
def add_argument_group(1310,45229
def add_mutually_exclusive_group(1315,45398
def _add_action(1320,45584
def _remove_action(1341,46342
def _add_container_actions(1344,46418
def _get_positional_kwargs(1384,48148
def _get_optional_kwargs(1400,48819
def _pop_action_class(1435,50385
def _get_handler(1439,50548
def _check_conflict(1448,50929
def _handle_conflict_error(1462,51484
def _handle_conflict_resolve(1469,51847
class _ArgumentGroup(1484,52391
def __init__(1486,52433
def _add_action(1507,53356
def _remove_action(1512,53522
class _MutuallyExclusiveGroup(1517,53664
def __init__(1519,53712
def _add_action(1524,53898
def _remove_action(1532,54183
class ArgumentParser(1537,54313
def __init__(1555,55249
def identity(1601,56874
def _get_kwargs(1636,58131
def add_subparsers(1651,58551
def _add_action(1682,59904
def _get_optional_actions(1689,60108
def _get_positional_actions(1694,60255
def parse_args(1702,60540
def parse_known_args(1709,60786
def _parse_known_args(1744,62246
def take_action(1791,64314
def consume_optional(1812,65442
def consume_positionals(1889,69117
def _read_args_from_files(1979,73056
def convert_arg_line_to_args(2008,74252
def _match_argument(2011,74329
def _match_arguments_partial(2030,75137
def _parse_optional(2046,75811
def _get_option_tuples(2103,78232
def _get_nargs_pattern(2147,80156
def _get_values(2191,81573
def _get_value(2240,83582
def _check_value(2265,84534
def format_usage(2275,84979
def format_help(2281,85205
def format_version(2304,85938
def _get_formatter(2314,86308
def print_usage(2320,86475
def print_help(2325,86625
def print_version(2330,86773
def _print_message(2338,87087
def exit(2347,87320
def error(2352,87465
contrib/supporting_clang/README.txt,105
$ cd /usr/bin; rm ld;24,842
$ cd /usr/bin; rm ld; ln -s ld.bfd ld.x;x24,842
setenv(28,913
contrib/getent/headers.py,324
class AliasStruct(4,40
class InAddrStruct(13,236
class InAddr6Union(20,354
class InAddr6Struct(28,534
class HostStruct(36,685
class NetworkStruct(46,926
class ProtoStruct(56,1259
class RPCStruct(65,1533
class ServiceStruct(74,1820
class GroupStruct(84,2161
class PasswdStruct(94,2386
class ShadowStruct(106,2670
contrib/getent/__init__.py,814
def convert23(11,197
def convert23(15,251
class StructMap(19,362
def __init__(21,388
def __dict__(33,693
def __iter__(36,750
def _map(45,949
def _resolve(54,1114
class Host(68,1670
def __init__(69,1693
class Proto(76,1928
def __init__(77,1952
class RPC(82,2070
def __init__(83,2092
class Service(88,2208
def __init__(89,2234
class Network(94,2354
def __init__(95,2380
class Alias(100,2500
def __init__(101,2524
class Group(106,2642
def __init__(107,2666
class Passwd(112,2784
class Shadow(116,2820
def __init__(117,2845
def alias(123,3042
def host(150,3538
def lookup(179,4099
def proto(207,5038
def rpc(244,5774
def service(284,6572
def network(338,7779
def group(369,8348
def passwd(414,9204
def shadow(459,10073
contrib/getent/constants.py,25
def c_char_p(17,460
contrib/upgradeDB_0.7.5-1.1.3.py,95
class CmdLineOptions(36,1394
def __init__(39,1462
def execute(43,1519
def main(50,1804
contrib/fix_module_name.py,144
class CmdLineOptions(16,268
def __init__(19,336
def execute(23,393
def dbConfigFn(33,957
def fix_module_name(41,1087
def main(71,2032
contrib/build_exec_in_tmp.patch,16
status=13,428
contrib/TACC/build_XALT_report.in,71
export PATH=4,36
last365=27,789
sendTo=33,901
fn30=39,971
contrib/TACC/check_pytas.in,182
import os,4,77
import os, sys,4,77
import os, sys, re,4,77
from urllib2 import Request,7,126
from urllib2 import Request, urlopen,7,126
def field_of_science(11,206
contrib/TACC/syslogTest.c,15
int main(8,84
contrib/TACC/build_default_user_2_account_str.in,148
import os,44,1312
import os, sys,44,1312
import os, sys, re,44,1312
def read_project_map_file(46,1338
with open(53,1498
with open(67,1795
contrib/TACC/reportQ.in,60
PATH=4,36
startD=16,200
endD=17,218
fileNm=19,235
contrib/TACC/update_module_name.in,281
import os,5,78
import os, sys,5,78
import os, sys, re,5,78
import os, sys, re, time,5,78
import os, sys, re, time, datetime,5,78
import os, sys, re, time, datetime, argparse,5,78
import os, sys, re, time, datetime, argparse, MySQLdb,5,78
dirNm,7,141
dirNm, execName 7,141
contrib/TACC/quarter2months.in,52
import os,4,77
import os, sys,4,77
def main(6,97
contrib/TACC/pytas.py,833
class client:client13,218
def __init__(20,422
def authenticate(36,961
def get_user(49,1453
def save_user(64,1979
def verify_user(83,2697
def request_password_reset(92,3046
def confirm_password_reset(104,3607
def institutions(128,4604
def _get_departments(146,5248
def get_institution(162,5735
def get_departments(183,6606
def get_department(194,7030
def _departments(204,7279
def countries(215,7509
def fields(232,7987
def projects(240,8188
def project(249,8566
def projects_for_user(255,8814
def create_project(281,9808
def edit_project(291,10242
def edit_allocation(301,10692
def get_project_users(314,11194
def add_project_user(322,11539
def del_project_user(330,11900
def allocation_approval(340,12298
contrib/TACC/load_xalt_db,24
export MODULEPATH=2,12
contrib/TACC/kill_dups.in,342
from __future__ import print_function,4,40
import os,6,126
import os, sys,6,126
import os, sys, re,6,126
import os, sys, re, time,6,126
import os, sys, re, time, datetime,6,126
import os, sys, re, time, datetime, argparse,6,126
import os, sys, re, time, datetime, argparse, base64,6,126
import os,18,442
def ioctl_GWINSZ(19,462
contrib/TACC/README.vm,124
mysql> grant all on xalt.* to 'xaltuser'@'@15,517
mysql> quit;16,575
$ ./build_hello_executables.sh sh33,887
contrib/TACC/monthly_report.in,471
import os,4,77
import os, sys,4,77
import os, sys, re,4,77
import os, sys, re, MySQLdb,4,77
import os, sys, re, MySQLdb, json,4,77
import os, sys, re, MySQLdb, json, time,4,77
import os, sys, re, MySQLdb, json, time, argparse,4,77
dirNm,7,151
dirNm, execName 7,151
compiled_userDirPatternT 238,15189
self.__host __host271,16054
query 396,19832
acctT 412,20191
query 413,20209
linkA 475,22869
runT[runT496,23750
contrib/TACC/correct_num_cores.in,404
from __future__ import print_function,4,40
import os,6,126
import os, sys,6,126
import os, sys, re,6,126
import os, sys, re, time,6,126
import os, sys, re, time, datetime,6,126
import os, sys, re, time, datetime, argparse,6,126
import os, sys, re, time, datetime, argparse, base64,6,126
import os,18,442
def ioctl_GWINSZ(19,462
endtimeT 288,9109
fn 290,9126
f.close(close308,9739
contrib/TACC/envReport.in,449
from __future__ import print_function,4,40
import os,5,88
import os, sys,5,88
import os, sys, re,5,88
import os, sys, re, time,5,88
import os, sys, re, time, datetime,5,88
import os, sys, re, time, datetime, argparse,5,88
import os, sys, re, time, datetime, argparse, base64,5,88
import os, sys, re, time, datetime, argparse, base64, MySQLdb,5,88
dirNm,11,234
dirNm, execName 11,234
idx2count 61,1908
ja 62,1925
resultA 124,3384
contrib/TACC/store_xalt_data.in,68
MCLAY=3,35
manager 35,1298
store_log=52,1713
percentage=65,2023
contrib/TACC/fix_records.in,325
import os,5,78
import os, sys,5,78
import os, sys, re,5,78
import os, sys, re, time,5,78
import os, sys, re, time, datetime,5,78
import os, sys, re, time, datetime, argparse,5,78
import os, sys, re, time, datetime, argparse, base64,5,78
parser 20,429
endtimeT 102,3968
fn 104,3985
f.close(close120,4515
contrib/TACC/staff_builds/staff.py,28
def xalt_tacc_staff(27,281
contrib/TACC/staff_builds/staff_builds.py,201
class CmdLineOptions(19,398
def __init__(22,466
def execute(26,523
class StaffBuilds:StaffBuilds37,1323
def __init__(38,1342
def build(42,1423
def report_by(77,2572
def main(91,3094
contrib/TACC/xalt_export_db.in,537
from __future__ import print_function,4,40
import os,5,88
import os, sys,5,88
import os, sys, re,5,88
import os, sys, re, time,5,88
import os, sys, re, time, datetime,5,88
import os, sys, re, time, datetime, argparse,5,88
import os, sys, re, time, datetime, argparse, base64,5,88
import os, sys, re, time, datetime, argparse, base64, MySQLdb,5,88
dirNm,11,234
dirNm, execName 11,234
resultT[resultT64,2674
userT[userT105,4465
xaltLinkT 123,5213
xaltLinkT[xaltLinkT124,5246
resultT[resultT127,5355
contrib/upgradeDB_From0.7.1.py,95
class CmdLineOptions(36,1394
def __init__(39,1462
def execute(43,1519
def main(50,1804
contrib/cuda_example/sample_output.txt,14
Memory 8,254
contrib/cuda_example/Makefile,55
NVCC 1,0
CFLAGS 3,13
hw2:hw25,27
clean:clean8,68
contrib/cuda_example/hw2.cu,345
class Timer13,246
Timer(16,268
void start(17,290
void stop(23,512
void reset(24,571
std::string labels[labels27,624
timeval times[times28,652
int n;29,675
void Timer::print(print32,690
void initialize(46,1219
void smooth(54,1394
__global__ void smooth_gpu(64,1790
void count(77,2268
int main(88,2477
contrib/build_reverseMapT_cray/cray_build_rmapT.sh,154
BASE_MODULE_PATH=32,1346
RmapDir=33,1379
SCRIPT_DIR=57,2108
sn=63,2295
c_major=73,2499
GCCPrev=86,2922
OLD=98,3145
contrib/build_reverseMapT_cray/merge_json_files.py,16
def main(6,103
contrib/queries/LinkRunCountByPeriod.py,24
def add_months(27,1323
LICENSE,800
Copyright (C) 1991, 1999 Free Software Foundation,4,85
51 Franklin Street,5,142
51 Franklin Street, Fifth Floor,5,142
51 Franklin Street, Fifth Floor, Boston,5,142
of this license document,7,266
it in new free programs;32,1571
To protect your rights,35,1653
running a program using the Library is not restricted,144,7540
warranty;155,8201
your rights to work written entirely by you; rather,202,10527
In addition,206,10701
with the Library 207,10772
Sections 1 and 2 above); and,289,15161
system;398,21190
Copyright 474,25147
This library is free software;476,25184
License as published by the Free Software Foundation;478,25313
version 2.1 of the License,479,25378
version 2.1 of the License, or 479,25378
Yoyodyne,497,26199
Ty Coon,502,26386
build.rtm,362
PKG_VERSION=23,1082
myhost=58,1657
myhost=60,1717
first=61,1743
export SYSHOST=63,1796
SETUP_CMD=69,1868
base=83,2193
base=89,2382
base=97,2812
base=104,3098
base=111,3403
base=118,3708
base=125,4024
EXTRA=128,4095
base=136,4432
base=143,4701
BASE_DIR=146,4736
MAKE=156,4884
cmdA=170,5060
docs/source/index.rst,27
function pointers 33,1350
docs/source/010_prereqs.rst,67
library,5,121
library, and to track the external functions 5,121
docs/source/120_xalt_json.rst,19
entry is 172,5380
docs/source/999_faq.rst,32
Frequently Asked Questions3,16
docs/source/040_reverse_map.rst,25
Function Tracking22,801
docs/source/050_install_and_test.rst,24
prepend_path(72,2533
docs/source/080_loading_json_by_syslog.rst,25
If you are syslog,5,106
docs/source/060_setup_db.rst,57
Where you have correctly set the **db name*name48,1733
docs/source/020_site_configuration.rst,27
Function Tracking267,8122
docs/source/030_site_filtering.rst,101
void my_hostname_parser_cleanup(85,3520
The routines must be called my_hostname_parser(91,3650
docs/source/115_xalt_internal_design.rst,29
As the overview stated,6,74
docs/source/100_execstack.rst,99
int main(29,1006
the assembly code,59,1719
Normally this is not a problem. However,65,2009
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/old_source/101_pagelisting.rtm,11
Topics1,0
docs/old_source/030_installation.rtm,443
Installation1,0
On a Cray (XC, XE, XK), the process is a bit more involved,99,2926
Once the ReverseMap file is built,105,3193
In this step,117,3468
In this step, make sure that the credential you created have the necessary privileges to create tables,117,3468
In this step, make sure that the credential you created have the necessary privileges to create tables, etc. If you want the database credential to be more restrictive,117,3468
docs/old_source/index.rtm,36
XALT: Library Tracking Software2,1
docs/old_source/020_QuickStart.rtm,22
Quick Start Guide1,0
docs/old_source/060_datamining.rtm,16
Data Mining1,0
docs/old_source/080_usecase.rtm,135
Workflow Case Studies1,0
mysql> SELECT object_path,36,736
FROM xalt_object,37,775
WHERE join_link_object.link_id=link_id38,811
docs/old_source/conf_py.rtm,46
extensions 32,1052
latex_documents 224,7423
docs/old_source/010_installation.rtm,17
Installation1,0
docs/old_source/090_FAQ.rtm,8
FAQ1,0
docs/old_source/030_FAQ.rtm,8
FAQ1,0
docs/old_source/021_interception.rtm,25
Interception Options1,0
docs/old_source/050_testing.rtm,12
Testing1,0
docs/old_source/050_production.rtm,15
Production1,0
docs/old_source/040_testing.rtm,12
Testing1,0
docs/old_source/070_datamining.rtm,16
Data Mining1,0
docs/old_source/060_production.rtm,15
Production1,0
xalt.spec,797
package use by R,89,2551
--prefix=prefix103,2811
%{!?with_mysql:--with-MySQL=MySQL104,2835
%{!?with_mysql:--with-MySQL=no} %{?with_mysql:--with-MySQL=MySQL104,2835
%{!?with_static:--with-staticLibs=staticLibs105,2903
%{!?with_static:--with-staticLibs=no} %{?with_static:--with-staticLibs=staticLibs105,2903
%{!?with_gpu:--with-trackGPU=trackGPU106,2983
%{!?with_gpu:--with-trackGPU=no} %{?with_gpu:--with-trackGPU=trackGPU106,2983
%{!?with_mpi:--with-trackMPI=trackMPI107,3053
%{!?with_mpi:--with-trackMPI=no} %{?with_mpi:--with-trackMPI=trackMPI107,3053
--with-config=config108,3123
--with-syshostConfig=syshostConfig109,3152
--with-transmission=transmission110,3189
%{__make} install DESTDIR=113,3238
local base 126,3614
prepend_path(131,3788
Makefile.in,3772
abs_srcdir 22,1051
srcdir 23,1085
VPATH 24,1115
CURRENT_MK 25,1145
OS_NAME 27,1196
LIB_OPTIONS 28,1235
LDFLAGS 29,1270
LIB_OPTIONS 31,1326
MY_HOSTNAME_PARSER 35,1389
OPTLVL 36,1435
package 38,1524
VERSION 39,1554
CRYPTO_STR 40,1611
UUID_STR 41,1651
BROKER_SERVER 42,1689
BROKER_URI 43,1732
TRACKING_MPI_ONLY 44,1772
TRANSMISSION 45,1822
SITE_NAME 46,1862
ETC_DIR 47,1894
prefix 48,1929
XALT_V 49,1963
XALT_SYSTEM_PATH 50,2007
SYSLOG_MSG_SZ 51,2048
HAVE_LIBUUID 52,2089
HAVE_DCGM 53,2139
HAVE_NVML 54,2173
STATIC_LIBS 55,2212
PRELOAD_ONLY 56,2253
CXX_LD_LIBRARY_PATH 57,2296
HAVE_32BIT 58,2343
XALT_INSTALL_OS 59,2381
XALT_SYSTEM_PATH 60,2426
PATH_TO_MKTEMP 61,2467
PATH_TO_PSTREE 62,2510
USE_ARGPARSE 63,2552
XALT_FILE_PREFIX 64,2600
XALT_PRIME_NUMBER 65,2644
XALT_PRIME_FMT 66,2690
XALT_FUNCTION_TRACKING 67,2730
ENABLE_BACKGROUNDING 68,2782
XALT_CONFIG_PY 69,2830
XALT_SPEC 70,2872
XALT_SPEC_PATTERN 71,2919
CONF_PY 72,2989
CONF_PY_PATTERN 73,3046
UPDATE_VERSION 74,3121
GIT_PROG 77,3184
GIT_VERSION 78,3223
VDATE 79,3403
XALT_DIR 81,3446
PKGV 82,3503
PKG 83,3560
INC 84,3617
LIB 85,3682
LIB64 86,3743
LIBEXEC 87,3806
BIN 88,3871
SBIN 89,3932
DIRLIST 90,3994
BIN_PKG 94,4231
BIN_PKG 103,4954
SBIN_PKG 105,5019
SBIN_PKG 111,5480
LIBEXEC_PKG 113,5546
LIBEXEC_PKG 120,5997
TACC_PKG 123,6067
TACC_PKG 131,6724
INIT_SRC 132,6789
INIT_SRC 133,6836
OBFUSCATE_HDR 135,6902
OBFUSCATE_HDR 136,6950
.PHONY:.PHONY139,7024
all:all141,7065
install:install144,7083
build_compiled:build_compiled149,7312
$(MAKE) LD_PRELOAD=$(MAKE) LD_PRELOAD151,7423
LDFLAGS=152,7524
LIB64=153,7625
HAVE_LIBUUID=154,7726
XALT_FILE_PREFIX=155,7827
MY_HOSTNAME_PARSER=156,7928
UUID_STR=157,8029
build_uuid:build_uuid160,8072
$(MAKE) PARENT_DIR=$(MAKE) PARENT_DIR162,8178
LIB=163,8279
$(MAKE) LD_PRELOAD=$(MAKE) LD_PRELOAD164,8380
LDFLAGS=165,8481
OPTLVL=166,8582
inst_obfuscate:inst_obfuscate168,8622
echo:echo172,8680
remove_genfiles:remove_genfiles180,8861
$(DIRLIST)$(DIRLIST183,9013
LINKS:LINKS186,9040
Inst_libexec:Inst_libexec192,9245
Inst_sbin:Inst_sbin195,9368
Inst_bin:Inst_bin198,9485
Inst_TACC:Inst_TACC201,9600
Use_getent_yes:Use_getent_yes205,9718
Use_argparse_no:Use_argparse_no211,9933
Use_argparse_yes:Use_argparse_yes213,9951
__installMe:__installMe216,10102
bareN=218,10187
fn=219,10266
oext=221,10419
[ "$$ext" [ "$$ext"223,10572
[ "$$ext" [ "$$ext"224,10652
[ "$$ext" [ "$$ext"254,12868
world_update:world_update259,13119
echo "All files not checked in echo "All files not checked in262,13306
echo "configure is out of date echo "configure is out of date264,13479
gittag:gittag273,14045
elif [ $$my_tag !=elif [ $$my_tag !279,14397
echo "TAG needs to be in the form:echo "TAG needs to be in the form281,14573
echo "configure is out of date echo "configure is out of date284,14830
vtag=286,14995
vtag=287,15083
tags:tags305,16217
build_tags:build_tags308,16255
dist:dist377,20546
makefile:makefile391,21570
src/makefile:src/makefile394,21637
libuuid/src/makefile:libuuid/src/makefile397,21712
neat:neat400,21793
LIB=403,21896
LIB=405,22037
clean:clean407,22093
$(MAKE) PARENT_DIR=$(MAKE) PARENT_DIR409,22193
LIB=410,22287
LIB=412,22428
clobber:clobber413,22483
proj_mgmt/updateVersion,101
function masterTbl(18,349
function main(22,392
function options(77,1604
function isFile(111,2498
proj_mgmt/locate_shared_library.c,40
#define _GNU_SOURCE1,0
int main(8,117
proj_mgmt/check_entries_db.py,119
class CmdLineOptions(50,1827
def __init__(53,1895
def execute(57,1952
def count_rows(71,3058
def main(82,3304
proj_mgmt/py_build_tools/build_parser_routine.py,125
class CmdLineOptions(28,1158
def __init__(31,1226
def execute(35,1283
def convert_template(46,1848
def main(77,2520
proj_mgmt/py_build_tools/build_xalt_interval_table.py,156
class CmdLineOptions(28,1154
def __init__(31,1222
def execute(35,1277
def convert_to_string(46,1751
def convert_template(53,1907
def main(84,2538
proj_mgmt/py_build_tools/xalt_prime_fmt.py,16
def main(6,103
proj_mgmt/py_build_tools/xalt_prime_check.py,36
def isPrime(6,103
def main(23,380
proj_mgmt/py_build_tools/build_xalt_regex.py,154
class CmdLineOptions(28,1158
def __init__(31,1226
def execute(35,1283
def convert_pattern(46,1761
def convert_template(56,1950
def main(87,2591
proj_mgmt/py_build_tools/build_syshost_routine.py,313
def xalt_syshost_main(30,1187
def hardcode(40,1423
def add_hostname_routine(56,1743
def env_var(92,3003
def read_file(112,3480
def nth_name(145,4512
def strip_nodename_numbers(188,5631
def mapping(218,6409
class CmdLineOptions(279,8230
def __init__(282,8298
def execute(286,8353
def main(300,8984
py_src/xalt_transmission_factory.py,405
class XALT_transmission_factory(35,1345
def __init__(39,1473
def _syshost(50,1742
def _kind(57,1871
def build(65,2022
class SyslogV1(91,2792
def __init__(96,2893
def save(104,3135
class Syslog(120,3603
def __init__(125,3702
def save(134,3943
class Broker(168,4880
def __init__(173,4974
def save(181,5214
class File(199,5777
def __init__(204,5864
def save(214,6180
py_src/XALTdb.py,427
def __LINE__(45,1735
def __FILE__(51,1855
def convertToTinyInt(58,2107
class TimeRecord(74,2435
def __init__(75,2461
def add(95,3082
def print(124,4042
class XALTdb(142,5332
def __init__(147,5466
def __readFromUser(156,5711
def __readConfig(164,5996
def connect(180,6646
def db(213,7773
def link_to_db(217,7840
def load_objects(314,11506
def run_to_db(367,13638
def pkg_to_db(511,19406
py_src/xalt_scalar_bins_usage_report.in.py,957
def shortName(44,2432
class CmdLineOptions(54,2596
def __init__(57,2664
def execute(61,2721
class ExecRun:ExecRun75,3931
def __init__(77,4001
def build(81,4082
def report_by(133,6113
class ExecRunLink:ExecRunLink150,6686
def __init__(152,6760
def build(156,6841
def report_by(190,8169
class CompilerUsageByCount:CompilerUsageByCount207,8742
def __init__(208,8770
def build(211,8850
def report_by(228,9426
class CompilerUsageByCoreHours:CompilerUsageByCoreHours242,9854
def __init__(243,9886
def build(247,9967
def report_by(275,10965
class Libraries:Libraries289,11515
def __init__(291,11533
def build(295,11613
def report_by(329,13554
def group_report_by(351,14325
class ModuleExec:ModuleExec386,15452
def __init__(387,15470
def build(391,15550
def report_by(413,16358
def kinds_of_jobs(427,16882
def percent_str(497,19515
def running_other_exec(504,19644
def main(559,22123
py_src/conf_create.in.py,226
class CmdLineOptions(40,1463
def __init__(41,1493
def execute(44,1527
class CreateConf(54,1988
def __init__(55,2014
def __readFromUser(61,2179
def __writeConfig(67,2510
def create(81,2906
def main(88,2985
py_src/xalt_name_mapping.py,57
def name_mapping(242,18465
def get_comm_name(245,18510
py_src/progressBar.py,171
def getTerminalSize(26,1136
def ioctl_GWINSZ(33,1336