├── .github ├── .codecov.yaml └── workflows │ ├── check.yml │ ├── codecov.yml │ ├── codeql.yml │ ├── docs.yml │ ├── install.yml │ └── test.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── config ├── CMakeLists.txt ├── client.example.in └── server.example.in ├── contrib ├── CI │ ├── CMakeLists.txt │ ├── almalinux.sh │ ├── alpine.sh │ ├── centos7.sh │ ├── centos8.sh │ ├── cmake-download.sh │ ├── generic_rpm.sh.in │ ├── macos.sh │ ├── requirements.txt │ ├── rockylinux.sh │ ├── rpms.sh.in │ ├── suse12.3.sh │ └── ubuntu.sh ├── CMakeLists.txt ├── canned_queries.sh ├── cmake │ ├── FindXATTR.cmake │ └── UseLATEX.cmake ├── deps │ ├── googletest.sh │ ├── googletest.tar.gz │ ├── install_deps.sh │ ├── jemalloc.sh │ ├── jemalloc.tar.gz │ ├── sqlite-autoconf-3270200.open.patch │ ├── sqlite-autoconf-3430100.max_attach.patch │ ├── sqlite-autoconf-3430100.pathname.patch │ ├── sqlite-autoconf-3430100.tar.gz │ ├── sqlite-lembed.patch │ ├── sqlite-lembed.sh │ ├── sqlite-vec.patch │ ├── sqlite-vec.sh │ ├── sqlite-vec.tar.gz │ ├── sqlite3-pcre.sh │ ├── sqlite3-pcre.tar.gz │ └── sqlite3.sh ├── gendir.c ├── gentrace.py ├── hashes.py ├── lustre_plugin.c ├── make_testindex.cpp ├── pylint.sh ├── shellcheck.sh ├── stats │ ├── CMakeLists.txt │ ├── per-level.sh │ ├── process-per-level.py │ └── snapshot.py ├── trace_anonymizer.py ├── treediff.c ├── verifytrace.cpp └── verifytraceintree.cpp ├── docs ├── CMakeLists.txt ├── GPFStoGUFI.pptx ├── GUFI-SQL.docx ├── GUFI.docx ├── README.md ├── TBD.docx ├── bffuse ├── bfresultfuse ├── config ├── dfw ├── gufi_dir2index ├── gufi_dir2trace ├── gufi_query ├── gufi_trace2index ├── gufi_treesummary ├── latex │ ├── CMakeLists.txt │ ├── GUFIText.sty │ ├── gufi_administrator.tex │ ├── gufi_developer.tex │ ├── gufi_quickstart.tex │ ├── gufi_user.tex │ ├── images │ │ ├── Database_Schemas.png │ │ ├── ascending.png │ │ ├── drawio_diagrams │ │ │ ├── Database_Schemas.drawio │ │ │ ├── ascend.drawio │ │ │ ├── gufi_dir2index.drawio │ │ │ ├── gufi_query.drawio │ │ │ ├── gufi_query_processdir.drawio │ │ │ ├── querydb_macro.drawio │ │ │ ├── rollup.drawio │ │ │ └── rollup_function.drawio │ │ ├── gufi_dir2index.png │ │ ├── gufi_query_main.png │ │ ├── gufi_query_processdir.png │ │ ├── gufi_structure.png │ │ ├── querydb_macro.png │ │ ├── rollup.png │ │ └── rollup_function.png │ └── sections │ │ ├── addqueryfuncs.tex │ │ ├── bottomup.tex │ │ ├── build.tex │ │ ├── dependencies.tex │ │ ├── deploy.tex │ │ ├── design.tex │ │ ├── distributed.tex │ │ ├── download.tex │ │ ├── external_databases.tex │ │ ├── gufi_dir2index.tex │ │ ├── gufi_dir2trace.tex │ │ ├── gufi_du.tex │ │ ├── gufi_find.tex │ │ ├── gufi_ls.tex │ │ ├── gufi_query.tex │ │ ├── gufi_sqlite3.tex │ │ ├── gufi_stat.tex │ │ ├── gufi_stat_bin.tex │ │ ├── gufi_stats.tex │ │ ├── gufi_trace2index.tex │ │ ├── implementation.tex │ │ ├── indexing.tex │ │ ├── install.tex │ │ ├── introduction.tex │ │ ├── license.tex │ │ ├── optimizations.tex │ │ ├── postindexing.tex │ │ ├── printing.tex │ │ ├── qptp.tex │ │ ├── querydbs.tex │ │ ├── querying.tex │ │ ├── quickstart.tex │ │ ├── reconstruct.tex │ │ ├── requirements.tex │ │ ├── rollup.tex │ │ ├── schema.tex │ │ ├── tracefile.tex │ │ ├── treesummary.tex │ │ ├── user_env.tex │ │ ├── utility.tex │ │ ├── virtual_tables.tex │ │ └── xattrs.tex ├── make_testindex ├── man │ ├── CMakeLists.txt │ ├── gufi_dir2index.1.in │ ├── gufi_dir2trace.1.in │ ├── gufi_du.1.in │ ├── gufi_find.1.in │ ├── gufi_incremental_update.1.in │ ├── gufi_ls.1.in │ ├── gufi_query.1.in │ ├── gufi_sqlite3.1.in │ ├── gufi_stat.1.in │ ├── gufi_stats.1.in │ ├── gufi_trace2index.1.in │ ├── gufi_treesummary.1.in │ ├── gufi_treesummary_all.1.in │ └── querydbs.1.in ├── presentations │ ├── LA-UR-19-24645.pdf │ ├── LA-UR-19-29542.pdf │ ├── LA-UR-22-26715.pdf │ └── LA-UR-23-24629.pdf ├── querydbs └── tests ├── examples ├── CMakeLists.txt ├── deluidgidsummaryrecs ├── deploy │ └── simple │ │ ├── README.md │ │ └── deployment-simple.svg ├── diffreadirplusdb ├── example_run ├── generategidsummary ├── generateuidsummary ├── gengidsummaryavoidentriesscan ├── genuidsummaryavoidentriesscan ├── groupfilespacehog ├── groupfilespacehogusesummary ├── gui │ └── open-ondemand │ │ ├── app.py │ │ ├── bin │ │ └── python │ │ ├── lib │ │ └── gufi_interface.py │ │ ├── manifest.yml │ │ ├── parameters.py │ │ ├── passenger_wsgi.py │ │ ├── readme.md │ │ ├── requirements.txt │ │ └── templates │ │ ├── components │ │ ├── breadcrumb.html │ │ ├── find_form.html │ │ ├── find_results.html │ │ ├── form_field.html │ │ ├── info.html │ │ └── ls_table.html │ │ ├── layout.html │ │ └── views │ │ ├── error.html │ │ ├── find_view.html │ │ ├── home.html │ │ └── ls_view.html ├── listschemadb ├── listtablesdb ├── oldbigfiles ├── userfilespacehog └── userfilespacehogusesummary ├── include ├── BottomUp.h ├── OutputBuffers.h ├── QueuePerThreadPool.h ├── SinglyLinkedList.h ├── addqueryfuncs.h ├── bf.h ├── compress.h ├── config.h ├── dbutils.h ├── debug.h ├── descend.h ├── external.h ├── gpfs_lweTypes.h ├── gufi_find_outliers │ ├── DirData.h │ ├── OutlierWork.h │ ├── PoolArgs.h │ ├── get_subdirs.h │ ├── handle_columns.h │ ├── handle_db.h │ └── processdir.h ├── gufi_incremental_update │ ├── PoolArgs.h │ ├── aggregate.h │ └── incremental_update.h ├── gufi_query │ ├── PoolArgs.h │ ├── aggregate.h │ ├── external.h │ ├── gqw.h │ ├── handle_sql.h │ ├── process_queries.h │ ├── processdir.h │ ├── query.h │ ├── query_replacement.h │ └── query_user_strs.h ├── histogram.h ├── mygpfs.h ├── outfiles.h ├── plugin.h ├── popen_argv.h ├── print.h ├── str.h ├── swap.h ├── template_db.h ├── trace.h ├── trie.h ├── utils.h └── xattrs.h ├── scripts ├── CMakeLists.txt ├── bash_completion ├── distributed │ ├── CMakeLists.txt │ ├── find.sh.in │ ├── gufi_dir2index │ ├── gufi_dir2trace │ ├── gufi_distributed.py │ ├── gufi_query │ ├── gufi_rollup │ ├── gufi_treesummary_all │ ├── gufi_unrollup │ ├── parallel_find.sh.in │ └── template.sbatch.in ├── gufi_client ├── gufi_common.py ├── gufi_config.py ├── gufi_du ├── gufi_find ├── gufi_getfattr ├── gufi_jail ├── gufi_ls ├── gufi_query.py ├── gufi_stat ├── gufi_stats └── querydbs ├── src ├── BottomUp.c ├── CMakeLists.txt ├── OutputBuffers.c ├── QueuePerThreadPool.c ├── SinglyLinkedList.c ├── addqueryfuncs.c ├── bf.c ├── bffuse.c ├── bfresultfuse.c ├── compress.c ├── dbutils.c ├── debug.c ├── descend.c ├── dfw.c ├── external.c ├── gpfs-scan-listnew-out.c ├── gpfs-scan-listnew.c ├── gpfs-scan-tool.c ├── gufi_dir2index.c ├── gufi_dir2trace.c ├── gufi_find_outliers │ ├── DirData.c │ ├── OutlierWork.c │ ├── get_subdirs.c │ ├── handle_columns.c │ ├── handle_db.c │ ├── main.c │ └── processdir.c ├── gufi_incremental_update │ ├── PoolArgs.c │ ├── aggregate.c │ ├── find_suspects.c │ ├── gen_index_snapshot.c │ ├── incremental_update.c │ ├── main.c │ ├── parking_lot.c │ ├── reindex_dir.c │ └── snapshot.c ├── gufi_index2dir.c ├── gufi_query │ ├── PoolArgs.c │ ├── aggregate.c │ ├── external.c │ ├── gqw.c │ ├── handle_sql.c │ ├── main.c │ ├── process_queries.c │ ├── processdir.c │ ├── query.c │ ├── query_replacement.c │ └── query_user_strs.c ├── gufi_rollup.c ├── gufi_sqlite3.c ├── gufi_stat.c ├── gufi_top_info.c ├── gufi_trace2dir.c ├── gufi_trace2index.c ├── gufi_treesummary.c ├── gufi_treesummary_all.c ├── gufi_unrollup.c ├── gufi_vt.c ├── histogram.c ├── outfiles.c ├── parallel_cpr.c ├── parallel_find.c ├── parallel_rmr.c ├── popen_argv.c ├── print.c ├── run_vt.c ├── str.c ├── swap.c ├── template_db.c ├── trace.c ├── trie.c ├── utils.c └── xattrs.c └── test ├── CMakeLists.txt ├── bfwiflat2gufitest ├── deluidgidsummaryrecs ├── dfw2gufitest ├── generategidsummary ├── generateuidsummary ├── gengidsummaryavoidentriesscan ├── genuidsummaryavoidentriesscan ├── groupfilespacehogusesummary ├── gufitest.py ├── insuspectfile ├── insuspectfonlyfile ├── regression ├── CMakeLists.txt ├── README.md ├── bash_completion.expected ├── bash_completion.sh.in ├── compression.expected ├── compression.sh.in ├── deluidgidsummaryrecs.expected ├── deluidgidsummaryrecs.sh.in ├── deploy.expected ├── deploy.sh.in ├── external_databases.expected ├── external_databases.sh.in ├── generategidsummary.expected ├── generategidsummary.sh.in ├── generatetree.sh.in ├── generateuidsummary.expected ├── generateuidsummary.sh.in ├── gengidsummaryavoidentriesscan.expected ├── gengidsummaryavoidentriesscan.sh.in ├── genuidsummaryavoidentriesscan.expected ├── genuidsummaryavoidentriesscan.sh.in ├── groupfilespacehog.expected ├── groupfilespacehog.sh.in ├── groupfilespacehogusesummary.expected ├── groupfilespacehogusesummary.sh.in ├── gufi_dir2index.expected ├── gufi_dir2index.sh.in ├── gufi_dir2trace.expected ├── gufi_dir2trace.sh.in ├── gufi_distributed.expected ├── gufi_distributed.sh.in ├── gufi_du.expected ├── gufi_du.sh.in ├── gufi_find.expected ├── gufi_find.sh.in ├── gufi_find_outliers.expected ├── gufi_find_outliers.sh.in ├── gufi_getfattr.expected ├── gufi_getfattr.sh.in ├── gufi_incremental_update.expected ├── gufi_incremental_update.sh.in ├── gufi_index2dir.expected ├── gufi_index2dir.sh.in ├── gufi_jail.expected ├── gufi_jail.sh.in ├── gufi_ls.expected ├── gufi_ls.sh.in ├── gufi_plugin.expected ├── gufi_plugin.sh.in ├── gufi_query.expected ├── gufi_query.py.expected ├── gufi_query.py.sh.in ├── gufi_query.sh.in ├── gufi_rollup.expected ├── gufi_rollup.sh.in ├── gufi_sqlite3.expected ├── gufi_sqlite3.sh.in ├── gufi_stat.expected ├── gufi_stat.sh.in ├── gufi_stat_bin.expected ├── gufi_stat_bin.sh.in ├── gufi_stats.expected ├── gufi_stats.sh.in ├── gufi_tool.py.in ├── gufi_top_info.expected ├── gufi_top_info.sh.in ├── gufi_trace2dir.expected ├── gufi_trace2dir.sh.in ├── gufi_trace2index.expected ├── gufi_trace2index.sh.in ├── gufi_treesummary.expected ├── gufi_treesummary.sh.in ├── gufi_treesummary_all.expected ├── gufi_treesummary_all.sh.in ├── gufi_unrollup.expected ├── gufi_unrollup.sh.in ├── gufi_vt.common ├── gufi_vt.expected ├── gufi_vt.sh.in ├── gufi_vt_pugsql.expected ├── gufi_vt_pugsql.py.in ├── gufi_vt_pugsql.sh.in ├── gufi_vt_sqlalchemy.expected ├── gufi_vt_sqlalchemy.py.in ├── gufi_vt_sqlalchemy.sh.in ├── hexlify.py.in ├── longitudinal_snapshot.expected ├── longitudinal_snapshot.sh.in ├── oldbigfiles.expected ├── oldbigfiles.sh.in ├── os_specific.sh.in ├── parallel_cpr.expected ├── parallel_cpr.sh.in ├── parallel_find.expected ├── parallel_find.sh.in ├── parallel_rmr.expected ├── parallel_rmr.sh.in ├── querydbs.expected ├── querydbs.sh.in ├── rollup_tree.sh.in ├── run_vt.expected ├── run_vt.sh.in ├── sbatch.fake.in ├── setup.sh.in ├── ssh.fake.in ├── treediff.expected ├── treediff.sh.in ├── userfilespacehog.expected ├── userfilespacehog.sh.in ├── userfilespacehogusesummary.expected ├── userfilespacehogusesummary.sh.in ├── verifytrace.expected ├── verifytrace.sh.in ├── verifytraceintree.expected ├── verifytraceintree.sh.in ├── xattrs.expected └── xattrs.sh.in ├── robinhoodin ├── runbffuse ├── runbfq ├── runbfqforfuse ├── runbfti ├── runbfwi ├── rundfw ├── rungenuidgidsummaryavoidentriesscan ├── rungroupfilespacehog ├── rungroupfilespacehogusesummary ├── runlistschemadb ├── runlisttablesdb ├── runoldbigfiles ├── runquerydbs ├── runtests ├── runuidgidsummary ├── runuidgidummary ├── runuserfilespacehog ├── runuserfilespacehogusesummary ├── test_plugin.c ├── testbfwi ├── testdir.tar └── unit ├── CMakeLists.txt ├── googletest ├── BottomUp.cpp.in ├── CMakeLists.txt ├── OutputBuffers.cpp ├── PoolArgs.cpp ├── QueuePerThreadPool.cpp ├── SinglyLinkedList.cpp ├── addqueryfuncs.cpp ├── aggregate.cpp.in ├── bf.cpp ├── compress.cpp ├── dbutils.cpp.in ├── debug.cpp ├── descend.cpp.in ├── external.cpp.in ├── handle_sql.cpp ├── histogram.cpp ├── main.cpp ├── popen_argv.cpp ├── print.cpp ├── query_user_str.cpp ├── str.cpp ├── swap.cpp ├── template_db.cpp ├── trace.cpp ├── trie.cpp ├── utils.cpp.in ├── valgrind.suppressions └── xattrs.cpp └── python ├── CMakeLists.txt ├── test_gufi_common.py └── test_gufi_config.py /.github/.codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/.github/.codecov.yaml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/.github/workflows/install.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/README.md -------------------------------------------------------------------------------- /config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/config/CMakeLists.txt -------------------------------------------------------------------------------- /config/client.example.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/config/client.example.in -------------------------------------------------------------------------------- /config/server.example.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/config/server.example.in -------------------------------------------------------------------------------- /contrib/CI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/CI/almalinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/almalinux.sh -------------------------------------------------------------------------------- /contrib/CI/alpine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/alpine.sh -------------------------------------------------------------------------------- /contrib/CI/centos7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/centos7.sh -------------------------------------------------------------------------------- /contrib/CI/centos8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/centos8.sh -------------------------------------------------------------------------------- /contrib/CI/cmake-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/cmake-download.sh -------------------------------------------------------------------------------- /contrib/CI/generic_rpm.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/generic_rpm.sh.in -------------------------------------------------------------------------------- /contrib/CI/macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/macos.sh -------------------------------------------------------------------------------- /contrib/CI/requirements.txt: -------------------------------------------------------------------------------- 1 | pugsql 2 | sqlalchemy 3 | -------------------------------------------------------------------------------- /contrib/CI/rockylinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/rockylinux.sh -------------------------------------------------------------------------------- /contrib/CI/rpms.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/rpms.sh.in -------------------------------------------------------------------------------- /contrib/CI/suse12.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/suse12.3.sh -------------------------------------------------------------------------------- /contrib/CI/ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CI/ubuntu.sh -------------------------------------------------------------------------------- /contrib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/canned_queries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/canned_queries.sh -------------------------------------------------------------------------------- /contrib/cmake/FindXATTR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/cmake/FindXATTR.cmake -------------------------------------------------------------------------------- /contrib/cmake/UseLATEX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/cmake/UseLATEX.cmake -------------------------------------------------------------------------------- /contrib/deps/googletest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/googletest.sh -------------------------------------------------------------------------------- /contrib/deps/googletest.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/googletest.tar.gz -------------------------------------------------------------------------------- /contrib/deps/install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/install_deps.sh -------------------------------------------------------------------------------- /contrib/deps/jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/jemalloc.sh -------------------------------------------------------------------------------- /contrib/deps/jemalloc.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/jemalloc.tar.gz -------------------------------------------------------------------------------- /contrib/deps/sqlite-autoconf-3270200.open.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite-autoconf-3270200.open.patch -------------------------------------------------------------------------------- /contrib/deps/sqlite-autoconf-3430100.max_attach.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite-autoconf-3430100.max_attach.patch -------------------------------------------------------------------------------- /contrib/deps/sqlite-autoconf-3430100.pathname.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite-autoconf-3430100.pathname.patch -------------------------------------------------------------------------------- /contrib/deps/sqlite-autoconf-3430100.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite-autoconf-3430100.tar.gz -------------------------------------------------------------------------------- /contrib/deps/sqlite-lembed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite-lembed.patch -------------------------------------------------------------------------------- /contrib/deps/sqlite-lembed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite-lembed.sh -------------------------------------------------------------------------------- /contrib/deps/sqlite-vec.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite-vec.patch -------------------------------------------------------------------------------- /contrib/deps/sqlite-vec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite-vec.sh -------------------------------------------------------------------------------- /contrib/deps/sqlite-vec.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite-vec.tar.gz -------------------------------------------------------------------------------- /contrib/deps/sqlite3-pcre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite3-pcre.sh -------------------------------------------------------------------------------- /contrib/deps/sqlite3-pcre.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite3-pcre.tar.gz -------------------------------------------------------------------------------- /contrib/deps/sqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/deps/sqlite3.sh -------------------------------------------------------------------------------- /contrib/gendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/gendir.c -------------------------------------------------------------------------------- /contrib/gentrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/gentrace.py -------------------------------------------------------------------------------- /contrib/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/hashes.py -------------------------------------------------------------------------------- /contrib/lustre_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/lustre_plugin.c -------------------------------------------------------------------------------- /contrib/make_testindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/make_testindex.cpp -------------------------------------------------------------------------------- /contrib/pylint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/pylint.sh -------------------------------------------------------------------------------- /contrib/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/shellcheck.sh -------------------------------------------------------------------------------- /contrib/stats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/stats/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/stats/per-level.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/stats/per-level.sh -------------------------------------------------------------------------------- /contrib/stats/process-per-level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/stats/process-per-level.py -------------------------------------------------------------------------------- /contrib/stats/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/stats/snapshot.py -------------------------------------------------------------------------------- /contrib/trace_anonymizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/trace_anonymizer.py -------------------------------------------------------------------------------- /contrib/treediff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/treediff.c -------------------------------------------------------------------------------- /contrib/verifytrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/verifytrace.cpp -------------------------------------------------------------------------------- /contrib/verifytraceintree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/contrib/verifytraceintree.cpp -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/GPFStoGUFI.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/GPFStoGUFI.pptx -------------------------------------------------------------------------------- /docs/GUFI-SQL.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/GUFI-SQL.docx -------------------------------------------------------------------------------- /docs/GUFI.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/GUFI.docx -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TBD.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/TBD.docx -------------------------------------------------------------------------------- /docs/bffuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/bffuse -------------------------------------------------------------------------------- /docs/bfresultfuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/bfresultfuse -------------------------------------------------------------------------------- /docs/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/config -------------------------------------------------------------------------------- /docs/dfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/dfw -------------------------------------------------------------------------------- /docs/gufi_dir2index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/gufi_dir2index -------------------------------------------------------------------------------- /docs/gufi_dir2trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/gufi_dir2trace -------------------------------------------------------------------------------- /docs/gufi_query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/gufi_query -------------------------------------------------------------------------------- /docs/gufi_trace2index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/gufi_trace2index -------------------------------------------------------------------------------- /docs/gufi_treesummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/gufi_treesummary -------------------------------------------------------------------------------- /docs/latex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/CMakeLists.txt -------------------------------------------------------------------------------- /docs/latex/GUFIText.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/GUFIText.sty -------------------------------------------------------------------------------- /docs/latex/gufi_administrator.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/gufi_administrator.tex -------------------------------------------------------------------------------- /docs/latex/gufi_developer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/gufi_developer.tex -------------------------------------------------------------------------------- /docs/latex/gufi_quickstart.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/gufi_quickstart.tex -------------------------------------------------------------------------------- /docs/latex/gufi_user.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/gufi_user.tex -------------------------------------------------------------------------------- /docs/latex/images/Database_Schemas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/Database_Schemas.png -------------------------------------------------------------------------------- /docs/latex/images/ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/ascending.png -------------------------------------------------------------------------------- /docs/latex/images/drawio_diagrams/Database_Schemas.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/drawio_diagrams/Database_Schemas.drawio -------------------------------------------------------------------------------- /docs/latex/images/drawio_diagrams/ascend.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/drawio_diagrams/ascend.drawio -------------------------------------------------------------------------------- /docs/latex/images/drawio_diagrams/gufi_dir2index.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/drawio_diagrams/gufi_dir2index.drawio -------------------------------------------------------------------------------- /docs/latex/images/drawio_diagrams/gufi_query.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/drawio_diagrams/gufi_query.drawio -------------------------------------------------------------------------------- /docs/latex/images/drawio_diagrams/gufi_query_processdir.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/drawio_diagrams/gufi_query_processdir.drawio -------------------------------------------------------------------------------- /docs/latex/images/drawio_diagrams/querydb_macro.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/drawio_diagrams/querydb_macro.drawio -------------------------------------------------------------------------------- /docs/latex/images/drawio_diagrams/rollup.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/drawio_diagrams/rollup.drawio -------------------------------------------------------------------------------- /docs/latex/images/drawio_diagrams/rollup_function.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/drawio_diagrams/rollup_function.drawio -------------------------------------------------------------------------------- /docs/latex/images/gufi_dir2index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/gufi_dir2index.png -------------------------------------------------------------------------------- /docs/latex/images/gufi_query_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/gufi_query_main.png -------------------------------------------------------------------------------- /docs/latex/images/gufi_query_processdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/gufi_query_processdir.png -------------------------------------------------------------------------------- /docs/latex/images/gufi_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/gufi_structure.png -------------------------------------------------------------------------------- /docs/latex/images/querydb_macro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/querydb_macro.png -------------------------------------------------------------------------------- /docs/latex/images/rollup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/rollup.png -------------------------------------------------------------------------------- /docs/latex/images/rollup_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/images/rollup_function.png -------------------------------------------------------------------------------- /docs/latex/sections/addqueryfuncs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/addqueryfuncs.tex -------------------------------------------------------------------------------- /docs/latex/sections/bottomup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/bottomup.tex -------------------------------------------------------------------------------- /docs/latex/sections/build.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/build.tex -------------------------------------------------------------------------------- /docs/latex/sections/dependencies.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/dependencies.tex -------------------------------------------------------------------------------- /docs/latex/sections/deploy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/deploy.tex -------------------------------------------------------------------------------- /docs/latex/sections/design.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/design.tex -------------------------------------------------------------------------------- /docs/latex/sections/distributed.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/distributed.tex -------------------------------------------------------------------------------- /docs/latex/sections/download.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/download.tex -------------------------------------------------------------------------------- /docs/latex/sections/external_databases.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/external_databases.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_dir2index.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_dir2index.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_dir2trace.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_dir2trace.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_du.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_du.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_find.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_find.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_ls.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_ls.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_query.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_query.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_sqlite3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_sqlite3.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_stat.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_stat.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_stat_bin.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_stat_bin.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_stats.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_stats.tex -------------------------------------------------------------------------------- /docs/latex/sections/gufi_trace2index.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/gufi_trace2index.tex -------------------------------------------------------------------------------- /docs/latex/sections/implementation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/implementation.tex -------------------------------------------------------------------------------- /docs/latex/sections/indexing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/indexing.tex -------------------------------------------------------------------------------- /docs/latex/sections/install.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/install.tex -------------------------------------------------------------------------------- /docs/latex/sections/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/introduction.tex -------------------------------------------------------------------------------- /docs/latex/sections/license.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/license.tex -------------------------------------------------------------------------------- /docs/latex/sections/optimizations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/optimizations.tex -------------------------------------------------------------------------------- /docs/latex/sections/postindexing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/postindexing.tex -------------------------------------------------------------------------------- /docs/latex/sections/printing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/printing.tex -------------------------------------------------------------------------------- /docs/latex/sections/qptp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/qptp.tex -------------------------------------------------------------------------------- /docs/latex/sections/querydbs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/querydbs.tex -------------------------------------------------------------------------------- /docs/latex/sections/querying.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/querying.tex -------------------------------------------------------------------------------- /docs/latex/sections/quickstart.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/quickstart.tex -------------------------------------------------------------------------------- /docs/latex/sections/reconstruct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/reconstruct.tex -------------------------------------------------------------------------------- /docs/latex/sections/requirements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/requirements.tex -------------------------------------------------------------------------------- /docs/latex/sections/rollup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/rollup.tex -------------------------------------------------------------------------------- /docs/latex/sections/schema.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/schema.tex -------------------------------------------------------------------------------- /docs/latex/sections/tracefile.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/tracefile.tex -------------------------------------------------------------------------------- /docs/latex/sections/treesummary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/treesummary.tex -------------------------------------------------------------------------------- /docs/latex/sections/user_env.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/user_env.tex -------------------------------------------------------------------------------- /docs/latex/sections/utility.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/utility.tex -------------------------------------------------------------------------------- /docs/latex/sections/virtual_tables.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/virtual_tables.tex -------------------------------------------------------------------------------- /docs/latex/sections/xattrs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/latex/sections/xattrs.tex -------------------------------------------------------------------------------- /docs/make_testindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/make_testindex -------------------------------------------------------------------------------- /docs/man/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/CMakeLists.txt -------------------------------------------------------------------------------- /docs/man/gufi_dir2index.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_dir2index.1.in -------------------------------------------------------------------------------- /docs/man/gufi_dir2trace.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_dir2trace.1.in -------------------------------------------------------------------------------- /docs/man/gufi_du.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_du.1.in -------------------------------------------------------------------------------- /docs/man/gufi_find.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_find.1.in -------------------------------------------------------------------------------- /docs/man/gufi_incremental_update.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_incremental_update.1.in -------------------------------------------------------------------------------- /docs/man/gufi_ls.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_ls.1.in -------------------------------------------------------------------------------- /docs/man/gufi_query.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_query.1.in -------------------------------------------------------------------------------- /docs/man/gufi_sqlite3.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_sqlite3.1.in -------------------------------------------------------------------------------- /docs/man/gufi_stat.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_stat.1.in -------------------------------------------------------------------------------- /docs/man/gufi_stats.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_stats.1.in -------------------------------------------------------------------------------- /docs/man/gufi_trace2index.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_trace2index.1.in -------------------------------------------------------------------------------- /docs/man/gufi_treesummary.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_treesummary.1.in -------------------------------------------------------------------------------- /docs/man/gufi_treesummary_all.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/gufi_treesummary_all.1.in -------------------------------------------------------------------------------- /docs/man/querydbs.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/man/querydbs.1.in -------------------------------------------------------------------------------- /docs/presentations/LA-UR-19-24645.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/presentations/LA-UR-19-24645.pdf -------------------------------------------------------------------------------- /docs/presentations/LA-UR-19-29542.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/presentations/LA-UR-19-29542.pdf -------------------------------------------------------------------------------- /docs/presentations/LA-UR-22-26715.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/presentations/LA-UR-22-26715.pdf -------------------------------------------------------------------------------- /docs/presentations/LA-UR-23-24629.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/presentations/LA-UR-23-24629.pdf -------------------------------------------------------------------------------- /docs/querydbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/querydbs -------------------------------------------------------------------------------- /docs/tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/docs/tests -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/deluidgidsummaryrecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/deluidgidsummaryrecs -------------------------------------------------------------------------------- /examples/deploy/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/deploy/simple/README.md -------------------------------------------------------------------------------- /examples/deploy/simple/deployment-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/deploy/simple/deployment-simple.svg -------------------------------------------------------------------------------- /examples/diffreadirplusdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/diffreadirplusdb -------------------------------------------------------------------------------- /examples/example_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/example_run -------------------------------------------------------------------------------- /examples/generategidsummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/generategidsummary -------------------------------------------------------------------------------- /examples/generateuidsummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/generateuidsummary -------------------------------------------------------------------------------- /examples/gengidsummaryavoidentriesscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gengidsummaryavoidentriesscan -------------------------------------------------------------------------------- /examples/genuidsummaryavoidentriesscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/genuidsummaryavoidentriesscan -------------------------------------------------------------------------------- /examples/groupfilespacehog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/groupfilespacehog -------------------------------------------------------------------------------- /examples/groupfilespacehogusesummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/groupfilespacehogusesummary -------------------------------------------------------------------------------- /examples/gui/open-ondemand/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/app.py -------------------------------------------------------------------------------- /examples/gui/open-ondemand/bin/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/bin/python -------------------------------------------------------------------------------- /examples/gui/open-ondemand/lib/gufi_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/lib/gufi_interface.py -------------------------------------------------------------------------------- /examples/gui/open-ondemand/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/manifest.yml -------------------------------------------------------------------------------- /examples/gui/open-ondemand/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/parameters.py -------------------------------------------------------------------------------- /examples/gui/open-ondemand/passenger_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/passenger_wsgi.py -------------------------------------------------------------------------------- /examples/gui/open-ondemand/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/readme.md -------------------------------------------------------------------------------- /examples/gui/open-ondemand/requirements.txt: -------------------------------------------------------------------------------- 1 | # requirements.txt 2 | flask -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/components/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/components/breadcrumb.html -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/components/find_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/components/find_form.html -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/components/find_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/components/find_results.html -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/components/form_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/components/form_field.html -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/components/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/components/info.html -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/components/ls_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/components/ls_table.html -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/layout.html -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/views/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/views/error.html -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/views/find_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/views/find_view.html -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/views/home.html -------------------------------------------------------------------------------- /examples/gui/open-ondemand/templates/views/ls_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/gui/open-ondemand/templates/views/ls_view.html -------------------------------------------------------------------------------- /examples/listschemadb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/listschemadb -------------------------------------------------------------------------------- /examples/listtablesdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/listtablesdb -------------------------------------------------------------------------------- /examples/oldbigfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/oldbigfiles -------------------------------------------------------------------------------- /examples/userfilespacehog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/userfilespacehog -------------------------------------------------------------------------------- /examples/userfilespacehogusesummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/examples/userfilespacehogusesummary -------------------------------------------------------------------------------- /include/BottomUp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/BottomUp.h -------------------------------------------------------------------------------- /include/OutputBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/OutputBuffers.h -------------------------------------------------------------------------------- /include/QueuePerThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/QueuePerThreadPool.h -------------------------------------------------------------------------------- /include/SinglyLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/SinglyLinkedList.h -------------------------------------------------------------------------------- /include/addqueryfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/addqueryfuncs.h -------------------------------------------------------------------------------- /include/bf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/bf.h -------------------------------------------------------------------------------- /include/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/compress.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/config.h -------------------------------------------------------------------------------- /include/dbutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/dbutils.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/descend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/descend.h -------------------------------------------------------------------------------- /include/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/external.h -------------------------------------------------------------------------------- /include/gpfs_lweTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gpfs_lweTypes.h -------------------------------------------------------------------------------- /include/gufi_find_outliers/DirData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_find_outliers/DirData.h -------------------------------------------------------------------------------- /include/gufi_find_outliers/OutlierWork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_find_outliers/OutlierWork.h -------------------------------------------------------------------------------- /include/gufi_find_outliers/PoolArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_find_outliers/PoolArgs.h -------------------------------------------------------------------------------- /include/gufi_find_outliers/get_subdirs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_find_outliers/get_subdirs.h -------------------------------------------------------------------------------- /include/gufi_find_outliers/handle_columns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_find_outliers/handle_columns.h -------------------------------------------------------------------------------- /include/gufi_find_outliers/handle_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_find_outliers/handle_db.h -------------------------------------------------------------------------------- /include/gufi_find_outliers/processdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_find_outliers/processdir.h -------------------------------------------------------------------------------- /include/gufi_incremental_update/PoolArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_incremental_update/PoolArgs.h -------------------------------------------------------------------------------- /include/gufi_incremental_update/aggregate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_incremental_update/aggregate.h -------------------------------------------------------------------------------- /include/gufi_incremental_update/incremental_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_incremental_update/incremental_update.h -------------------------------------------------------------------------------- /include/gufi_query/PoolArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_query/PoolArgs.h -------------------------------------------------------------------------------- /include/gufi_query/aggregate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_query/aggregate.h -------------------------------------------------------------------------------- /include/gufi_query/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_query/external.h -------------------------------------------------------------------------------- /include/gufi_query/gqw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_query/gqw.h -------------------------------------------------------------------------------- /include/gufi_query/handle_sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_query/handle_sql.h -------------------------------------------------------------------------------- /include/gufi_query/process_queries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_query/process_queries.h -------------------------------------------------------------------------------- /include/gufi_query/processdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_query/processdir.h -------------------------------------------------------------------------------- /include/gufi_query/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_query/query.h -------------------------------------------------------------------------------- /include/gufi_query/query_replacement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_query/query_replacement.h -------------------------------------------------------------------------------- /include/gufi_query/query_user_strs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/gufi_query/query_user_strs.h -------------------------------------------------------------------------------- /include/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/histogram.h -------------------------------------------------------------------------------- /include/mygpfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/mygpfs.h -------------------------------------------------------------------------------- /include/outfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/outfiles.h -------------------------------------------------------------------------------- /include/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/plugin.h -------------------------------------------------------------------------------- /include/popen_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/popen_argv.h -------------------------------------------------------------------------------- /include/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/print.h -------------------------------------------------------------------------------- /include/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/str.h -------------------------------------------------------------------------------- /include/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/swap.h -------------------------------------------------------------------------------- /include/template_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/template_db.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/trie.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/utils.h -------------------------------------------------------------------------------- /include/xattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/include/xattrs.h -------------------------------------------------------------------------------- /scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/bash_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/bash_completion -------------------------------------------------------------------------------- /scripts/distributed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/distributed/find.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/find.sh.in -------------------------------------------------------------------------------- /scripts/distributed/gufi_dir2index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/gufi_dir2index -------------------------------------------------------------------------------- /scripts/distributed/gufi_dir2trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/gufi_dir2trace -------------------------------------------------------------------------------- /scripts/distributed/gufi_distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/gufi_distributed.py -------------------------------------------------------------------------------- /scripts/distributed/gufi_query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/gufi_query -------------------------------------------------------------------------------- /scripts/distributed/gufi_rollup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/gufi_rollup -------------------------------------------------------------------------------- /scripts/distributed/gufi_treesummary_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/gufi_treesummary_all -------------------------------------------------------------------------------- /scripts/distributed/gufi_unrollup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/gufi_unrollup -------------------------------------------------------------------------------- /scripts/distributed/parallel_find.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/parallel_find.sh.in -------------------------------------------------------------------------------- /scripts/distributed/template.sbatch.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/distributed/template.sbatch.in -------------------------------------------------------------------------------- /scripts/gufi_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_client -------------------------------------------------------------------------------- /scripts/gufi_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_common.py -------------------------------------------------------------------------------- /scripts/gufi_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_config.py -------------------------------------------------------------------------------- /scripts/gufi_du: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_du -------------------------------------------------------------------------------- /scripts/gufi_find: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_find -------------------------------------------------------------------------------- /scripts/gufi_getfattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_getfattr -------------------------------------------------------------------------------- /scripts/gufi_jail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_jail -------------------------------------------------------------------------------- /scripts/gufi_ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_ls -------------------------------------------------------------------------------- /scripts/gufi_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_query.py -------------------------------------------------------------------------------- /scripts/gufi_stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_stat -------------------------------------------------------------------------------- /scripts/gufi_stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/gufi_stats -------------------------------------------------------------------------------- /scripts/querydbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/scripts/querydbs -------------------------------------------------------------------------------- /src/BottomUp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/BottomUp.c -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/OutputBuffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/OutputBuffers.c -------------------------------------------------------------------------------- /src/QueuePerThreadPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/QueuePerThreadPool.c -------------------------------------------------------------------------------- /src/SinglyLinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/SinglyLinkedList.c -------------------------------------------------------------------------------- /src/addqueryfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/addqueryfuncs.c -------------------------------------------------------------------------------- /src/bf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/bf.c -------------------------------------------------------------------------------- /src/bffuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/bffuse.c -------------------------------------------------------------------------------- /src/bfresultfuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/bfresultfuse.c -------------------------------------------------------------------------------- /src/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/compress.c -------------------------------------------------------------------------------- /src/dbutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/dbutils.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/descend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/descend.c -------------------------------------------------------------------------------- /src/dfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/dfw.c -------------------------------------------------------------------------------- /src/external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/external.c -------------------------------------------------------------------------------- /src/gpfs-scan-listnew-out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gpfs-scan-listnew-out.c -------------------------------------------------------------------------------- /src/gpfs-scan-listnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gpfs-scan-listnew.c -------------------------------------------------------------------------------- /src/gpfs-scan-tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gpfs-scan-tool.c -------------------------------------------------------------------------------- /src/gufi_dir2index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_dir2index.c -------------------------------------------------------------------------------- /src/gufi_dir2trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_dir2trace.c -------------------------------------------------------------------------------- /src/gufi_find_outliers/DirData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_find_outliers/DirData.c -------------------------------------------------------------------------------- /src/gufi_find_outliers/OutlierWork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_find_outliers/OutlierWork.c -------------------------------------------------------------------------------- /src/gufi_find_outliers/get_subdirs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_find_outliers/get_subdirs.c -------------------------------------------------------------------------------- /src/gufi_find_outliers/handle_columns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_find_outliers/handle_columns.c -------------------------------------------------------------------------------- /src/gufi_find_outliers/handle_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_find_outliers/handle_db.c -------------------------------------------------------------------------------- /src/gufi_find_outliers/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_find_outliers/main.c -------------------------------------------------------------------------------- /src/gufi_find_outliers/processdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_find_outliers/processdir.c -------------------------------------------------------------------------------- /src/gufi_incremental_update/PoolArgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_incremental_update/PoolArgs.c -------------------------------------------------------------------------------- /src/gufi_incremental_update/aggregate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_incremental_update/aggregate.c -------------------------------------------------------------------------------- /src/gufi_incremental_update/find_suspects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_incremental_update/find_suspects.c -------------------------------------------------------------------------------- /src/gufi_incremental_update/gen_index_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_incremental_update/gen_index_snapshot.c -------------------------------------------------------------------------------- /src/gufi_incremental_update/incremental_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_incremental_update/incremental_update.c -------------------------------------------------------------------------------- /src/gufi_incremental_update/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_incremental_update/main.c -------------------------------------------------------------------------------- /src/gufi_incremental_update/parking_lot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_incremental_update/parking_lot.c -------------------------------------------------------------------------------- /src/gufi_incremental_update/reindex_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_incremental_update/reindex_dir.c -------------------------------------------------------------------------------- /src/gufi_incremental_update/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_incremental_update/snapshot.c -------------------------------------------------------------------------------- /src/gufi_index2dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_index2dir.c -------------------------------------------------------------------------------- /src/gufi_query/PoolArgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/PoolArgs.c -------------------------------------------------------------------------------- /src/gufi_query/aggregate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/aggregate.c -------------------------------------------------------------------------------- /src/gufi_query/external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/external.c -------------------------------------------------------------------------------- /src/gufi_query/gqw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/gqw.c -------------------------------------------------------------------------------- /src/gufi_query/handle_sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/handle_sql.c -------------------------------------------------------------------------------- /src/gufi_query/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/main.c -------------------------------------------------------------------------------- /src/gufi_query/process_queries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/process_queries.c -------------------------------------------------------------------------------- /src/gufi_query/processdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/processdir.c -------------------------------------------------------------------------------- /src/gufi_query/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/query.c -------------------------------------------------------------------------------- /src/gufi_query/query_replacement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/query_replacement.c -------------------------------------------------------------------------------- /src/gufi_query/query_user_strs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_query/query_user_strs.c -------------------------------------------------------------------------------- /src/gufi_rollup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_rollup.c -------------------------------------------------------------------------------- /src/gufi_sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_sqlite3.c -------------------------------------------------------------------------------- /src/gufi_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_stat.c -------------------------------------------------------------------------------- /src/gufi_top_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_top_info.c -------------------------------------------------------------------------------- /src/gufi_trace2dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_trace2dir.c -------------------------------------------------------------------------------- /src/gufi_trace2index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_trace2index.c -------------------------------------------------------------------------------- /src/gufi_treesummary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_treesummary.c -------------------------------------------------------------------------------- /src/gufi_treesummary_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_treesummary_all.c -------------------------------------------------------------------------------- /src/gufi_unrollup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_unrollup.c -------------------------------------------------------------------------------- /src/gufi_vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/gufi_vt.c -------------------------------------------------------------------------------- /src/histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/histogram.c -------------------------------------------------------------------------------- /src/outfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/outfiles.c -------------------------------------------------------------------------------- /src/parallel_cpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/parallel_cpr.c -------------------------------------------------------------------------------- /src/parallel_find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/parallel_find.c -------------------------------------------------------------------------------- /src/parallel_rmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/parallel_rmr.c -------------------------------------------------------------------------------- /src/popen_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/popen_argv.c -------------------------------------------------------------------------------- /src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/print.c -------------------------------------------------------------------------------- /src/run_vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/run_vt.c -------------------------------------------------------------------------------- /src/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/str.c -------------------------------------------------------------------------------- /src/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/swap.c -------------------------------------------------------------------------------- /src/template_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/template_db.c -------------------------------------------------------------------------------- /src/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/trace.c -------------------------------------------------------------------------------- /src/trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/trie.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/xattrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/src/xattrs.c -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/bfwiflat2gufitest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/bfwiflat2gufitest -------------------------------------------------------------------------------- /test/deluidgidsummaryrecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/deluidgidsummaryrecs -------------------------------------------------------------------------------- /test/dfw2gufitest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/dfw2gufitest -------------------------------------------------------------------------------- /test/generategidsummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/generategidsummary -------------------------------------------------------------------------------- /test/generateuidsummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/generateuidsummary -------------------------------------------------------------------------------- /test/gengidsummaryavoidentriesscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/gengidsummaryavoidentriesscan -------------------------------------------------------------------------------- /test/genuidsummaryavoidentriesscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/genuidsummaryavoidentriesscan -------------------------------------------------------------------------------- /test/groupfilespacehogusesummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/groupfilespacehogusesummary -------------------------------------------------------------------------------- /test/gufitest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/gufitest.py -------------------------------------------------------------------------------- /test/insuspectfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/insuspectfile -------------------------------------------------------------------------------- /test/insuspectfonlyfile: -------------------------------------------------------------------------------- 1 | 8599949555 f 2 | -------------------------------------------------------------------------------- /test/regression/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/CMakeLists.txt -------------------------------------------------------------------------------- /test/regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/README.md -------------------------------------------------------------------------------- /test/regression/bash_completion.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/bash_completion.expected -------------------------------------------------------------------------------- /test/regression/bash_completion.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/bash_completion.sh.in -------------------------------------------------------------------------------- /test/regression/compression.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/compression.expected -------------------------------------------------------------------------------- /test/regression/compression.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/compression.sh.in -------------------------------------------------------------------------------- /test/regression/deluidgidsummaryrecs.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/deluidgidsummaryrecs.expected -------------------------------------------------------------------------------- /test/regression/deluidgidsummaryrecs.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/deluidgidsummaryrecs.sh.in -------------------------------------------------------------------------------- /test/regression/deploy.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/deploy.expected -------------------------------------------------------------------------------- /test/regression/deploy.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/deploy.sh.in -------------------------------------------------------------------------------- /test/regression/external_databases.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/external_databases.expected -------------------------------------------------------------------------------- /test/regression/external_databases.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/external_databases.sh.in -------------------------------------------------------------------------------- /test/regression/generategidsummary.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/generategidsummary.expected -------------------------------------------------------------------------------- /test/regression/generategidsummary.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/generategidsummary.sh.in -------------------------------------------------------------------------------- /test/regression/generatetree.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/generatetree.sh.in -------------------------------------------------------------------------------- /test/regression/generateuidsummary.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/generateuidsummary.expected -------------------------------------------------------------------------------- /test/regression/generateuidsummary.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/generateuidsummary.sh.in -------------------------------------------------------------------------------- /test/regression/gengidsummaryavoidentriesscan.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gengidsummaryavoidentriesscan.expected -------------------------------------------------------------------------------- /test/regression/gengidsummaryavoidentriesscan.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gengidsummaryavoidentriesscan.sh.in -------------------------------------------------------------------------------- /test/regression/genuidsummaryavoidentriesscan.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/genuidsummaryavoidentriesscan.expected -------------------------------------------------------------------------------- /test/regression/genuidsummaryavoidentriesscan.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/genuidsummaryavoidentriesscan.sh.in -------------------------------------------------------------------------------- /test/regression/groupfilespacehog.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/groupfilespacehog.expected -------------------------------------------------------------------------------- /test/regression/groupfilespacehog.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/groupfilespacehog.sh.in -------------------------------------------------------------------------------- /test/regression/groupfilespacehogusesummary.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/groupfilespacehogusesummary.expected -------------------------------------------------------------------------------- /test/regression/groupfilespacehogusesummary.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/groupfilespacehogusesummary.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_dir2index.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_dir2index.expected -------------------------------------------------------------------------------- /test/regression/gufi_dir2index.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_dir2index.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_dir2trace.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_dir2trace.expected -------------------------------------------------------------------------------- /test/regression/gufi_dir2trace.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_dir2trace.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_distributed.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_distributed.expected -------------------------------------------------------------------------------- /test/regression/gufi_distributed.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_distributed.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_du.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_du.expected -------------------------------------------------------------------------------- /test/regression/gufi_du.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_du.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_find.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_find.expected -------------------------------------------------------------------------------- /test/regression/gufi_find.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_find.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_find_outliers.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_find_outliers.expected -------------------------------------------------------------------------------- /test/regression/gufi_find_outliers.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_find_outliers.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_getfattr.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_getfattr.expected -------------------------------------------------------------------------------- /test/regression/gufi_getfattr.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_getfattr.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_incremental_update.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_incremental_update.expected -------------------------------------------------------------------------------- /test/regression/gufi_incremental_update.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_incremental_update.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_index2dir.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_index2dir.expected -------------------------------------------------------------------------------- /test/regression/gufi_index2dir.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_index2dir.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_jail.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_jail.expected -------------------------------------------------------------------------------- /test/regression/gufi_jail.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_jail.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_ls.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_ls.expected -------------------------------------------------------------------------------- /test/regression/gufi_ls.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_ls.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_plugin.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_plugin.expected -------------------------------------------------------------------------------- /test/regression/gufi_plugin.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_plugin.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_query.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_query.expected -------------------------------------------------------------------------------- /test/regression/gufi_query.py.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_query.py.expected -------------------------------------------------------------------------------- /test/regression/gufi_query.py.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_query.py.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_query.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_query.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_rollup.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_rollup.expected -------------------------------------------------------------------------------- /test/regression/gufi_rollup.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_rollup.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_sqlite3.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_sqlite3.expected -------------------------------------------------------------------------------- /test/regression/gufi_sqlite3.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_sqlite3.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_stat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_stat.expected -------------------------------------------------------------------------------- /test/regression/gufi_stat.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_stat.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_stat_bin.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_stat_bin.expected -------------------------------------------------------------------------------- /test/regression/gufi_stat_bin.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_stat_bin.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_stats.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_stats.expected -------------------------------------------------------------------------------- /test/regression/gufi_stats.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_stats.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_tool.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_tool.py.in -------------------------------------------------------------------------------- /test/regression/gufi_top_info.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_top_info.expected -------------------------------------------------------------------------------- /test/regression/gufi_top_info.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_top_info.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_trace2dir.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_trace2dir.expected -------------------------------------------------------------------------------- /test/regression/gufi_trace2dir.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_trace2dir.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_trace2index.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_trace2index.expected -------------------------------------------------------------------------------- /test/regression/gufi_trace2index.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_trace2index.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_treesummary.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_treesummary.expected -------------------------------------------------------------------------------- /test/regression/gufi_treesummary.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_treesummary.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_treesummary_all.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_treesummary_all.expected -------------------------------------------------------------------------------- /test/regression/gufi_treesummary_all.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_treesummary_all.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_unrollup.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_unrollup.expected -------------------------------------------------------------------------------- /test/regression/gufi_unrollup.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_unrollup.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_vt.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_vt.common -------------------------------------------------------------------------------- /test/regression/gufi_vt.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_vt.expected -------------------------------------------------------------------------------- /test/regression/gufi_vt.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_vt.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_vt_pugsql.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_vt_pugsql.expected -------------------------------------------------------------------------------- /test/regression/gufi_vt_pugsql.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_vt_pugsql.py.in -------------------------------------------------------------------------------- /test/regression/gufi_vt_pugsql.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_vt_pugsql.sh.in -------------------------------------------------------------------------------- /test/regression/gufi_vt_sqlalchemy.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_vt_sqlalchemy.expected -------------------------------------------------------------------------------- /test/regression/gufi_vt_sqlalchemy.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_vt_sqlalchemy.py.in -------------------------------------------------------------------------------- /test/regression/gufi_vt_sqlalchemy.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/gufi_vt_sqlalchemy.sh.in -------------------------------------------------------------------------------- /test/regression/hexlify.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/hexlify.py.in -------------------------------------------------------------------------------- /test/regression/longitudinal_snapshot.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/longitudinal_snapshot.expected -------------------------------------------------------------------------------- /test/regression/longitudinal_snapshot.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/longitudinal_snapshot.sh.in -------------------------------------------------------------------------------- /test/regression/oldbigfiles.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/oldbigfiles.expected -------------------------------------------------------------------------------- /test/regression/oldbigfiles.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/oldbigfiles.sh.in -------------------------------------------------------------------------------- /test/regression/os_specific.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/os_specific.sh.in -------------------------------------------------------------------------------- /test/regression/parallel_cpr.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/parallel_cpr.expected -------------------------------------------------------------------------------- /test/regression/parallel_cpr.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/parallel_cpr.sh.in -------------------------------------------------------------------------------- /test/regression/parallel_find.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/parallel_find.expected -------------------------------------------------------------------------------- /test/regression/parallel_find.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/parallel_find.sh.in -------------------------------------------------------------------------------- /test/regression/parallel_rmr.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/parallel_rmr.expected -------------------------------------------------------------------------------- /test/regression/parallel_rmr.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/parallel_rmr.sh.in -------------------------------------------------------------------------------- /test/regression/querydbs.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/querydbs.expected -------------------------------------------------------------------------------- /test/regression/querydbs.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/querydbs.sh.in -------------------------------------------------------------------------------- /test/regression/rollup_tree.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/rollup_tree.sh.in -------------------------------------------------------------------------------- /test/regression/run_vt.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/run_vt.expected -------------------------------------------------------------------------------- /test/regression/run_vt.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/run_vt.sh.in -------------------------------------------------------------------------------- /test/regression/sbatch.fake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/sbatch.fake.in -------------------------------------------------------------------------------- /test/regression/setup.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/setup.sh.in -------------------------------------------------------------------------------- /test/regression/ssh.fake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/ssh.fake.in -------------------------------------------------------------------------------- /test/regression/treediff.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/treediff.expected -------------------------------------------------------------------------------- /test/regression/treediff.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/treediff.sh.in -------------------------------------------------------------------------------- /test/regression/userfilespacehog.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/userfilespacehog.expected -------------------------------------------------------------------------------- /test/regression/userfilespacehog.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/userfilespacehog.sh.in -------------------------------------------------------------------------------- /test/regression/userfilespacehogusesummary.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/userfilespacehogusesummary.expected -------------------------------------------------------------------------------- /test/regression/userfilespacehogusesummary.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/userfilespacehogusesummary.sh.in -------------------------------------------------------------------------------- /test/regression/verifytrace.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/verifytrace.expected -------------------------------------------------------------------------------- /test/regression/verifytrace.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/verifytrace.sh.in -------------------------------------------------------------------------------- /test/regression/verifytraceintree.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/verifytraceintree.expected -------------------------------------------------------------------------------- /test/regression/verifytraceintree.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/verifytraceintree.sh.in -------------------------------------------------------------------------------- /test/regression/xattrs.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/xattrs.expected -------------------------------------------------------------------------------- /test/regression/xattrs.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/regression/xattrs.sh.in -------------------------------------------------------------------------------- /test/robinhoodin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/robinhoodin -------------------------------------------------------------------------------- /test/runbffuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runbffuse -------------------------------------------------------------------------------- /test/runbfq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runbfq -------------------------------------------------------------------------------- /test/runbfqforfuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runbfqforfuse -------------------------------------------------------------------------------- /test/runbfti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runbfti -------------------------------------------------------------------------------- /test/runbfwi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runbfwi -------------------------------------------------------------------------------- /test/rundfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/rundfw -------------------------------------------------------------------------------- /test/rungenuidgidsummaryavoidentriesscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/rungenuidgidsummaryavoidentriesscan -------------------------------------------------------------------------------- /test/rungroupfilespacehog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/rungroupfilespacehog -------------------------------------------------------------------------------- /test/rungroupfilespacehogusesummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/rungroupfilespacehogusesummary -------------------------------------------------------------------------------- /test/runlistschemadb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runlistschemadb -------------------------------------------------------------------------------- /test/runlisttablesdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runlisttablesdb -------------------------------------------------------------------------------- /test/runoldbigfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runoldbigfiles -------------------------------------------------------------------------------- /test/runquerydbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runquerydbs -------------------------------------------------------------------------------- /test/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runtests -------------------------------------------------------------------------------- /test/runuidgidsummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runuidgidsummary -------------------------------------------------------------------------------- /test/runuidgidummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runuidgidummary -------------------------------------------------------------------------------- /test/runuserfilespacehog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runuserfilespacehog -------------------------------------------------------------------------------- /test/runuserfilespacehogusesummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/runuserfilespacehogusesummary -------------------------------------------------------------------------------- /test/test_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/test_plugin.c -------------------------------------------------------------------------------- /test/testbfwi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/testbfwi -------------------------------------------------------------------------------- /test/testdir.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/testdir.tar -------------------------------------------------------------------------------- /test/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/googletest/BottomUp.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/BottomUp.cpp.in -------------------------------------------------------------------------------- /test/unit/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/googletest/OutputBuffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/OutputBuffers.cpp -------------------------------------------------------------------------------- /test/unit/googletest/PoolArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/PoolArgs.cpp -------------------------------------------------------------------------------- /test/unit/googletest/QueuePerThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/QueuePerThreadPool.cpp -------------------------------------------------------------------------------- /test/unit/googletest/SinglyLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/SinglyLinkedList.cpp -------------------------------------------------------------------------------- /test/unit/googletest/addqueryfuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/addqueryfuncs.cpp -------------------------------------------------------------------------------- /test/unit/googletest/aggregate.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/aggregate.cpp.in -------------------------------------------------------------------------------- /test/unit/googletest/bf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/bf.cpp -------------------------------------------------------------------------------- /test/unit/googletest/compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/compress.cpp -------------------------------------------------------------------------------- /test/unit/googletest/dbutils.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/dbutils.cpp.in -------------------------------------------------------------------------------- /test/unit/googletest/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/debug.cpp -------------------------------------------------------------------------------- /test/unit/googletest/descend.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/descend.cpp.in -------------------------------------------------------------------------------- /test/unit/googletest/external.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/external.cpp.in -------------------------------------------------------------------------------- /test/unit/googletest/handle_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/handle_sql.cpp -------------------------------------------------------------------------------- /test/unit/googletest/histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/histogram.cpp -------------------------------------------------------------------------------- /test/unit/googletest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/main.cpp -------------------------------------------------------------------------------- /test/unit/googletest/popen_argv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/popen_argv.cpp -------------------------------------------------------------------------------- /test/unit/googletest/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/print.cpp -------------------------------------------------------------------------------- /test/unit/googletest/query_user_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/query_user_str.cpp -------------------------------------------------------------------------------- /test/unit/googletest/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/str.cpp -------------------------------------------------------------------------------- /test/unit/googletest/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/swap.cpp -------------------------------------------------------------------------------- /test/unit/googletest/template_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/template_db.cpp -------------------------------------------------------------------------------- /test/unit/googletest/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/trace.cpp -------------------------------------------------------------------------------- /test/unit/googletest/trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/trie.cpp -------------------------------------------------------------------------------- /test/unit/googletest/utils.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/utils.cpp.in -------------------------------------------------------------------------------- /test/unit/googletest/valgrind.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/valgrind.suppressions -------------------------------------------------------------------------------- /test/unit/googletest/xattrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/googletest/xattrs.cpp -------------------------------------------------------------------------------- /test/unit/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/python/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/python/test_gufi_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/python/test_gufi_common.py -------------------------------------------------------------------------------- /test/unit/python/test_gufi_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mar-file-system/GUFI/HEAD/test/unit/python/test_gufi_config.py --------------------------------------------------------------------------------