├── .github ├── actions │ ├── code-coverage │ │ └── action.yml │ └── setup-adaptived │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── continuous-integration.yml │ └── isolated.yml ├── .gitmodules ├── README.md ├── adaptived ├── .checkpatch.conf ├── .gitignore ├── CHANGELOG.txt ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile.am ├── README.md ├── SECURITY.md ├── THIRD_PARTY_LICENSES.txt ├── autogen.sh ├── configure.ac ├── dist │ ├── .gitignore │ ├── Makefile.am │ └── adaptived.spec.in ├── doc │ ├── Makefile.am │ ├── examples │ │ ├── Makefile.am │ │ ├── adjust-weight.json │ │ ├── determine-memorylow.json │ │ ├── flow-chart.odp │ │ ├── flow-chart.png │ │ ├── jimmy-buffett-config.json │ │ ├── kill-lowpriority.json │ │ ├── lowmemfree-sendsignal.json │ │ └── topmem-savelogs.json │ └── internal │ │ ├── cgroup_setting_by_psi.md │ │ ├── human-readable.md │ │ ├── list-of-built-in-causes.md │ │ ├── list-of-built-in-effects.md │ │ └── path-rules.md ├── include │ ├── Makefile.am │ ├── adaptived-utils.h │ └── adaptived.h ├── m4 │ └── ax_code_coverage.m4 ├── sanity-check.sh ├── src │ ├── Makefile.am │ ├── adaptived-internal.h │ ├── cause.c │ ├── cause.h │ ├── causes │ │ ├── Makefile.am │ │ ├── always.c │ │ ├── cgroup_setting.c │ │ ├── days_of_the_week.c │ │ ├── meminfo.c │ │ ├── memorystat.c │ │ ├── periodic.c │ │ ├── pressure.c │ │ ├── pressure_rate.c │ │ ├── slabinfo.c │ │ ├── time_of_day.c │ │ └── top.c │ ├── defines.h │ ├── effect.c │ ├── effect.h │ ├── effects │ │ ├── cgroup_setting.c │ │ ├── cgroup_setting_by_psi.c │ │ ├── copy_cgroup_setting.c │ │ ├── kill_cgroup.c │ │ ├── kill_cgroup_by_psi.c │ │ ├── kill_processes.c │ │ ├── logger.c │ │ ├── print.c │ │ ├── print_schedstat.c │ │ ├── sd_bus_setting.c │ │ ├── snooze.c │ │ └── validate.c │ ├── log.c │ ├── main.c │ ├── parse.c │ ├── pressure.h │ ├── rule.c │ ├── shared_data.c │ ├── shared_data.h │ └── utils │ │ ├── Makefile.am │ │ ├── cgroup_utils.c │ │ ├── file_utils.c │ │ ├── float_utils.c │ │ ├── mem_utils.c │ │ ├── path_utils.c │ │ ├── pressure_utils.c │ │ ├── sched_utils.c │ │ └── sd_bus_utils.c └── tests │ ├── Makefile.am │ ├── ftests │ ├── .gitignore │ ├── 001-cause-time_of_day.json.token │ ├── 001-cause-time_of_day.py │ ├── 002-register_cause.c │ ├── 002-register_cause.json │ ├── 003-register_plugin_cause.c │ ├── 003-register_plugin_cause.json │ ├── 004-register_plugin_effect.c │ ├── 004-register_plugin_effect.json │ ├── 007-cause-avg300_pressure_above.c │ ├── 007-cause-avg300_pressure_above.json │ ├── 008-cause-pressure_above_total.c │ ├── 008-cause-pressure_above_total.json │ ├── 009-cause-pressure_below.c │ ├── 009-cause-pressure_below.json │ ├── 010-snooze_effect.c │ ├── 010-snooze_effect.json │ ├── 011-cause-pressure_rate_rising.c │ ├── 011-cause-pressure_rate_rising.json │ ├── 012-cause-pressure_rate_falling.c │ ├── 012-cause-pressure_rate_falling.json │ ├── 013-adaptived-asynchronous_loop.c │ ├── 013-adaptived-asynchronous_loop.json │ ├── 014-duplicate_cause_effect.c │ ├── 015-load_rule_at_runtime.c │ ├── 016-unload_rule_at_runtime.c │ ├── 017-register_many.c │ ├── 018-effect-cgroup_setting_set_str.c │ ├── 019-effect-cgroup_setting_set_int.c │ ├── 019-effect-cgroup_setting_set_int.json │ ├── 020-effect-cgroup_setting_add_int.c │ ├── 020-effect-cgroup_setting_add_int.json │ ├── 021-effect-cgroup_setting_sub_int.c │ ├── 021-effect-cgroup_setting_sub_int.json │ ├── 022-effect-kill_cgroup.c │ ├── 022-effect-kill_cgroup.json │ ├── 023-effect-kill_cgroup_recursive.c │ ├── 023-effect-kill_cgroup_recursive.json │ ├── 024-effect-kill_cgroup_by_psi.c │ ├── 024-effect-kill_cgroup_by_psi.json │ ├── 025-effect-cgroup_setting_by_psi_1.c │ ├── 025-effect-cgroup_setting_by_psi_1.json │ ├── 026-effect-cgroup_setting_by_psi_2.c │ ├── 026-effect-cgroup_setting_by_psi_2.json │ ├── 027-effect-cgroup_setting_by_psi_3.c │ ├── 027-effect-cgroup_setting_by_psi_3.json │ ├── 028-effect-copy_cgroup_setting.c │ ├── 028-effect-copy_cgroup_setting.json │ ├── 029-cause-cgroup_setting_ll_gt.c │ ├── 029-cause-cgroup_setting_ll_gt.json │ ├── 030-cause-cgroup_setting_ll_lt.c │ ├── 030-cause-cgroup_setting_ll_lt.json │ ├── 031-cause-cgroup_setting_float_gt.c │ ├── 031-cause-cgroup_setting_float_gt.json │ ├── 032-cause-cgroup_setting_float_lt.c │ ├── 032-cause-cgroup_setting_float_lt.json │ ├── 033-validate_humanize.c │ ├── 033-validate_humanize.json │ ├── 034-cause-setting_ll_gt.c │ ├── 034-cause-setting_ll_gt.json │ ├── 035-cause-setting_ll_lt.c │ ├── 035-cause-setting_ll_lt.json │ ├── 036-cause-setting_float_gt.c │ ├── 036-cause-setting_float_gt.json │ ├── 037-cause-setting_float_lt.c │ ├── 037-cause-setting_float_lt.json │ ├── 038-cause-setting_ll_eq.c │ ├── 038-cause-setting_ll_eq.json │ ├── 039-cause-setting_float_eq.c │ ├── 039-cause-setting_float_eq.json │ ├── 040-cause-avg300_pressure_equal.c │ ├── 040-cause-avg300_pressure_equal.json │ ├── 041-cause-pressure_equal.c │ ├── 041-cause-pressure_equal.json │ ├── 042-cause-periodic.c │ ├── 042-cause-periodic.json │ ├── 043-effect-logger-no-separators.c │ ├── 043-effect-logger-no-separators.json │ ├── 044-effect-logger-date-format.c │ ├── 044-effect-logger-date-format.json │ ├── 045-effect-cgroup_memory_setting_add_int_max.c │ ├── 045-effect-cgroup_memory_setting_add_int_max.json │ ├── 045-effect-cgroup_memory_setting_set_add_int.json │ ├── 046-effect-cgroup_memory_setting_sub_int_max.c │ ├── 046-effect-cgroup_memory_setting_sub_int_max.json │ ├── 047-effect-cgroup_memory_pre_set_add_int.c │ ├── 047-effect-cgroup_memory_pre_set_add_int.json │ ├── 048-cause-meminfo_gt.c │ ├── 048-cause-meminfo_gt.json │ ├── 049-cause-meminfo_lt.c │ ├── 049-cause-meminfo_lt.json │ ├── 050-cause-meminfo_eq.c │ ├── 050-cause-meminfo_eq.json │ ├── 051-cause-slabinfo_gt.c │ ├── 051-cause-slabinfo_gt.json │ ├── 052-cause-slabinfo_lt.c │ ├── 052-cause-slabinfo_lt.json │ ├── 053-cause-slabinfo_eq.c │ ├── 053-cause-slabinfo_eq.json │ ├── 054-effect-print_schedstat.expected │ ├── 054-effect-print_schedstat.json │ ├── 054-effect-print_schedstat.py │ ├── 054-effect-print_schedstat.schedstat │ ├── 055-effect-setting_set_int.c │ ├── 055-effect-setting_set_int.json │ ├── 056-effect-setting_add_int.c │ ├── 056-effect-setting_add_int.json │ ├── 057-effect-setting_sub_int.c │ ├── 057-effect-setting_sub_int.json │ ├── 058-cause-memorystat_gt.c │ ├── 058-cause-memorystat_gt.expected │ ├── 058-cause-memorystat_gt.json │ ├── 058-cause-memorystat_gt.token │ ├── 059-cause-memorystat_lt.c │ ├── 059-cause-memorystat_lt.expected │ ├── 059-cause-memorystat_lt.json │ ├── 059-cause-memorystat_lt.token │ ├── 060-cause-memorystat_eq.c │ ├── 060-cause-memorystat_eq.expected │ ├── 060-cause-memorystat_eq.json │ ├── 060-cause-memorystat_eq.token │ ├── 061-cause-top_cpu_gt.c │ ├── 061-cause-top_cpu_gt.json │ ├── 061-proc_stat.sample │ ├── 062-cause-top_cpu_lt.c │ ├── 062-cause-top_cpu_lt.json │ ├── 063-cause-top_mem_gt.c │ ├── 063-cause-top_mem_gt.json │ ├── 064-cause-top_mem_lt.c │ ├── 064-cause-top_mem_lt.json │ ├── 065-daemon_test.c │ ├── 066-cause-cgroup_memory_setting_ll_lt.c │ ├── 066-cause-cgroup_memory_setting_ll_lt.json │ ├── 067-effect-kill_processes.c │ ├── 067-effect-kill_processes.json │ ├── 068-effect-kill_processes_rss.c │ ├── 068-effect-kill_processes_rss.json │ ├── 069-effect-signal.c │ ├── 069-effect-signal.json │ ├── 070-rule-multiple_rules.c │ ├── 070-rule-multiple_rules.json │ ├── 1000-sudo-effect-sd_bus_setting_set_int.c │ ├── 1000-sudo-effect-sd_bus_setting_set_int.json │ ├── 1001-sudo-effect-sd_bus_setting_add_int.c │ ├── 1001-sudo-effect-sd_bus_setting_add_int.json │ ├── 1002-sudo-effect-sd_bus_setting_sub_int.c │ ├── 1002-sudo-effect-sd_bus_setting_sub_int.json │ ├── 1003-sudo-effect-sd_bus_setting-CPUQuota.c │ ├── 1003-sudo-effect-sd_bus_setting-CPUQuota.json │ ├── 1004-sudo-effect-sd_bus_setting_add_int_infinity.c │ ├── 1004-sudo-effect-sd_bus_setting_add_int_infinity.json │ ├── 1005-sudo-effect-sd_bus_setting_sub_infinity.c │ ├── 1005-sudo-effect-sd_bus_setting_sub_infinity.json │ ├── 1006-sudo-effect-sd_bus_setting_set_int_scope.c │ ├── 1006-sudo-effect-sd_bus_setting_set_int_scope.json │ ├── 1007-sudo-effect-sd_bus_setting_set_str.c │ ├── 1007-sudo-effect-sd_bus_setting_set_str.json │ ├── Makefile.am │ ├── adaptived.py │ ├── config.py │ ├── consts.py │ ├── ftests-c-wrapper.sh │ ├── ftests-wrapper.sh │ ├── ftests.c │ ├── ftests.h │ ├── ftests.py │ ├── log.py │ ├── run.py │ ├── time_of_day.c │ ├── tod_validate.c │ └── utils.py │ └── gunit │ ├── 001-adaptived_get_pressure.cpp │ ├── 002-adaptived_get_pressure_avg.cpp │ ├── 003-adaptived_farray_append.cpp │ ├── 004-adaptived_farray_linear_regression.cpp │ ├── 005-cgroup_long_long.cpp │ ├── 006-cgroup_str.cpp │ ├── 007-path_walk.cpp │ ├── 008-cgroup_get_procs.cpp │ ├── 009-cgroup_detect.cpp │ ├── 010-adaptived_get_schedstats.cpp │ ├── 011-kill_processes_sort.cpp │ ├── 012-shared_data.cpp │ ├── Makefile.am │ └── gtest.cpp ├── adaptivemm ├── 50-adaptivemm.preset ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── adaptivemm.spec ├── adaptivemmd.cfg ├── adaptivemmd.service ├── doc │ └── adaptivemmd.8 └── src │ ├── Makefile │ ├── adaptivemmd.c │ ├── predict.c │ └── predict.h └── tools ├── build_spec.yaml └── diff.sh /.github/actions/code-coverage/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/.github/actions/code-coverage/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-adaptived/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/.github/actions/setup-adaptived/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/isolated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/.github/workflows/isolated.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/README.md -------------------------------------------------------------------------------- /adaptived/.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/.checkpatch.conf -------------------------------------------------------------------------------- /adaptived/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/.gitignore -------------------------------------------------------------------------------- /adaptived/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/CHANGELOG.txt -------------------------------------------------------------------------------- /adaptived/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/CONTRIBUTING.md -------------------------------------------------------------------------------- /adaptived/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/LICENSE.txt -------------------------------------------------------------------------------- /adaptived/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/Makefile.am -------------------------------------------------------------------------------- /adaptived/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/README.md -------------------------------------------------------------------------------- /adaptived/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/SECURITY.md -------------------------------------------------------------------------------- /adaptived/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /adaptived/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/autogen.sh -------------------------------------------------------------------------------- /adaptived/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/configure.ac -------------------------------------------------------------------------------- /adaptived/dist/.gitignore: -------------------------------------------------------------------------------- 1 | adaptived.spec 2 | -------------------------------------------------------------------------------- /adaptived/dist/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = adaptived.spec 2 | -------------------------------------------------------------------------------- /adaptived/dist/adaptived.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/dist/adaptived.spec.in -------------------------------------------------------------------------------- /adaptived/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | DIST_SUBDIRS = examples 2 | -------------------------------------------------------------------------------- /adaptived/doc/examples/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adaptived/doc/examples/adjust-weight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/examples/adjust-weight.json -------------------------------------------------------------------------------- /adaptived/doc/examples/determine-memorylow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/examples/determine-memorylow.json -------------------------------------------------------------------------------- /adaptived/doc/examples/flow-chart.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/examples/flow-chart.odp -------------------------------------------------------------------------------- /adaptived/doc/examples/flow-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/examples/flow-chart.png -------------------------------------------------------------------------------- /adaptived/doc/examples/jimmy-buffett-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/examples/jimmy-buffett-config.json -------------------------------------------------------------------------------- /adaptived/doc/examples/kill-lowpriority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/examples/kill-lowpriority.json -------------------------------------------------------------------------------- /adaptived/doc/examples/lowmemfree-sendsignal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/examples/lowmemfree-sendsignal.json -------------------------------------------------------------------------------- /adaptived/doc/examples/topmem-savelogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/examples/topmem-savelogs.json -------------------------------------------------------------------------------- /adaptived/doc/internal/cgroup_setting_by_psi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/internal/cgroup_setting_by_psi.md -------------------------------------------------------------------------------- /adaptived/doc/internal/human-readable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/internal/human-readable.md -------------------------------------------------------------------------------- /adaptived/doc/internal/list-of-built-in-causes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/internal/list-of-built-in-causes.md -------------------------------------------------------------------------------- /adaptived/doc/internal/list-of-built-in-effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/internal/list-of-built-in-effects.md -------------------------------------------------------------------------------- /adaptived/doc/internal/path-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/doc/internal/path-rules.md -------------------------------------------------------------------------------- /adaptived/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/include/Makefile.am -------------------------------------------------------------------------------- /adaptived/include/adaptived-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/include/adaptived-utils.h -------------------------------------------------------------------------------- /adaptived/include/adaptived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/include/adaptived.h -------------------------------------------------------------------------------- /adaptived/m4/ax_code_coverage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/m4/ax_code_coverage.m4 -------------------------------------------------------------------------------- /adaptived/sanity-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/sanity-check.sh -------------------------------------------------------------------------------- /adaptived/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/Makefile.am -------------------------------------------------------------------------------- /adaptived/src/adaptived-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/adaptived-internal.h -------------------------------------------------------------------------------- /adaptived/src/cause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/cause.c -------------------------------------------------------------------------------- /adaptived/src/cause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/cause.h -------------------------------------------------------------------------------- /adaptived/src/causes/Makefile.am: -------------------------------------------------------------------------------- 1 | SOURCES = \ 2 | time_of_day.c 3 | -------------------------------------------------------------------------------- /adaptived/src/causes/always.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/always.c -------------------------------------------------------------------------------- /adaptived/src/causes/cgroup_setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/cgroup_setting.c -------------------------------------------------------------------------------- /adaptived/src/causes/days_of_the_week.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/days_of_the_week.c -------------------------------------------------------------------------------- /adaptived/src/causes/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/meminfo.c -------------------------------------------------------------------------------- /adaptived/src/causes/memorystat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/memorystat.c -------------------------------------------------------------------------------- /adaptived/src/causes/periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/periodic.c -------------------------------------------------------------------------------- /adaptived/src/causes/pressure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/pressure.c -------------------------------------------------------------------------------- /adaptived/src/causes/pressure_rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/pressure_rate.c -------------------------------------------------------------------------------- /adaptived/src/causes/slabinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/slabinfo.c -------------------------------------------------------------------------------- /adaptived/src/causes/time_of_day.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/time_of_day.c -------------------------------------------------------------------------------- /adaptived/src/causes/top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/causes/top.c -------------------------------------------------------------------------------- /adaptived/src/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/defines.h -------------------------------------------------------------------------------- /adaptived/src/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effect.c -------------------------------------------------------------------------------- /adaptived/src/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effect.h -------------------------------------------------------------------------------- /adaptived/src/effects/cgroup_setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/cgroup_setting.c -------------------------------------------------------------------------------- /adaptived/src/effects/cgroup_setting_by_psi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/cgroup_setting_by_psi.c -------------------------------------------------------------------------------- /adaptived/src/effects/copy_cgroup_setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/copy_cgroup_setting.c -------------------------------------------------------------------------------- /adaptived/src/effects/kill_cgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/kill_cgroup.c -------------------------------------------------------------------------------- /adaptived/src/effects/kill_cgroup_by_psi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/kill_cgroup_by_psi.c -------------------------------------------------------------------------------- /adaptived/src/effects/kill_processes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/kill_processes.c -------------------------------------------------------------------------------- /adaptived/src/effects/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/logger.c -------------------------------------------------------------------------------- /adaptived/src/effects/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/print.c -------------------------------------------------------------------------------- /adaptived/src/effects/print_schedstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/print_schedstat.c -------------------------------------------------------------------------------- /adaptived/src/effects/sd_bus_setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/sd_bus_setting.c -------------------------------------------------------------------------------- /adaptived/src/effects/snooze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/snooze.c -------------------------------------------------------------------------------- /adaptived/src/effects/validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/effects/validate.c -------------------------------------------------------------------------------- /adaptived/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/log.c -------------------------------------------------------------------------------- /adaptived/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/main.c -------------------------------------------------------------------------------- /adaptived/src/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/parse.c -------------------------------------------------------------------------------- /adaptived/src/pressure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/pressure.h -------------------------------------------------------------------------------- /adaptived/src/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/rule.c -------------------------------------------------------------------------------- /adaptived/src/shared_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/shared_data.c -------------------------------------------------------------------------------- /adaptived/src/shared_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/shared_data.h -------------------------------------------------------------------------------- /adaptived/src/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/utils/Makefile.am -------------------------------------------------------------------------------- /adaptived/src/utils/cgroup_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/utils/cgroup_utils.c -------------------------------------------------------------------------------- /adaptived/src/utils/file_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/utils/file_utils.c -------------------------------------------------------------------------------- /adaptived/src/utils/float_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/utils/float_utils.c -------------------------------------------------------------------------------- /adaptived/src/utils/mem_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/utils/mem_utils.c -------------------------------------------------------------------------------- /adaptived/src/utils/path_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/utils/path_utils.c -------------------------------------------------------------------------------- /adaptived/src/utils/pressure_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/utils/pressure_utils.c -------------------------------------------------------------------------------- /adaptived/src/utils/sched_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/utils/sched_utils.c -------------------------------------------------------------------------------- /adaptived/src/utils/sd_bus_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/src/utils/sd_bus_utils.c -------------------------------------------------------------------------------- /adaptived/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/Makefile.am -------------------------------------------------------------------------------- /adaptived/tests/ftests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/.gitignore -------------------------------------------------------------------------------- /adaptived/tests/ftests/001-cause-time_of_day.json.token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/001-cause-time_of_day.json.token -------------------------------------------------------------------------------- /adaptived/tests/ftests/001-cause-time_of_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/001-cause-time_of_day.py -------------------------------------------------------------------------------- /adaptived/tests/ftests/002-register_cause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/002-register_cause.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/002-register_cause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/002-register_cause.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/003-register_plugin_cause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/003-register_plugin_cause.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/003-register_plugin_cause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/003-register_plugin_cause.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/004-register_plugin_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/004-register_plugin_effect.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/004-register_plugin_effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/004-register_plugin_effect.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/007-cause-avg300_pressure_above.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/007-cause-avg300_pressure_above.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/007-cause-avg300_pressure_above.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/007-cause-avg300_pressure_above.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/008-cause-pressure_above_total.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/008-cause-pressure_above_total.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/008-cause-pressure_above_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/008-cause-pressure_above_total.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/009-cause-pressure_below.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/009-cause-pressure_below.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/009-cause-pressure_below.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/009-cause-pressure_below.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/010-snooze_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/010-snooze_effect.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/010-snooze_effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/010-snooze_effect.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/011-cause-pressure_rate_rising.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/011-cause-pressure_rate_rising.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/011-cause-pressure_rate_rising.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/011-cause-pressure_rate_rising.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/012-cause-pressure_rate_falling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/012-cause-pressure_rate_falling.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/012-cause-pressure_rate_falling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/012-cause-pressure_rate_falling.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/013-adaptived-asynchronous_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/013-adaptived-asynchronous_loop.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/013-adaptived-asynchronous_loop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/013-adaptived-asynchronous_loop.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/014-duplicate_cause_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/014-duplicate_cause_effect.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/015-load_rule_at_runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/015-load_rule_at_runtime.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/016-unload_rule_at_runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/016-unload_rule_at_runtime.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/017-register_many.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/017-register_many.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/018-effect-cgroup_setting_set_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/018-effect-cgroup_setting_set_str.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/019-effect-cgroup_setting_set_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/019-effect-cgroup_setting_set_int.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/019-effect-cgroup_setting_set_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/019-effect-cgroup_setting_set_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/020-effect-cgroup_setting_add_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/020-effect-cgroup_setting_add_int.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/020-effect-cgroup_setting_add_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/020-effect-cgroup_setting_add_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/021-effect-cgroup_setting_sub_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/021-effect-cgroup_setting_sub_int.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/021-effect-cgroup_setting_sub_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/021-effect-cgroup_setting_sub_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/022-effect-kill_cgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/022-effect-kill_cgroup.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/022-effect-kill_cgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/022-effect-kill_cgroup.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/023-effect-kill_cgroup_recursive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/023-effect-kill_cgroup_recursive.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/023-effect-kill_cgroup_recursive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/023-effect-kill_cgroup_recursive.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/024-effect-kill_cgroup_by_psi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/024-effect-kill_cgroup_by_psi.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/024-effect-kill_cgroup_by_psi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/024-effect-kill_cgroup_by_psi.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/025-effect-cgroup_setting_by_psi_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/025-effect-cgroup_setting_by_psi_1.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/025-effect-cgroup_setting_by_psi_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/025-effect-cgroup_setting_by_psi_1.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/026-effect-cgroup_setting_by_psi_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/026-effect-cgroup_setting_by_psi_2.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/026-effect-cgroup_setting_by_psi_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/026-effect-cgroup_setting_by_psi_2.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/027-effect-cgroup_setting_by_psi_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/027-effect-cgroup_setting_by_psi_3.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/027-effect-cgroup_setting_by_psi_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/027-effect-cgroup_setting_by_psi_3.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/028-effect-copy_cgroup_setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/028-effect-copy_cgroup_setting.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/028-effect-copy_cgroup_setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/028-effect-copy_cgroup_setting.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/029-cause-cgroup_setting_ll_gt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/029-cause-cgroup_setting_ll_gt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/029-cause-cgroup_setting_ll_gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/029-cause-cgroup_setting_ll_gt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/030-cause-cgroup_setting_ll_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/030-cause-cgroup_setting_ll_lt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/030-cause-cgroup_setting_ll_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/030-cause-cgroup_setting_ll_lt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/031-cause-cgroup_setting_float_gt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/031-cause-cgroup_setting_float_gt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/031-cause-cgroup_setting_float_gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/031-cause-cgroup_setting_float_gt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/032-cause-cgroup_setting_float_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/032-cause-cgroup_setting_float_lt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/032-cause-cgroup_setting_float_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/032-cause-cgroup_setting_float_lt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/033-validate_humanize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/033-validate_humanize.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/033-validate_humanize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/033-validate_humanize.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/034-cause-setting_ll_gt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/034-cause-setting_ll_gt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/034-cause-setting_ll_gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/034-cause-setting_ll_gt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/035-cause-setting_ll_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/035-cause-setting_ll_lt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/035-cause-setting_ll_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/035-cause-setting_ll_lt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/036-cause-setting_float_gt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/036-cause-setting_float_gt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/036-cause-setting_float_gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/036-cause-setting_float_gt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/037-cause-setting_float_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/037-cause-setting_float_lt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/037-cause-setting_float_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/037-cause-setting_float_lt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/038-cause-setting_ll_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/038-cause-setting_ll_eq.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/038-cause-setting_ll_eq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/038-cause-setting_ll_eq.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/039-cause-setting_float_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/039-cause-setting_float_eq.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/039-cause-setting_float_eq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/039-cause-setting_float_eq.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/040-cause-avg300_pressure_equal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/040-cause-avg300_pressure_equal.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/040-cause-avg300_pressure_equal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/040-cause-avg300_pressure_equal.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/041-cause-pressure_equal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/041-cause-pressure_equal.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/041-cause-pressure_equal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/041-cause-pressure_equal.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/042-cause-periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/042-cause-periodic.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/042-cause-periodic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/042-cause-periodic.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/043-effect-logger-no-separators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/043-effect-logger-no-separators.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/043-effect-logger-no-separators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/043-effect-logger-no-separators.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/044-effect-logger-date-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/044-effect-logger-date-format.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/044-effect-logger-date-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/044-effect-logger-date-format.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/045-effect-cgroup_memory_setting_add_int_max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/045-effect-cgroup_memory_setting_add_int_max.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/045-effect-cgroup_memory_setting_add_int_max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/045-effect-cgroup_memory_setting_add_int_max.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/045-effect-cgroup_memory_setting_set_add_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/045-effect-cgroup_memory_setting_set_add_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/046-effect-cgroup_memory_setting_sub_int_max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/046-effect-cgroup_memory_setting_sub_int_max.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/046-effect-cgroup_memory_setting_sub_int_max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/046-effect-cgroup_memory_setting_sub_int_max.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/047-effect-cgroup_memory_pre_set_add_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/047-effect-cgroup_memory_pre_set_add_int.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/047-effect-cgroup_memory_pre_set_add_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/047-effect-cgroup_memory_pre_set_add_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/048-cause-meminfo_gt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/048-cause-meminfo_gt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/048-cause-meminfo_gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/048-cause-meminfo_gt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/049-cause-meminfo_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/049-cause-meminfo_lt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/049-cause-meminfo_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/049-cause-meminfo_lt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/050-cause-meminfo_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/050-cause-meminfo_eq.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/050-cause-meminfo_eq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/050-cause-meminfo_eq.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/051-cause-slabinfo_gt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/051-cause-slabinfo_gt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/051-cause-slabinfo_gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/051-cause-slabinfo_gt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/052-cause-slabinfo_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/052-cause-slabinfo_lt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/052-cause-slabinfo_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/052-cause-slabinfo_lt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/053-cause-slabinfo_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/053-cause-slabinfo_eq.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/053-cause-slabinfo_eq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/053-cause-slabinfo_eq.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/054-effect-print_schedstat.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/054-effect-print_schedstat.expected -------------------------------------------------------------------------------- /adaptived/tests/ftests/054-effect-print_schedstat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/054-effect-print_schedstat.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/054-effect-print_schedstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/054-effect-print_schedstat.py -------------------------------------------------------------------------------- /adaptived/tests/ftests/054-effect-print_schedstat.schedstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/054-effect-print_schedstat.schedstat -------------------------------------------------------------------------------- /adaptived/tests/ftests/055-effect-setting_set_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/055-effect-setting_set_int.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/055-effect-setting_set_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/055-effect-setting_set_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/056-effect-setting_add_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/056-effect-setting_add_int.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/056-effect-setting_add_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/056-effect-setting_add_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/057-effect-setting_sub_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/057-effect-setting_sub_int.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/057-effect-setting_sub_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/057-effect-setting_sub_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/058-cause-memorystat_gt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/058-cause-memorystat_gt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/058-cause-memorystat_gt.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/058-cause-memorystat_gt.expected -------------------------------------------------------------------------------- /adaptived/tests/ftests/058-cause-memorystat_gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/058-cause-memorystat_gt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/058-cause-memorystat_gt.token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/058-cause-memorystat_gt.token -------------------------------------------------------------------------------- /adaptived/tests/ftests/059-cause-memorystat_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/059-cause-memorystat_lt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/059-cause-memorystat_lt.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/059-cause-memorystat_lt.expected -------------------------------------------------------------------------------- /adaptived/tests/ftests/059-cause-memorystat_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/059-cause-memorystat_lt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/059-cause-memorystat_lt.token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/059-cause-memorystat_lt.token -------------------------------------------------------------------------------- /adaptived/tests/ftests/060-cause-memorystat_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/060-cause-memorystat_eq.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/060-cause-memorystat_eq.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/060-cause-memorystat_eq.expected -------------------------------------------------------------------------------- /adaptived/tests/ftests/060-cause-memorystat_eq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/060-cause-memorystat_eq.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/060-cause-memorystat_eq.token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/060-cause-memorystat_eq.token -------------------------------------------------------------------------------- /adaptived/tests/ftests/061-cause-top_cpu_gt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/061-cause-top_cpu_gt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/061-cause-top_cpu_gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/061-cause-top_cpu_gt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/061-proc_stat.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/061-proc_stat.sample -------------------------------------------------------------------------------- /adaptived/tests/ftests/062-cause-top_cpu_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/062-cause-top_cpu_lt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/062-cause-top_cpu_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/062-cause-top_cpu_lt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/063-cause-top_mem_gt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/063-cause-top_mem_gt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/063-cause-top_mem_gt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/063-cause-top_mem_gt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/064-cause-top_mem_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/064-cause-top_mem_lt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/064-cause-top_mem_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/064-cause-top_mem_lt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/065-daemon_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/065-daemon_test.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/066-cause-cgroup_memory_setting_ll_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/066-cause-cgroup_memory_setting_ll_lt.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/066-cause-cgroup_memory_setting_ll_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/066-cause-cgroup_memory_setting_ll_lt.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/067-effect-kill_processes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/067-effect-kill_processes.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/067-effect-kill_processes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/067-effect-kill_processes.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/068-effect-kill_processes_rss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/068-effect-kill_processes_rss.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/068-effect-kill_processes_rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/068-effect-kill_processes_rss.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/069-effect-signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/069-effect-signal.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/069-effect-signal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/069-effect-signal.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/070-rule-multiple_rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/070-rule-multiple_rules.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/070-rule-multiple_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/070-rule-multiple_rules.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/1000-sudo-effect-sd_bus_setting_set_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1000-sudo-effect-sd_bus_setting_set_int.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/1000-sudo-effect-sd_bus_setting_set_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1000-sudo-effect-sd_bus_setting_set_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/1001-sudo-effect-sd_bus_setting_add_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1001-sudo-effect-sd_bus_setting_add_int.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/1001-sudo-effect-sd_bus_setting_add_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1001-sudo-effect-sd_bus_setting_add_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/1002-sudo-effect-sd_bus_setting_sub_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1002-sudo-effect-sd_bus_setting_sub_int.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/1002-sudo-effect-sd_bus_setting_sub_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1002-sudo-effect-sd_bus_setting_sub_int.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/1003-sudo-effect-sd_bus_setting-CPUQuota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1003-sudo-effect-sd_bus_setting-CPUQuota.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/1003-sudo-effect-sd_bus_setting-CPUQuota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1003-sudo-effect-sd_bus_setting-CPUQuota.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/1004-sudo-effect-sd_bus_setting_add_int_infinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1004-sudo-effect-sd_bus_setting_add_int_infinity.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/1004-sudo-effect-sd_bus_setting_add_int_infinity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1004-sudo-effect-sd_bus_setting_add_int_infinity.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/1005-sudo-effect-sd_bus_setting_sub_infinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1005-sudo-effect-sd_bus_setting_sub_infinity.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/1005-sudo-effect-sd_bus_setting_sub_infinity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1005-sudo-effect-sd_bus_setting_sub_infinity.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/1006-sudo-effect-sd_bus_setting_set_int_scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1006-sudo-effect-sd_bus_setting_set_int_scope.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/1006-sudo-effect-sd_bus_setting_set_int_scope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1006-sudo-effect-sd_bus_setting_set_int_scope.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/1007-sudo-effect-sd_bus_setting_set_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1007-sudo-effect-sd_bus_setting_set_str.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/1007-sudo-effect-sd_bus_setting_set_str.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/1007-sudo-effect-sd_bus_setting_set_str.json -------------------------------------------------------------------------------- /adaptived/tests/ftests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/Makefile.am -------------------------------------------------------------------------------- /adaptived/tests/ftests/adaptived.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/adaptived.py -------------------------------------------------------------------------------- /adaptived/tests/ftests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/config.py -------------------------------------------------------------------------------- /adaptived/tests/ftests/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/consts.py -------------------------------------------------------------------------------- /adaptived/tests/ftests/ftests-c-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/ftests-c-wrapper.sh -------------------------------------------------------------------------------- /adaptived/tests/ftests/ftests-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/ftests-wrapper.sh -------------------------------------------------------------------------------- /adaptived/tests/ftests/ftests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/ftests.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/ftests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/ftests.h -------------------------------------------------------------------------------- /adaptived/tests/ftests/ftests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/ftests.py -------------------------------------------------------------------------------- /adaptived/tests/ftests/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/log.py -------------------------------------------------------------------------------- /adaptived/tests/ftests/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/run.py -------------------------------------------------------------------------------- /adaptived/tests/ftests/time_of_day.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/time_of_day.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/tod_validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/tod_validate.c -------------------------------------------------------------------------------- /adaptived/tests/ftests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/ftests/utils.py -------------------------------------------------------------------------------- /adaptived/tests/gunit/001-adaptived_get_pressure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/001-adaptived_get_pressure.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/002-adaptived_get_pressure_avg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/002-adaptived_get_pressure_avg.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/003-adaptived_farray_append.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/003-adaptived_farray_append.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/004-adaptived_farray_linear_regression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/004-adaptived_farray_linear_regression.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/005-cgroup_long_long.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/005-cgroup_long_long.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/006-cgroup_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/006-cgroup_str.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/007-path_walk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/007-path_walk.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/008-cgroup_get_procs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/008-cgroup_get_procs.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/009-cgroup_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/009-cgroup_detect.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/010-adaptived_get_schedstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/010-adaptived_get_schedstats.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/011-kill_processes_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/011-kill_processes_sort.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/012-shared_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/012-shared_data.cpp -------------------------------------------------------------------------------- /adaptived/tests/gunit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/Makefile.am -------------------------------------------------------------------------------- /adaptived/tests/gunit/gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptived/tests/gunit/gtest.cpp -------------------------------------------------------------------------------- /adaptivemm/50-adaptivemm.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/50-adaptivemm.preset -------------------------------------------------------------------------------- /adaptivemm/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/CONTRIBUTING.md -------------------------------------------------------------------------------- /adaptivemm/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/LICENSE.txt -------------------------------------------------------------------------------- /adaptivemm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/README.md -------------------------------------------------------------------------------- /adaptivemm/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/SECURITY.md -------------------------------------------------------------------------------- /adaptivemm/adaptivemm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/adaptivemm.spec -------------------------------------------------------------------------------- /adaptivemm/adaptivemmd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/adaptivemmd.cfg -------------------------------------------------------------------------------- /adaptivemm/adaptivemmd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/adaptivemmd.service -------------------------------------------------------------------------------- /adaptivemm/doc/adaptivemmd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/doc/adaptivemmd.8 -------------------------------------------------------------------------------- /adaptivemm/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/src/Makefile -------------------------------------------------------------------------------- /adaptivemm/src/adaptivemmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/src/adaptivemmd.c -------------------------------------------------------------------------------- /adaptivemm/src/predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/src/predict.c -------------------------------------------------------------------------------- /adaptivemm/src/predict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/adaptivemm/src/predict.h -------------------------------------------------------------------------------- /tools/build_spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/tools/build_spec.yaml -------------------------------------------------------------------------------- /tools/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle/adaptivemm/HEAD/tools/diff.sh --------------------------------------------------------------------------------