├── .coveragerc ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── NEWS.md ├── README.rst ├── bin ├── hod └── hod-genconfig ├── docs ├── Administration.rst ├── Command_line_interface.rst ├── Configuration.rst ├── Configuring_PuTTY_on_Windows.rst ├── Configuring_browser_proxy_Chrome_Safari_OSX.rst ├── Configuring_browser_proxy_Chrome_Windows.rst ├── Configuring_browser_proxy_Firefox.rst ├── Connecting_to_web_UIs.rst ├── Example_use_cases.rst ├── Logging.rst ├── Spark.rst ├── What_is_HOD.rst ├── conf.py ├── img │ ├── 01-hod.png │ ├── 02-create-cluster.png │ ├── 03-hod-list.png │ ├── 04-pageant.png │ ├── 05-putty-proxy-session.png │ ├── 06-putty-proxy.png │ ├── 07-putty-tunnel.png │ ├── 07.1-putty-tunnel.png │ ├── 08-putty-data.png │ ├── 09-proxy-logged-in.png │ └── browser_proxy_cfg │ │ ├── .DS_Store │ │ ├── chrome-settings.png │ │ ├── chrome_safari_osx │ │ ├── 01_osx_network_proxies.png │ │ └── 02_socks_proxy.png │ │ ├── chrome_windows │ │ ├── 01_internet_properties.png │ │ ├── 02_lan_settings.png │ │ └── 03_proxy_settings.png │ │ └── firefox │ │ ├── 01_firefox_settings.png │ │ └── 02_network_settings.png └── index.rst ├── etc └── hod │ ├── HBase-1.0.2 │ ├── datanode.conf │ ├── hbase-master.conf │ ├── hod.conf │ ├── namenode.conf │ ├── regionserver.conf │ ├── screen.conf │ └── zookeeper.conf │ ├── Hadoop-2.3.0-cdh5.0.0 │ ├── hod.conf │ ├── nodemanager.conf │ ├── resourcemanager.conf │ └── screen.conf │ ├── Hadoop-2.5.0-cdh5.3.1-gpfs │ ├── hod.conf │ ├── nodemanager.conf │ ├── resourcemanager.conf │ └── screen.conf │ ├── Hadoop-2.5.0-cdh5.3.1-native │ ├── hod.conf │ ├── nodemanager.conf │ ├── resourcemanager.conf │ └── screen.conf │ ├── Hadoop-2.6.0-cdh5.4.5-native │ ├── hod.conf │ ├── nodemanager.conf │ ├── resourcemanager.conf │ └── screen.conf │ ├── Hadoop-on-lustre2 │ ├── hod.conf │ ├── nodemanager.conf │ ├── resourcemanager.conf │ └── screen.conf │ ├── IPython-notebook-3.2.1 │ ├── hod.conf │ ├── ipython.conf │ ├── nodemanager.conf │ ├── resourcemanager.conf │ ├── screen.conf │ └── start-notebook.sh │ ├── IPython-notebook-3.2.3 │ ├── hod.conf │ ├── ipython.conf │ ├── nodemanager.conf │ ├── resourcemanager.conf │ ├── screen.conf │ └── start-notebook.sh │ ├── IPython-notebook-4.2.0 │ ├── hod.conf │ ├── ipython.conf │ ├── nodemanager.conf │ ├── resourcemanager.conf │ ├── screen.conf │ └── start-notebook.sh │ ├── Jupyter-notebook-5.1.0 │ ├── hod.conf │ ├── jupyter.conf │ ├── nodemanager.conf │ ├── resourcemanager.conf │ ├── screen.conf │ └── start-notebook.sh │ └── Spark-2.4.0-Hadoop-2.9.2 │ ├── hod.conf │ ├── nodemanager.conf │ ├── resourcemanager.conf │ └── screen.conf ├── hod ├── __init__.py ├── cluster.py ├── commands │ ├── __init__.py │ └── command.py ├── config │ ├── __init__.py │ ├── autogen │ │ ├── __init__.py │ │ ├── common.py │ │ ├── hadoop.py │ │ ├── hadoop_on_lustre2.py │ │ ├── hbase.py │ │ └── ipython_notebook.py │ ├── config.py │ ├── template.py │ └── writer │ │ ├── __init__.py │ │ ├── _hadoop.py │ │ └── common.py ├── hodproc.py ├── local.py ├── main.py ├── mpiservice.py ├── node │ ├── __init__.py │ └── node.py ├── options.py ├── rmscheduler │ ├── __init__.py │ ├── hodjob.py │ ├── job.py │ ├── resourcemanagerscheduler.py │ └── rm_pbs.py ├── subcommands │ ├── __init__.py │ ├── batch.py │ ├── clean.py │ ├── clone.py │ ├── connect.py │ ├── create.py │ ├── destroy.py │ ├── dists.py │ ├── genconfig.py │ ├── helptemplate.py │ ├── listcmd.py │ ├── relabel.py │ └── subcommand.py ├── table.py ├── utils.py └── work │ ├── __init__.py │ ├── config_service.py │ └── work.py ├── setup.py ├── test ├── test_scripts │ ├── terasort.sh │ └── test_hbase.sh └── unit │ ├── __init__.py │ ├── commands │ ├── __init__.py │ └── test_commands.py │ ├── config │ ├── __init__.py │ ├── autogen │ │ ├── __init__.py │ │ ├── test_autogen_common.py │ │ ├── test_autogen_hadoop.py │ │ ├── test_autogen_hadoop_on_lustre2.py │ │ └── test_ipython_notebook.py │ ├── test_config.py │ ├── test_template.py │ └── writer │ │ ├── __init__.py │ │ └── test_hadoop.py │ ├── node │ ├── __init__.py │ └── test_node.py │ ├── rmscheduler │ ├── __init__.py │ ├── test_hodjob.py │ ├── test_job.py │ ├── test_resourcemanagerscheduler.py │ └── test_rm_pbs.py │ ├── subcommands │ ├── __init__.py │ ├── test_subcommands_batch.py │ ├── test_subcommands_clean.py │ ├── test_subcommands_clone.py │ ├── test_subcommands_connect.py │ ├── test_subcommands_create.py │ ├── test_subcommands_dists.py │ ├── test_subcommands_genconfig.py │ ├── test_subcommands_helptemplate.py │ ├── test_subcommands_listcmd.py │ └── test_subcommands_relabel.py │ ├── test_cluster.py │ ├── test_hod_local.py │ ├── test_hod_main.py │ ├── test_hodproc.py │ ├── test_mpiservice.py │ ├── test_option.py │ ├── test_table.py │ ├── util.py │ └── work │ ├── __init__.py │ └── test_work_config_service.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/.coveragerc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/README.rst -------------------------------------------------------------------------------- /bin/hod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/bin/hod -------------------------------------------------------------------------------- /bin/hod-genconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/bin/hod-genconfig -------------------------------------------------------------------------------- /docs/Administration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Administration.rst -------------------------------------------------------------------------------- /docs/Command_line_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Command_line_interface.rst -------------------------------------------------------------------------------- /docs/Configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Configuration.rst -------------------------------------------------------------------------------- /docs/Configuring_PuTTY_on_Windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Configuring_PuTTY_on_Windows.rst -------------------------------------------------------------------------------- /docs/Configuring_browser_proxy_Chrome_Safari_OSX.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Configuring_browser_proxy_Chrome_Safari_OSX.rst -------------------------------------------------------------------------------- /docs/Configuring_browser_proxy_Chrome_Windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Configuring_browser_proxy_Chrome_Windows.rst -------------------------------------------------------------------------------- /docs/Configuring_browser_proxy_Firefox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Configuring_browser_proxy_Firefox.rst -------------------------------------------------------------------------------- /docs/Connecting_to_web_UIs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Connecting_to_web_UIs.rst -------------------------------------------------------------------------------- /docs/Example_use_cases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Example_use_cases.rst -------------------------------------------------------------------------------- /docs/Logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Logging.rst -------------------------------------------------------------------------------- /docs/Spark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/Spark.rst -------------------------------------------------------------------------------- /docs/What_is_HOD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/What_is_HOD.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/img/01-hod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/01-hod.png -------------------------------------------------------------------------------- /docs/img/02-create-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/02-create-cluster.png -------------------------------------------------------------------------------- /docs/img/03-hod-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/03-hod-list.png -------------------------------------------------------------------------------- /docs/img/04-pageant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/04-pageant.png -------------------------------------------------------------------------------- /docs/img/05-putty-proxy-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/05-putty-proxy-session.png -------------------------------------------------------------------------------- /docs/img/06-putty-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/06-putty-proxy.png -------------------------------------------------------------------------------- /docs/img/07-putty-tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/07-putty-tunnel.png -------------------------------------------------------------------------------- /docs/img/07.1-putty-tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/07.1-putty-tunnel.png -------------------------------------------------------------------------------- /docs/img/08-putty-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/08-putty-data.png -------------------------------------------------------------------------------- /docs/img/09-proxy-logged-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/09-proxy-logged-in.png -------------------------------------------------------------------------------- /docs/img/browser_proxy_cfg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/browser_proxy_cfg/.DS_Store -------------------------------------------------------------------------------- /docs/img/browser_proxy_cfg/chrome-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/browser_proxy_cfg/chrome-settings.png -------------------------------------------------------------------------------- /docs/img/browser_proxy_cfg/chrome_safari_osx/01_osx_network_proxies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/browser_proxy_cfg/chrome_safari_osx/01_osx_network_proxies.png -------------------------------------------------------------------------------- /docs/img/browser_proxy_cfg/chrome_safari_osx/02_socks_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/browser_proxy_cfg/chrome_safari_osx/02_socks_proxy.png -------------------------------------------------------------------------------- /docs/img/browser_proxy_cfg/chrome_windows/01_internet_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/browser_proxy_cfg/chrome_windows/01_internet_properties.png -------------------------------------------------------------------------------- /docs/img/browser_proxy_cfg/chrome_windows/02_lan_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/browser_proxy_cfg/chrome_windows/02_lan_settings.png -------------------------------------------------------------------------------- /docs/img/browser_proxy_cfg/chrome_windows/03_proxy_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/browser_proxy_cfg/chrome_windows/03_proxy_settings.png -------------------------------------------------------------------------------- /docs/img/browser_proxy_cfg/firefox/01_firefox_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/browser_proxy_cfg/firefox/01_firefox_settings.png -------------------------------------------------------------------------------- /docs/img/browser_proxy_cfg/firefox/02_network_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/img/browser_proxy_cfg/firefox/02_network_settings.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/docs/index.rst -------------------------------------------------------------------------------- /etc/hod/HBase-1.0.2/datanode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/HBase-1.0.2/datanode.conf -------------------------------------------------------------------------------- /etc/hod/HBase-1.0.2/hbase-master.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/HBase-1.0.2/hbase-master.conf -------------------------------------------------------------------------------- /etc/hod/HBase-1.0.2/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/HBase-1.0.2/hod.conf -------------------------------------------------------------------------------- /etc/hod/HBase-1.0.2/namenode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/HBase-1.0.2/namenode.conf -------------------------------------------------------------------------------- /etc/hod/HBase-1.0.2/regionserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/HBase-1.0.2/regionserver.conf -------------------------------------------------------------------------------- /etc/hod/HBase-1.0.2/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/HBase-1.0.2/screen.conf -------------------------------------------------------------------------------- /etc/hod/HBase-1.0.2/zookeeper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/HBase-1.0.2/zookeeper.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.3.0-cdh5.0.0/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.3.0-cdh5.0.0/hod.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.3.0-cdh5.0.0/nodemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.3.0-cdh5.0.0/nodemanager.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.3.0-cdh5.0.0/resourcemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.3.0-cdh5.0.0/resourcemanager.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.3.0-cdh5.0.0/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.3.0-cdh5.0.0/screen.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.5.0-cdh5.3.1-gpfs/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.5.0-cdh5.3.1-gpfs/hod.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.5.0-cdh5.3.1-gpfs/nodemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.5.0-cdh5.3.1-gpfs/nodemanager.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.5.0-cdh5.3.1-gpfs/resourcemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.5.0-cdh5.3.1-gpfs/resourcemanager.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.5.0-cdh5.3.1-gpfs/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.5.0-cdh5.3.1-gpfs/screen.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.5.0-cdh5.3.1-native/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.5.0-cdh5.3.1-native/hod.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.5.0-cdh5.3.1-native/nodemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.5.0-cdh5.3.1-native/nodemanager.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.5.0-cdh5.3.1-native/resourcemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.5.0-cdh5.3.1-native/resourcemanager.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.5.0-cdh5.3.1-native/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.5.0-cdh5.3.1-native/screen.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.6.0-cdh5.4.5-native/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.6.0-cdh5.4.5-native/hod.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.6.0-cdh5.4.5-native/nodemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.6.0-cdh5.4.5-native/nodemanager.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.6.0-cdh5.4.5-native/resourcemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.6.0-cdh5.4.5-native/resourcemanager.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-2.6.0-cdh5.4.5-native/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-2.6.0-cdh5.4.5-native/screen.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-on-lustre2/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-on-lustre2/hod.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-on-lustre2/nodemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-on-lustre2/nodemanager.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-on-lustre2/resourcemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-on-lustre2/resourcemanager.conf -------------------------------------------------------------------------------- /etc/hod/Hadoop-on-lustre2/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Hadoop-on-lustre2/screen.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.1/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.1/hod.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.1/ipython.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.1/ipython.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.1/nodemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.1/nodemanager.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.1/resourcemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.1/resourcemanager.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.1/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.1/screen.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.1/start-notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.1/start-notebook.sh -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.3/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.3/hod.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.3/ipython.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.3/ipython.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.3/nodemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.3/nodemanager.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.3/resourcemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.3/resourcemanager.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.3/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.3/screen.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-3.2.3/start-notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-3.2.3/start-notebook.sh -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-4.2.0/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-4.2.0/hod.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-4.2.0/ipython.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-4.2.0/ipython.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-4.2.0/nodemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-4.2.0/nodemanager.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-4.2.0/resourcemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-4.2.0/resourcemanager.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-4.2.0/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-4.2.0/screen.conf -------------------------------------------------------------------------------- /etc/hod/IPython-notebook-4.2.0/start-notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/IPython-notebook-4.2.0/start-notebook.sh -------------------------------------------------------------------------------- /etc/hod/Jupyter-notebook-5.1.0/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Jupyter-notebook-5.1.0/hod.conf -------------------------------------------------------------------------------- /etc/hod/Jupyter-notebook-5.1.0/jupyter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Jupyter-notebook-5.1.0/jupyter.conf -------------------------------------------------------------------------------- /etc/hod/Jupyter-notebook-5.1.0/nodemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Jupyter-notebook-5.1.0/nodemanager.conf -------------------------------------------------------------------------------- /etc/hod/Jupyter-notebook-5.1.0/resourcemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Jupyter-notebook-5.1.0/resourcemanager.conf -------------------------------------------------------------------------------- /etc/hod/Jupyter-notebook-5.1.0/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Jupyter-notebook-5.1.0/screen.conf -------------------------------------------------------------------------------- /etc/hod/Jupyter-notebook-5.1.0/start-notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Jupyter-notebook-5.1.0/start-notebook.sh -------------------------------------------------------------------------------- /etc/hod/Spark-2.4.0-Hadoop-2.9.2/hod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Spark-2.4.0-Hadoop-2.9.2/hod.conf -------------------------------------------------------------------------------- /etc/hod/Spark-2.4.0-Hadoop-2.9.2/nodemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Spark-2.4.0-Hadoop-2.9.2/nodemanager.conf -------------------------------------------------------------------------------- /etc/hod/Spark-2.4.0-Hadoop-2.9.2/resourcemanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Spark-2.4.0-Hadoop-2.9.2/resourcemanager.conf -------------------------------------------------------------------------------- /etc/hod/Spark-2.4.0-Hadoop-2.9.2/screen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/etc/hod/Spark-2.4.0-Hadoop-2.9.2/screen.conf -------------------------------------------------------------------------------- /hod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/__init__.py -------------------------------------------------------------------------------- /hod/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/cluster.py -------------------------------------------------------------------------------- /hod/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/commands/__init__.py -------------------------------------------------------------------------------- /hod/commands/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/commands/command.py -------------------------------------------------------------------------------- /hod/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/__init__.py -------------------------------------------------------------------------------- /hod/config/autogen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/autogen/__init__.py -------------------------------------------------------------------------------- /hod/config/autogen/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/autogen/common.py -------------------------------------------------------------------------------- /hod/config/autogen/hadoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/autogen/hadoop.py -------------------------------------------------------------------------------- /hod/config/autogen/hadoop_on_lustre2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/autogen/hadoop_on_lustre2.py -------------------------------------------------------------------------------- /hod/config/autogen/hbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/autogen/hbase.py -------------------------------------------------------------------------------- /hod/config/autogen/ipython_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/autogen/ipython_notebook.py -------------------------------------------------------------------------------- /hod/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/config.py -------------------------------------------------------------------------------- /hod/config/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/template.py -------------------------------------------------------------------------------- /hod/config/writer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/writer/__init__.py -------------------------------------------------------------------------------- /hod/config/writer/_hadoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/writer/_hadoop.py -------------------------------------------------------------------------------- /hod/config/writer/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/config/writer/common.py -------------------------------------------------------------------------------- /hod/hodproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/hodproc.py -------------------------------------------------------------------------------- /hod/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/local.py -------------------------------------------------------------------------------- /hod/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/main.py -------------------------------------------------------------------------------- /hod/mpiservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/mpiservice.py -------------------------------------------------------------------------------- /hod/node/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/node/__init__.py -------------------------------------------------------------------------------- /hod/node/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/node/node.py -------------------------------------------------------------------------------- /hod/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/options.py -------------------------------------------------------------------------------- /hod/rmscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/rmscheduler/__init__.py -------------------------------------------------------------------------------- /hod/rmscheduler/hodjob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/rmscheduler/hodjob.py -------------------------------------------------------------------------------- /hod/rmscheduler/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/rmscheduler/job.py -------------------------------------------------------------------------------- /hod/rmscheduler/resourcemanagerscheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/rmscheduler/resourcemanagerscheduler.py -------------------------------------------------------------------------------- /hod/rmscheduler/rm_pbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/rmscheduler/rm_pbs.py -------------------------------------------------------------------------------- /hod/subcommands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hod/subcommands/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/batch.py -------------------------------------------------------------------------------- /hod/subcommands/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/clean.py -------------------------------------------------------------------------------- /hod/subcommands/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/clone.py -------------------------------------------------------------------------------- /hod/subcommands/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/connect.py -------------------------------------------------------------------------------- /hod/subcommands/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/create.py -------------------------------------------------------------------------------- /hod/subcommands/destroy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/destroy.py -------------------------------------------------------------------------------- /hod/subcommands/dists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/dists.py -------------------------------------------------------------------------------- /hod/subcommands/genconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/genconfig.py -------------------------------------------------------------------------------- /hod/subcommands/helptemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/helptemplate.py -------------------------------------------------------------------------------- /hod/subcommands/listcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/listcmd.py -------------------------------------------------------------------------------- /hod/subcommands/relabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/relabel.py -------------------------------------------------------------------------------- /hod/subcommands/subcommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/subcommands/subcommand.py -------------------------------------------------------------------------------- /hod/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/table.py -------------------------------------------------------------------------------- /hod/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/utils.py -------------------------------------------------------------------------------- /hod/work/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/work/__init__.py -------------------------------------------------------------------------------- /hod/work/config_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/work/config_service.py -------------------------------------------------------------------------------- /hod/work/work.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/hod/work/work.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_scripts/terasort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/test_scripts/terasort.sh -------------------------------------------------------------------------------- /test/test_scripts/test_hbase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/test_scripts/test_hbase.sh -------------------------------------------------------------------------------- /test/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/__init__.py -------------------------------------------------------------------------------- /test/unit/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/commands/__init__.py -------------------------------------------------------------------------------- /test/unit/commands/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/commands/test_commands.py -------------------------------------------------------------------------------- /test/unit/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/config/__init__.py -------------------------------------------------------------------------------- /test/unit/config/autogen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/config/autogen/test_autogen_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/config/autogen/test_autogen_common.py -------------------------------------------------------------------------------- /test/unit/config/autogen/test_autogen_hadoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/config/autogen/test_autogen_hadoop.py -------------------------------------------------------------------------------- /test/unit/config/autogen/test_autogen_hadoop_on_lustre2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/config/autogen/test_autogen_hadoop_on_lustre2.py -------------------------------------------------------------------------------- /test/unit/config/autogen/test_ipython_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/config/autogen/test_ipython_notebook.py -------------------------------------------------------------------------------- /test/unit/config/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/config/test_config.py -------------------------------------------------------------------------------- /test/unit/config/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/config/test_template.py -------------------------------------------------------------------------------- /test/unit/config/writer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/config/writer/test_hadoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/config/writer/test_hadoop.py -------------------------------------------------------------------------------- /test/unit/node/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/node/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/node/test_node.py -------------------------------------------------------------------------------- /test/unit/rmscheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/rmscheduler/__init__.py -------------------------------------------------------------------------------- /test/unit/rmscheduler/test_hodjob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/rmscheduler/test_hodjob.py -------------------------------------------------------------------------------- /test/unit/rmscheduler/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/rmscheduler/test_job.py -------------------------------------------------------------------------------- /test/unit/rmscheduler/test_resourcemanagerscheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/rmscheduler/test_resourcemanagerscheduler.py -------------------------------------------------------------------------------- /test/unit/rmscheduler/test_rm_pbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/rmscheduler/test_rm_pbs.py -------------------------------------------------------------------------------- /test/unit/subcommands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/subcommands/test_subcommands_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/subcommands/test_subcommands_batch.py -------------------------------------------------------------------------------- /test/unit/subcommands/test_subcommands_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/subcommands/test_subcommands_clean.py -------------------------------------------------------------------------------- /test/unit/subcommands/test_subcommands_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/subcommands/test_subcommands_clone.py -------------------------------------------------------------------------------- /test/unit/subcommands/test_subcommands_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/subcommands/test_subcommands_connect.py -------------------------------------------------------------------------------- /test/unit/subcommands/test_subcommands_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/subcommands/test_subcommands_create.py -------------------------------------------------------------------------------- /test/unit/subcommands/test_subcommands_dists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/subcommands/test_subcommands_dists.py -------------------------------------------------------------------------------- /test/unit/subcommands/test_subcommands_genconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/subcommands/test_subcommands_genconfig.py -------------------------------------------------------------------------------- /test/unit/subcommands/test_subcommands_helptemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/subcommands/test_subcommands_helptemplate.py -------------------------------------------------------------------------------- /test/unit/subcommands/test_subcommands_listcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/subcommands/test_subcommands_listcmd.py -------------------------------------------------------------------------------- /test/unit/subcommands/test_subcommands_relabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/subcommands/test_subcommands_relabel.py -------------------------------------------------------------------------------- /test/unit/test_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/test_cluster.py -------------------------------------------------------------------------------- /test/unit/test_hod_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/test_hod_local.py -------------------------------------------------------------------------------- /test/unit/test_hod_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/test_hod_main.py -------------------------------------------------------------------------------- /test/unit/test_hodproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/test_hodproc.py -------------------------------------------------------------------------------- /test/unit/test_mpiservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/test_mpiservice.py -------------------------------------------------------------------------------- /test/unit/test_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/test_option.py -------------------------------------------------------------------------------- /test/unit/test_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/test_table.py -------------------------------------------------------------------------------- /test/unit/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/util.py -------------------------------------------------------------------------------- /test/unit/work/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/work/__init__.py -------------------------------------------------------------------------------- /test/unit/work/test_work_config_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/test/unit/work/test_work_config_service.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcugent/hanythingondemand/HEAD/tox.ini --------------------------------------------------------------------------------