From f3d2529d67765cf7be447f9ac34b5c067166c108 Mon Sep 17 00:00:00 2001 From: oscwiag Date: Mon, 13 Jan 2025 15:09:12 +0000 Subject: [PATCH] [ci skip] Autodoc commit for 534d69330da837308d7a7f7c69c578bb150dd723. --- .../authentication/overview/map-user.rst.txt | 2 +- develop/_sources/enable-desktops.rst.txt | 2 +- .../enable-desktops/add-cluster.rst.txt | 2 +- .../custom-job-submission.rst.txt | 16 +++++----- .../modify-form-attributes.rst.txt | 8 ++--- .../release-notes/v1.2-release-notes.rst.txt | 6 ++-- .../release-notes/v1.6-release-notes.rst.txt | 28 ++++++++-------- .../release-notes/v3.0-release-notes.rst.txt | 22 ++++++------- develop/_sources/requirements.rst.txt | 6 ++-- develop/authentication/overview/map-user.html | 2 +- develop/enable-desktops.html | 4 +-- develop/enable-desktops/add-cluster.html | 2 +- .../custom-job-submission.html | 16 +++++----- .../modify-form-attributes.html | 10 +++--- develop/release-notes/v1.2-release-notes.html | 6 ++-- develop/release-notes/v1.6-release-notes.html | 32 +++++++++---------- develop/release-notes/v3.0-release-notes.html | 20 ++++++------ develop/requirements.html | 10 +++--- develop/searchindex.js | 2 +- 19 files changed, 98 insertions(+), 98 deletions(-) diff --git a/develop/_sources/authentication/overview/map-user.rst.txt b/develop/_sources/authentication/overview/map-user.rst.txt index 970e45447..289e3fb9b 100644 --- a/develop/_sources/authentication/overview/map-user.rst.txt +++ b/develop/_sources/authentication/overview/map-user.rst.txt @@ -48,7 +48,7 @@ Regular Expression User Mapping ------------------------------- The simplest and fastest way to map a ``REMOTE_USER`` to a system user is through -:ref:`user_map_match `. It isn't directly +:ref:`user_map_match `. This is not directly regular expression matching, but it's close enough for most use cases. See it's documentation for examples and more. diff --git a/develop/_sources/enable-desktops.rst.txt b/develop/_sources/enable-desktops.rst.txt index 91e4ec872..cd59e8fd0 100644 --- a/develop/_sources/enable-desktops.rst.txt +++ b/develop/_sources/enable-desktops.rst.txt @@ -4,7 +4,7 @@ Enable Interactive Desktop ========================== This installation guide will walk you through setting up an Interactive Desktop -app that your users will be able to use to launch a Gnome 2, Mate, or Xfce +app that your users will be able to use to launch a Gnome 2, Mate, or XFCE desktop on a compute node within your HPC cluster. The user should then be able to connect to a running session through their browser using the `noVNC`_ client. diff --git a/develop/_sources/enable-desktops/add-cluster.rst.txt b/develop/_sources/enable-desktops/add-cluster.rst.txt index e49d35344..d481f4c5a 100644 --- a/develop/_sources/enable-desktops/add-cluster.rst.txt +++ b/develop/_sources/enable-desktops/add-cluster.rst.txt @@ -34,7 +34,7 @@ modify. :file:`/etc/ood/config/clusters.d/`. #. Navigate to your OnDemand site, in particular the Dashboard App, and you - should see in the top dropdown menu "Interactive Apps" ⇒ "Oakley Desktop" + should see in the top drop-down menu "Interactive Apps" ⇒ "Oakley Desktop" (or whatever you set as the ``title``). After choosing "Oakley Desktop" from the menu, you should be presented with diff --git a/develop/_sources/enable-desktops/custom-job-submission.rst.txt b/develop/_sources/enable-desktops/custom-job-submission.rst.txt index afd03b120..ee306b10e 100644 --- a/develop/_sources/enable-desktops/custom-job-submission.rst.txt +++ b/develop/_sources/enable-desktops/custom-job-submission.rst.txt @@ -55,39 +55,39 @@ Since it has the extension ``.erb`` we can take advantage of the Ruby language to make the configuration file dynamic. In particular, you will now have access to the user-submitted form arguments defined as: -bc_num_hours +``bc_num_hours`` *Default:* ``"1"`` A Ruby ``String`` containing the number of hours a user requested for the Desktop batch job to run. -bc_num_slots +``bc_num_slots`` *Default:* ``"1"`` A Ruby ``String`` containing either the number of nodes or processors (depending on the type of resource manager the cluster uses) a user requested. -bc_account +``bc_account`` *Default:* ``""`` A Ruby ``String`` that holds the account the user supplied to charge the job against. -bc_queue +``bc_queue`` *Default:* ``""`` A Ruby ``String`` that holds the queue the user requested for the job to run on. -bc_email_on_started +``bc_email_on_started`` *Default:* ``"0"`` A Ruby ``String`` that can either be ``"0"`` (do not send the user an email when the job starts) or ``"1"`` (send an email to the user when the job starts). -node_type +``node_type`` *Default:* ``""`` A Ruby ``String`` that can be used for more advanced job submission. This is @@ -172,7 +172,7 @@ This can be handled in your custom job submission configuration file as such: - "select=1:ncpus=<%= bc_num_slots.blank? ? 1 : bc_num_slots.to_i %>" All `batch script options`_ are underneath the ``script`` configuration option. -In particular since there is no option to modify number of nodes/cpus, we need +In particular since there is no option to modify number of nodes or CPUs, we need to directly interact with the ``native`` command line arguments. This is specified as an array of :command:`qsub` arguments. @@ -224,7 +224,7 @@ LinuxHost Adapter -------------------- If you're using the :ref:`resource-manager-linuxhost` you actually don't *need* a specialized -submit.yml.erb. There is no need to specify resources like the other adapters above. +``submit.yml.erb``. There is no need to specify resources like the other adapters above. You can however, use it to override the adapter's global fields for mount binding and specifying which container use. diff --git a/develop/_sources/enable-desktops/modify-form-attributes.rst.txt b/develop/_sources/enable-desktops/modify-form-attributes.rst.txt index 23152480c..4e7be05be 100644 --- a/develop/_sources/enable-desktops/modify-form-attributes.rst.txt +++ b/develop/_sources/enable-desktops/modify-form-attributes.rst.txt @@ -6,7 +6,7 @@ Modify Form Attributes In some cases you may want to modify the form presented to the user as well as any other configurable options. Some examples: -- Use an Xfce desktop instead of Mate desktop. +- Use an XFCE desktop instead of Mate desktop. - Remove the "Queue" form field as your scheduler will auto select the correct queue. - Hard-code the "Number of nodes" to just 1, so that users can't launch @@ -75,7 +75,7 @@ above options. option. As this is an array, you can't simply prepend or append, you will need to completely redefine it with your included modifications. -Change to Xfce Desktop +Change to XFCE Desktop ---------------------- The default installation has the ``desktop`` attribute hard-coded to the value @@ -92,7 +92,7 @@ following edits to your custom YAML configuration file: attributes: desktop: "xfce" -And all Desktops will attempt to launch the Xfce desktop. +And all Desktops will attempt to launch the XFCE desktop. .. note:: @@ -288,7 +288,7 @@ Because the :ref:`resource-manager-linuxhost` is not like a traditional schedule there are very few form items you'll need to add or have your users choose from. This is a minimal configuration to launch an XFCE desktop environment on a cluster -we call owens_login. You'll notice a lot of entries are null because they don't +we call ``owens_login``. You'll notice a lot of entries are null because they don't really have any meaning in the LinuxHost Adapter. .. code-block:: yaml diff --git a/develop/_sources/release-notes/v1.2-release-notes.rst.txt b/develop/_sources/release-notes/v1.2-release-notes.rst.txt index cf3533e1f..18220da64 100644 --- a/develop/_sources/release-notes/v1.2-release-notes.rst.txt +++ b/develop/_sources/release-notes/v1.2-release-notes.rst.txt @@ -16,14 +16,14 @@ Some highlights of this release: ``/var/log/nginx//error.log`` on the corresponding OnDemand node. - The Files App now opens and displays PDF and HTML files in a new tab when a user attempts to View the selected file. -- A multitude of bugfixes... +- A multitude of bug fixes... Upgrading from v1.1 ------------------- .. warning:: - If updating from a version other than v1.1 it is recommended you walkthrough + If updating from a version other than v1.1 it is recommended you walk-through the full `updating`_ instructions. #. You will first need to `update the PUN utility`_. @@ -35,7 +35,7 @@ Upgrading from v1.1 to the new global location:: /etc/ood/config/nginx_stage.yml -#. Finally you will need to walkthrough `updating the applications`_. +#. Finally you will need to walk-through `updating the applications`_. .. _updating: https://osc.github.io/ood-documentation/release-1.2/updating.html .. _update the pun utility: https://osc.github.io/ood-documentation/release-1.2/updating/update-pun-utility.html diff --git a/develop/_sources/release-notes/v1.6-release-notes.rst.txt b/develop/_sources/release-notes/v1.6-release-notes.rst.txt index b953b771d..f5e971be3 100644 --- a/develop/_sources/release-notes/v1.6-release-notes.rst.txt +++ b/develop/_sources/release-notes/v1.6-release-notes.rst.txt @@ -16,8 +16,8 @@ Highlights in 1.6: - `Changed 'Open in Terminal' button to offer multiple options when OOD_SSH_HOSTS is set`_ - `Enable BatchConnect applications to raise errors after form submission`_ - `Added version strings to Dashboard`_ -- `Changed ngnix_stage to always remove stale PID files`_ -- `Add ability to disable RewriteEngine in Apache config`_ +- `Changed nginx_stage to always remove stale PID files`_ +- `Add ability to disable RewriteEngine in Apache configuration`_ - `Many bug fixes`_ Upgrading from v1.5 @@ -43,8 +43,8 @@ Upgrading from v1.5 Infrastructure Changes ---------------------- -- `Changed ngnix_stage to always remove stale PID files`_ -- `Add ability to disable RewriteEngine in Apache config`_ +- `Changed nginx_stage to always remove stale PID files`_ +- `Add ability to disable RewriteEngine in Apache configuration`_ Application Version Changes ---------------------------- @@ -90,7 +90,7 @@ OnDemand passed a security audit At the end of 2018 `TrustedCI`_ completed a security audit of OnDemand and quoting the major findings of the audit: "No major issues were found in a comprehensive evaluation of the architecture and critical resources in Open OnDemand, and analysis of potential code weaknesses in critical components." -Thanks to Elisa Heymann, Joel Atkins and Barton P. Miller for performing the audit! The full report is available as a PDF at `openondemand.org`_. +Thanks to ``Elisa Heymann``, ``Joel Atkins`` and ``Barton P. Miller`` for performing the audit! The full report is available as a PDF at `openondemand.org`_. .. _openondemand.org: https://openondemand.org/documents/Open%20OnDemand%20Trusted%20CI%20Engagement%20Report.pdf @@ -124,7 +124,7 @@ See :ref:`customization_localization` for details. Added rendering of HTML or Markdown in Job Composer template manifests ...................................................................... -If the environment variable ``RENDER_TEMPLATE_NOTES_AS_MARKDOWN`` is set to a truthy value then job template manifests displayed in the Job Composer that are written in Markdown will be run through the RedCarpet renderer. HTML values will always be rendered as HTML. This will allow sites to embed images or links to documentation in their templates. (`ood-mjobs#291`_) +If the environment variable ``RENDER_TEMPLATE_NOTES_AS_MARKDOWN`` is set to a truthy value then job template manifests displayed in the Job Composer that are written in Markdown will be rendered through the RedCarpet library. HTML values will always be rendered as HTML. This will allow sites to embed images or links to documentation in their templates. (`ood-mjobs#291`_) .. _ood-mjobs#291: https://github.com/OSC/ood-myjobs/issues/278 @@ -132,7 +132,7 @@ If the environment variable ``RENDER_TEMPLATE_NOTES_AS_MARKDOWN`` is set to a tr Added support for fetching quota from a URL ........................................... -File usage quota warnings displayed on the Dashboard may now use a URL as their data source. Thanks to Dan Dietz at Purdue for the initial work on this feature. +File usage quota warnings displayed on the Dashboard may now use a URL as their data source. Thanks to ``Dan Dietz`` at Purdue for the initial work on this feature. Added VNC quality and compression controls @@ -158,12 +158,12 @@ For running interactive sessions, the host name becomes a clickable link to open Changed 'Open in Terminal' button to offer multiple options when OOD_SSH_HOSTS is set ..................................................................................... -In the Files app, if the environment variable ``OOD_SSH_HOSTS`` is set to a comma delimited value of ``host:title``, then the Open in Terminal button will display a dropdown of hosts to ssh to, instead of ssh-ing to the default host. For example, in the image below I set ``OOD_SSH_HOSTS="owens.osc.edu:Owens,pitzer.osc.edu:Pitzer,ruby.osc.edu:Ruby"``: +In the Files app, if the environment variable ``OOD_SSH_HOSTS`` is set to a comma delimited value of ``host:title``, then the Open in Terminal button will display a drop-down of hosts to ssh to, instead of shelling to the default host. For example, in the image below I set ``OOD_SSH_HOSTS="owens.osc.edu:Owens,pitzer.osc.edu:Pitzer,ruby.osc.edu:Ruby"``: .. figure:: /images/files-open-in-terminal.png :align: center -.. note:: In a future version of OnDemand we will change this app to load the hosts from the cluster configs. +.. note:: In a future version of OnDemand we will change this app to load the hosts from the cluster configurations. Enable BatchConnect applications to raise errors after form submission @@ -178,18 +178,18 @@ Added version strings to Dashboard The Dashboard will now display the version of OnDemand and the Dashboard in the footer. Interactive applications will display their versions next to their title on their launch page. -Changed ngnix_stage to always remove stale PID files -.................................................... +Changed ``nginx_stage`` to always remove stale PID files +......................................................... ``nginx_stage clean`` will now remove PID and socket files for processes that are not longer running. Whenever a stale PID files is deleted its removal is reported on ``stderr``. (`ondemand#11`_) .. _ondemand#11: https://github.com/OSC/ondemand/issues/11 -Add ability to disable RewriteEngine in Apache config -..................................................... +Add ability to disable RewriteEngine in Apache configuration +............................................................ -You can now omit enabling the RewriteEngine by adding ``use_rewrites: false`` to the ``/etc/ood/config/ood_portal.yml`` config file and re-running the ``sudo /opt/ood/ood-portal-generator/sbin/update_ood_portal`` to update the ood-portal.conf Apache config. +You can now omit enabling the RewriteEngine by adding ``use_rewrites: false`` to the ``/etc/ood/config/ood_portal.yml`` configuration file and re-running the ``sudo /opt/ood/ood-portal-generator/sbin/update_ood_portal`` to update the ood-portal.conf Apache configuration. Many bug fixes diff --git a/develop/_sources/release-notes/v3.0-release-notes.rst.txt b/develop/_sources/release-notes/v3.0-release-notes.rst.txt index 55bd9bebd..bc7d9f625 100644 --- a/develop/_sources/release-notes/v3.0-release-notes.rst.txt +++ b/develop/_sources/release-notes/v3.0-release-notes.rst.txt @@ -43,10 +43,10 @@ Thanks! ------- We'd like to thank a bunch of folks' for contributing to this release. -As we only know the github username, that's what's being referenced here. +As we only know the Github username, that's what's being referenced here. We'd like to thank Harvard for many contributions around layouts -and navitation. Notably, ``adaybujeda`` and ``whorka`` to name a few. +and navigation. Notably, ``adaybujeda`` and ``whorka`` to name a few. We'd like to thank CSC Finland for contributing remote file browsing. Specifically ``robinkar`` and ``CSC-swesters``. @@ -64,7 +64,7 @@ time contributing to Open OnDemand. * ``georgiastuart`` made their first contribution in #2323 * ``covert8`` made their first contribution in #2327 -If we've missed listing anyone here, please let us know! +If we have missed listing anyone here, please let us know! Security Fixes -------------- @@ -72,7 +72,7 @@ Security Fixes Versions prior to 3.0 are vulnerable to these security related issues: * ``OOD_ALLOWLIST_PATH`` can be circumvented in several scenarios. -* Users may inject malicous Ruby code into certian user owned ERB files +* Users may inject malicious Ruby code into certain user owned ERB files that the system reads. These have been fixed in version 3.0.2 and up. Thank you to the @@ -92,8 +92,8 @@ Support for Ubuntu 18.04 has been dropped because the platform has upgraded to Ruby on Rails 6.1. This version is not compatible with Ruby 2.5 which is what Ubuntu 18.04 has. -context.json file locations have changed -**************************************** +``context.json`` file locations have changed +******************************************** This is an internal item to Open OnDemand and not likely to really affect you at all. @@ -107,8 +107,8 @@ Version 3.0 now writes files like ``~/ondemand/data/sys/dashboard/batch_connect/ Deprecations ............ -Autoloading during initialization is deprecated. -************************************************ +Auto-loading during initialization is deprecated. +************************************************* .. include:: autoload.inc @@ -117,8 +117,8 @@ NavConfig is deprecated .. include:: navconfig.inc -whitelist & blacklist configs are deprecated -******************************************** +whitelist & blacklist configurations are deprecated +*************************************************** .. include:: allowlist.inc @@ -196,7 +196,7 @@ Upgrade directions sudo yum install -y https://yum.osc.edu/ondemand/3.0/ondemand-release-web-3.0-1.noarch.rpm -#. Enable dependency repos +#. Enable dependency repositories **RHEL/Rocky 8 only** diff --git a/develop/_sources/requirements.rst.txt b/develop/_sources/requirements.rst.txt index c7ef5b632..fea1dacf0 100644 --- a/develop/_sources/requirements.rst.txt +++ b/develop/_sources/requirements.rst.txt @@ -14,7 +14,7 @@ At this time OnDemand only supports the following operating systems and architec :format: html .. csv-table:: Operating System and Architecture Support - :header: "","x86_64","aarch64/arm64","ppc64le" + :header: "","``x86_64``","``aarch64/arm64``","``ppc64le``" :stub-columns: 1 "RedHat/Rocky Linux/AlmaLinux 8",:raw-html:`✅`,:raw-html:`✅`,:raw-html:`✅` @@ -33,7 +33,7 @@ On the Web node serving OnDemand itself: - `lsof`_ - `sudo`_ - `OnDemand repository`_: - - ondemand-{{ondemand_version}}-1.el7.x86_64.rpm + - ``ondemand-{{ondemand_version}}-1.el9.x86_64.rpm`` .. _lsof: https://en.wikipedia.org/wiki/Lsof .. _OnDemand repository: https://openondemand.org/ @@ -58,7 +58,7 @@ Hardware Requirements At `OSC`_ we have not quantified the minimum hardware requirements for OnDemand. The VMs that run OnDemand have 16 cores and 64GB RAM. According to our Ganglia metrics that is over powered for our normal utilization. We average 150MB memory per PUN and the average CPU percentage per Per User NGINX (PUN) is 4%. Our OnDemand instance serves over 600 unique users each month and at any given time usually has 60-100 PUN processes running. -The Passenger apps that make up the core of OnDemand (that NGINX is configured with), are each killed after a short period (5 minutes) of inactivity from the user, and when users are using NoVNC or connecting to Jupyter Notebook or RStudio on a compute node, Apache is proxying these users, bypassing the PUN completely. So it can happen that 60 PUNs are running but twice the number of users are actually being served. +The Passenger apps that make up the core of OnDemand (that NGINX is configured with), are each killed after a short period (5 minutes) of inactivity from the user, and when users are using NoVNC or connecting to Jupyter Notebook or RStudio on a compute node, Apache proxies these users, bypassing the PUN completely. So it can happen that 60 PUNs are running but twice the number of users are actually being served. Another sizing factor that has impacted us in the past is the size of the ``/tmp`` partition. We have had incidents where ``/tmp`` is exhausted and so have increased the size from 20GB to 50GB. diff --git a/develop/authentication/overview/map-user.html b/develop/authentication/overview/map-user.html index 482d0af3a..ab179f4b1 100644 --- a/develop/authentication/overview/map-user.html +++ b/develop/authentication/overview/map-user.html @@ -179,7 +179,7 @@

2.1. Remote User

2.2. Regular Expression User Mapping

The simplest and fastest way to map a REMOTE_USER to a system user is through -user_map_match. It isn’t directly +user_map_match. This is not directly regular expression matching, but it’s close enough for most use cases. See it’s documentation for examples and more.

diff --git a/develop/enable-desktops.html b/develop/enable-desktops.html index bbc4c0620..58f4c68fb 100644 --- a/develop/enable-desktops.html +++ b/develop/enable-desktops.html @@ -125,7 +125,7 @@

Enable Interactive Desktop

This installation guide will walk you through setting up an Interactive Desktop -app that your users will be able to use to launch a Gnome 2, Mate, or Xfce +app that your users will be able to use to launch a Gnome 2, Mate, or XFCE desktop on a compute node within your HPC cluster. The user should then be able to connect to a running session through their browser using the noVNC client.

@@ -141,7 +141,7 @@
  • 1. Software Requirements
  • 2. Add a Cluster
  • 3. Modify Form Attributes
      -
    • Change to Xfce Desktop
    • +
    • Change to XFCE Desktop
    • Remove Form Field
    • Hard-code a Form Field
    • Change a Label
    • diff --git a/develop/enable-desktops/add-cluster.html b/develop/enable-desktops/add-cluster.html index f1134b7fc..39be75a04 100644 --- a/develop/enable-desktops/add-cluster.html +++ b/develop/enable-desktops/add-cluster.html @@ -153,7 +153,7 @@
    • Navigate to your OnDemand site, in particular the Dashboard App, and you -should see in the top dropdown menu “Interactive Apps” ⇒ “Oakley Desktop” +should see in the top drop-down menu “Interactive Apps” ⇒ “Oakley Desktop” (or whatever you set as the title).

      After choosing “Oakley Desktop” from the menu, you should be presented with a form to “Launch” a Desktop session to the given cluster.

      diff --git a/develop/enable-desktops/custom-job-submission.html b/develop/enable-desktops/custom-job-submission.html index 41cac06fd..81a80a75d 100644 --- a/develop/enable-desktops/custom-job-submission.html +++ b/develop/enable-desktops/custom-job-submission.html @@ -176,29 +176,29 @@ to make the configuration file dynamic. In particular, you will now have access to the user-submitted form arguments defined as:

      -
      bc_num_hours

      Default: "1"

      +
      bc_num_hours

      Default: "1"

      A Ruby String containing the number of hours a user requested for the Desktop batch job to run.

      -
      bc_num_slots

      Default: "1"

      +
      bc_num_slots

      Default: "1"

      A Ruby String containing either the number of nodes or processors (depending on the type of resource manager the cluster uses) a user requested.

      -
      bc_account

      Default: ""

      +
      bc_account

      Default: ""

      A Ruby String that holds the account the user supplied to charge the job against.

      -
      bc_queue

      Default: ""

      +
      bc_queue

      Default: ""

      A Ruby String that holds the queue the user requested for the job to run on.

      -
      bc_email_on_started

      Default: "0"

      +
      bc_email_on_started

      Default: "0"

      A Ruby String that can either be "0" (do not send the user an email when the job starts) or "1" (send an email to the user when the job starts).

      -
      node_type

      Default: ""

      +
      node_type

      Default: ""

      A Ruby String that can be used for more advanced job submission. This is an advanced option that is disabled by default and does nothing if you do enable it, unless you add it to a custom job submission configuration file.

      @@ -268,7 +268,7 @@

      PBS Professionalbatch script options are underneath the script configuration option. -In particular since there is no option to modify number of nodes/cpus, we need +In particular since there is no option to modify number of nodes or CPUs, we need to directly interact with the native command line arguments. This is specified as an array of qsub arguments.

      If you would like to mimic how Torque handles bc_num_slots (number of @@ -309,7 +309,7 @@

      PBS Professional

      LinuxHost Adapter

      If you’re using the LinuxHost you actually don’t need a specialized -submit.yml.erb. There is no need to specify resources like the other adapters above.

      +submit.yml.erb. There is no need to specify resources like the other adapters above.

      You can however, use it to override the adapter’s global fields for mount binding and specifying which container use.

      # /etc/ood/config/apps/bc_desktop/submit/linuxhost_submit.yml.erb
      diff --git a/develop/enable-desktops/modify-form-attributes.html b/develop/enable-desktops/modify-form-attributes.html
      index 0d06c4b66..c365b3f75 100644
      --- a/develop/enable-desktops/modify-form-attributes.html
      +++ b/develop/enable-desktops/modify-form-attributes.html
      @@ -76,7 +76,7 @@
       
    • 1. Software Requirements
    • 2. Add a Cluster
    • 3. Modify Form Attributes
        -
      • Change to Xfce Desktop
      • +
      • Change to XFCE Desktop
      • Remove Form Field
      • Hard-code a Form Field
      • Change a Label
      • @@ -137,7 +137,7 @@

        In some cases you may want to modify the form presented to the user as well as any other configurable options. Some examples:

          -
        • Use an Xfce desktop instead of Mate desktop.

        • +
        • Use an XFCE desktop instead of Mate desktop.

        • Remove the “Queue” form field as your scheduler will auto select the correct queue.

        • Hard-code the “Number of nodes” to just 1, so that users can’t launch @@ -199,7 +199,7 @@ need to completely redefine it with your included modifications.

    • -

      Change to Xfce Desktop

      +

      Change to XFCE Desktop

      The default installation has the desktop attribute hard-coded to the value "mate". If you would like to change this to use "xfce" you can make the following edits to your custom YAML configuration file:

      @@ -211,7 +211,7 @@

      Change to Xfce Desktop desktop: "xfce"

      -

      And all Desktops will attempt to launch the Xfce desktop.

      +

      And all Desktops will attempt to launch the XFCE desktop.

      Note

      Whenever you hard-code a form attribute to a value like "xfce" in the @@ -374,7 +374,7 @@

      Minimal LinuxHost FormBecause the LinuxHost is not like a traditional scheduler, there are very few form items you’ll need to add or have your users choose from.

      This is a minimal configuration to launch an XFCE desktop environment on a cluster -we call owens_login. You’ll notice a lot of entries are null because they don’t +we call owens_login. You’ll notice a lot of entries are null because they don’t really have any meaning in the LinuxHost Adapter.

      # /etc/ood/config/apps/bc_desktop/owens_login_desktop.yml
       ---
      diff --git a/develop/release-notes/v1.2-release-notes.html b/develop/release-notes/v1.2-release-notes.html
      index 90b1d2ed9..bd3da0d63 100644
      --- a/develop/release-notes/v1.2-release-notes.html
      +++ b/develop/release-notes/v1.2-release-notes.html
      @@ -152,13 +152,13 @@
       /var/log/nginx/<user>/error.log on the corresponding OnDemand node.

    • The Files App now opens and displays PDF and HTML files in a new tab when a user attempts to View the selected file.

    • -
    • A multitude of bugfixes…

    • +
    • A multitude of bug fixes…

    Upgrading from v1.1

    Warning

    -

    If updating from a version other than v1.1 it is recommended you walkthrough +

    If updating from a version other than v1.1 it is recommended you walk-through the full updating instructions.

      @@ -173,7 +173,7 @@

      Upgrading from v1.1updating the applications.

      +
    1. Finally you will need to walk-through updating the applications.

    diff --git a/develop/release-notes/v1.6-release-notes.html b/develop/release-notes/v1.6-release-notes.html index e99f8a4c1..80e29b6ee 100644 --- a/develop/release-notes/v1.6-release-notes.html +++ b/develop/release-notes/v1.6-release-notes.html @@ -110,8 +110,8 @@
  • Changed ‘Open in Terminal’ button to offer multiple options when OOD_SSH_HOSTS is set
  • Enable BatchConnect applications to raise errors after form submission
  • Added version strings to Dashboard
  • -
  • Changed ngnix_stage to always remove stale PID files
  • -
  • Add ability to disable RewriteEngine in Apache config
  • +
  • Changed nginx_stage to always remove stale PID files
  • +
  • Add ability to disable RewriteEngine in Apache configuration
  • Many bug fixes
  • @@ -169,8 +169,8 @@
  • Changed ‘Open in Terminal’ button to offer multiple options when OOD_SSH_HOSTS is set

  • Enable BatchConnect applications to raise errors after form submission

  • Added version strings to Dashboard

  • -
  • Changed ngnix_stage to always remove stale PID files

  • -
  • Add ability to disable RewriteEngine in Apache config

  • +
  • Changed nginx_stage to always remove stale PID files

  • +
  • Add ability to disable RewriteEngine in Apache configuration

  • Many bug fixes

  • @@ -196,8 +196,8 @@

    Upgrading from v1.5

    Infrastructure Changes

    @@ -247,7 +247,7 @@

    Details

    OnDemand passed a security audit

    At the end of 2018 TrustedCI completed a security audit of OnDemand and quoting the major findings of the audit: “No major issues were found in a comprehensive evaluation of the architecture and critical resources in Open OnDemand, and analysis of potential code weaknesses in critical components.”

    -

    Thanks to Elisa Heymann, Joel Atkins and Barton P. Miller for performing the audit! The full report is available as a PDF at openondemand.org.

    +

    Thanks to Elisa Heymann, Joel Atkins and Barton P. Miller for performing the audit! The full report is available as a PDF at openondemand.org.

    Added job array support for LSF and PBSPro adapters

    @@ -265,11 +265,11 @@

    Added localization options to the Dashboard and Job Composer

    Added rendering of HTML or Markdown in Job Composer template manifests

    -

    If the environment variable RENDER_TEMPLATE_NOTES_AS_MARKDOWN is set to a truthy value then job template manifests displayed in the Job Composer that are written in Markdown will be run through the RedCarpet renderer. HTML values will always be rendered as HTML. This will allow sites to embed images or links to documentation in their templates. (ood-mjobs#291)

    +

    If the environment variable RENDER_TEMPLATE_NOTES_AS_MARKDOWN is set to a truthy value then job template manifests displayed in the Job Composer that are written in Markdown will be rendered through the RedCarpet library. HTML values will always be rendered as HTML. This will allow sites to embed images or links to documentation in their templates. (ood-mjobs#291)

    Added support for fetching quota from a URL

    -

    File usage quota warnings displayed on the Dashboard may now use a URL as their data source. Thanks to Dan Dietz at Purdue for the initial work on this feature.

    +

    File usage quota warnings displayed on the Dashboard may now use a URL as their data source. Thanks to Dan Dietz at Purdue for the initial work on this feature.

    Added VNC quality and compression controls

    @@ -288,13 +288,13 @@

    Open Shell to compute node that a VNC job is running on

    Changed ‘Open in Terminal’ button to offer multiple options when OOD_SSH_HOSTS is set

    -

    In the Files app, if the environment variable OOD_SSH_HOSTS is set to a comma delimited value of host:title, then the Open in Terminal button will display a dropdown of hosts to ssh to, instead of ssh-ing to the default host. For example, in the image below I set OOD_SSH_HOSTS="owens.osc.edu:Owens,pitzer.osc.edu:Pitzer,ruby.osc.edu:Ruby":

    +

    In the Files app, if the environment variable OOD_SSH_HOSTS is set to a comma delimited value of host:title, then the Open in Terminal button will display a drop-down of hosts to ssh to, instead of shelling to the default host. For example, in the image below I set OOD_SSH_HOSTS="owens.osc.edu:Owens,pitzer.osc.edu:Pitzer,ruby.osc.edu:Ruby":

    ../_images/files-open-in-terminal.png

    Note

    -

    In a future version of OnDemand we will change this app to load the hosts from the cluster configs.

    +

    In a future version of OnDemand we will change this app to load the hosts from the cluster configurations.

    @@ -305,13 +305,13 @@

    Enable BatchConnect applications to raise errors after form submissionAdded version strings to Dashboard

    The Dashboard will now display the version of OnDemand and the Dashboard in the footer. Interactive applications will display their versions next to their title on their launch page.

    -
    -

    Changed ngnix_stage to always remove stale PID files

    +
    +

    Changed nginx_stage to always remove stale PID files

    nginx_stage clean will now remove PID and socket files for processes that are not longer running. Whenever a stale PID files is deleted its removal is reported on stderr. (ondemand#11)

    -
    -

    Add ability to disable RewriteEngine in Apache config

    -

    You can now omit enabling the RewriteEngine by adding use_rewrites: false to the /etc/ood/config/ood_portal.yml config file and re-running the sudo /opt/ood/ood-portal-generator/sbin/update_ood_portal to update the ood-portal.conf Apache config.

    +
    +

    Add ability to disable RewriteEngine in Apache configuration

    +

    You can now omit enabling the RewriteEngine by adding use_rewrites: false to the /etc/ood/config/ood_portal.yml configuration file and re-running the sudo /opt/ood/ood-portal-generator/sbin/update_ood_portal to update the ood-portal.conf Apache configuration.

    Many bug fixes

    diff --git a/develop/release-notes/v3.0-release-notes.html b/develop/release-notes/v3.0-release-notes.html index 2b3316e43..6c5e7aa78 100644 --- a/develop/release-notes/v3.0-release-notes.html +++ b/develop/release-notes/v3.0-release-notes.html @@ -205,9 +205,9 @@

    New Features

    Thanks!

    We’d like to thank a bunch of folks’ for contributing to this release. -As we only know the github username, that’s what’s being referenced here.

    +As we only know the Github username, that’s what’s being referenced here.

    We’d like to thank Harvard for many contributions around layouts -and navitation. Notably, adaybujeda and whorka to name a few.

    +and navigation. Notably, adaybujeda and whorka to name a few.

    We’d like to thank CSC Finland for contributing remote file browsing. Specifically robinkar and CSC-swesters.

    We’d also like to give a big thanks to these folks’ for their first @@ -223,14 +223,14 @@

    Thanks!
  • georgiastuart made their first contribution in #2323

  • covert8 made their first contribution in #2327

  • -

    If we’ve missed listing anyone here, please let us know!

    +

    If we have missed listing anyone here, please let us know!

    Security Fixes

    Versions prior to 3.0 are vulnerable to these security related issues:

    • OOD_ALLOWLIST_PATH can be circumvented in several scenarios.

    • -
    • Users may inject malicous Ruby code into certian user owned ERB files +

    • Users may inject malicious Ruby code into certain user owned ERB files that the system reads.

    These have been fixed in version 3.0.2 and up. Thank you to the @@ -248,7 +248,7 @@

    Support for Ubuntu 18.04 has been dropped. -

    context.json file locations have changed

    +

    context.json file locations have changed

    This is an internal item to Open OnDemand and not likely to really affect you at all.

    In versions 2.0 and below, batch connect apps wrote a context.json file to a directory like ~/ondemand/data/sys/dashboard/batch_connect/sys/<APPNAME>/context.json. @@ -259,8 +259,8 @@

    context.json file locations have changed

    Deprecations

    -
    -

    Autoloading during initialization is deprecated.

    +
    +

    Auto-loading during initialization is deprecated.

    This comes from the Ruby on Rails framework that Open OnDemand utilizes. It affects initializers you may have written, for example to Add Shortcuts to Files Menu.

    To resolve this, wrap your code in a Rails.application.config.after_initialize block.

    @@ -294,8 +294,8 @@

    NavConfig is deprecatedSee Limit auto generated menu bars and the nav_categories configuration property for more details.

    -
    -

    whitelist & blacklist configs are deprecated

    +
    +

    whitelist & blacklist configurations are deprecated

    These configurations have been updated to use more inclusive language.

    Configurations that have whitelist or blacklist in the name have been deprecated in version 3.0 and replaced with allowlist or blocklist respectively in version 4.0.

    @@ -385,7 +385,7 @@

    Upgrade directions
    sudo dnf module reset nodejs
     sudo dnf module enable nodejs:14
    diff --git a/develop/requirements.html b/develop/requirements.html
    index b913b44b3..ab9a39c88 100644
    --- a/develop/requirements.html
    +++ b/develop/requirements.html
    @@ -131,9 +131,9 @@ 

    Supported Operating SystemsTable 1 Operating System and Architecture Support -

    x86_64

    -

    aarch64/arm64

    -

    ppc64le

    +

    x86_64

    +

    aarch64/arm64

    +

    ppc64le

    @@ -183,7 +183,7 @@

    Software Requirements

    sudo

  • OnDemand repository:
      -
    • ondemand-4.0-1.el7.x86_64.rpm

    • +
    • ondemand-4.0-1.el9.x86_64.rpm

    @@ -203,7 +203,7 @@

    Software Requirements

    Hardware Requirements

    At OSC we have not quantified the minimum hardware requirements for OnDemand. The VMs that run OnDemand have 16 cores and 64GB RAM. According to our Ganglia metrics that is over powered for our normal utilization. We average 150MB memory per PUN and the average CPU percentage per Per User NGINX (PUN) is 4%. Our OnDemand instance serves over 600 unique users each month and at any given time usually has 60-100 PUN processes running.

    -

    The Passenger apps that make up the core of OnDemand (that NGINX is configured with), are each killed after a short period (5 minutes) of inactivity from the user, and when users are using NoVNC or connecting to Jupyter Notebook or RStudio on a compute node, Apache is proxying these users, bypassing the PUN completely. So it can happen that 60 PUNs are running but twice the number of users are actually being served.

    +

    The Passenger apps that make up the core of OnDemand (that NGINX is configured with), are each killed after a short period (5 minutes) of inactivity from the user, and when users are using NoVNC or connecting to Jupyter Notebook or RStudio on a compute node, Apache proxies these users, bypassing the PUN completely. So it can happen that 60 PUNs are running but twice the number of users are actually being served.

    Another sizing factor that has impacted us in the past is the size of the /tmp partition. We have had incidents where /tmp is exhausted and so have increased the size from 20GB to 50GB.

  • diff --git a/develop/searchindex.js b/develop/searchindex.js index a00be3550..f01d342a8 100644 --- a/develop/searchindex.js +++ b/develop/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"1. Edit the Open OnDemand Portal ood_portal.yml file": [[57, "edit-the-open-ondemand-portal-ood-portal-generator-configuration-file"]], "1. Enable Dependencies": [[59, "enable-dependencies"]], "2. Add repository and install": [[59, "add-repository-and-install"]], "2. Update CA (Dex Users only)": [[57, "update-ca-dex-users-only"]], "3. Restart the Apache service for the changes take effect.": [[57, "restart-the-apache-service-for-the-changes-take-effect"]], "3. Start services": [[59, "start-services"]], "4. Verify installation": [[59, "verify-installation"]], "A Break Down": [[58, "a-break-down"]], "A Working Example of a bin_overrides Script": [[62, null]], "Ability to add additional info to batch connect app": [[103, "ability-to-add-additional-info-to-batch-connect-app"]], "Accessing Remote File Systems": [[20, "accessing-remote-file-systems"]], "Acknowledgments": [[107, "acknowledgments"]], "Active Jobs App (from v1.4.4 to v1.5.0)": [[95, "active-jobs-app-from-v1-4-4-to-v1-5-0"]], "Active Jobs App (from v1.5.0 to v1.5.1)": [[96, "active-jobs-app-from-v1-5-0-to-v1-5-1"]], "Active Jobs: display list of nodes that a job is running on": [[98, "active-jobs-display-list-of-nodes-that-a-job-is-running-on"]], "ActiveJobs configuration changes": [[104, "activejobs-configuration-changes"]], "Add .env.local File": [[111, "add-env-local-file"]], "Add Custom Attribute to Form": [[115, "add-custom-attribute-to-form"], [116, "add-custom-attribute-to-form"]], "Add Custom Queues/Partitions": [[114, null]], "Add Custom Theme": [[15, null]], "Add Dev Configurations": [[111, "add-dev-configurations"]], "Add Grafana support for ActiveJobs app": [[102, "add-grafana-support-for-activejobs-app"]], "Add Help Message to Field": [[24, "add-help-message-to-field"]], "Add Keycloak config to OnDemand Apache for mod_auth_openidc": [[19, "add-keycloak-config-to-ondemand-apache-for-mod-auth-openidc"]], "Add OnDemand as a client": [[17, "add-ondemand-as-a-client"]], "Add SELinux": [[60, null]], "Add Shortcuts to Files Menu": [[20, "add-shortcuts-to-files-menu"]], "Add URLs to Help Menu": [[20, "add-urls-to-help-menu"]], "Add Web Framework": [[142, "add-web-framework"]], "Add a Cluster": [[22, null]], "Add a Jupyter App": [[117, null]], "Add a Jupyter App on a Kubernetes Cluster": [[138, null]], "Add a Jupyter App on a Kubernetes Cluster that behaves like HPC compute": [[139, null]], "Add a MATLAB App": [[123, null]], "Add a new realm": [[17, "add-a-new-realm"]], "Add ability to disable RewriteEngine in Apache config": [[101, "add-ability-to-disable-rewriteengine-in-apache-config"]], "Add ability to disable SSH to compute node link in batch connect session card": [[102, "add-ability-to-disable-ssh-to-compute-node-link-in-batch-connect-session-card"]], "Add ability to include Javascript in Batch Connect apps": [[99, "add-ability-to-include-javascript-in-batch-connect-apps"]], "Add an RStudio App": [[132, null]], "Add an ssh wrapper to the shell app": [[102, "add-an-ssh-wrapper-to-the-shell-app"]], "Add and edit app.js": [[142, "add-and-edit-app-js"]], "Add ondemand SCL and use SCL nginx and passenger": [[100, "add-ondemand-scl-and-use-scl-nginx-and-passenger"]], "Add the CILogon Identity Provider": [[16, "add-the-cilogon-identity-provider"]], "Add to OnDemand Portal": [[10, "add-to-ondemand-portal"]], "Added Sinatra Ruby Gems into ondemand-gems for other apps to use": [[103, "added-sinatra-ruby-gems-into-ondemand-gems-for-other-apps-to-use"]], "Added VNC quality and compression controls": [[101, "added-vnc-quality-and-compression-controls"]], "Added job array support for LSF and PBSPro adapters": [[101, "added-job-array-support-for-lsf-and-pbspro-adapters"]], "Added localization options to the Dashboard and Job Composer": [[101, "added-localization-options-to-the-dashboard-and-job-composer"]], "Added rendering of HTML or Markdown in Job Composer template manifests": [[101, "added-rendering-of-html-or-markdown-in-job-composer-template-manifests"]], "Added support for fetching quota from a URL": [[101, "added-support-for-fetching-quota-from-a-url"]], "Added the Linux Host Adapter": [[102, "added-the-linux-host-adapter"]], "Added version strings to Dashboard": [[101, "added-version-strings-to-dashboard"]], "Adding Additional Information to the session cards": [[32, null]], "Adding Google Analytics": [[27, null]], "Adding Native VNC instructions to the panel": [[47, "adding-native-vnc-instructions-to-the-panel"]], "Adding metadata to app manifests": [[104, "adding-metadata-to-app-manifests"]], "Administrative changes": [[105, "administrative-changes"], [106, "administrative-changes"]], "Advanced Interactive Application Configurations": [[33, null]], "Advanced LSF settings": [[66, "advanced-lsf-settings"]], "Advanced Resource Manager Configurations": [[61, null]], "Advanced httpd support": [[106, "advanced-httpd-support"]], "Advantages": [[109, "advantages"]], "After Hook": [[46, "after-hook"]], "Alternatively, Build The Singularity Image": [[136, "alternatively-build-the-singularity-image"]], "Amazon Linux 2023 packages": [[106, "amazon-linux-2023-packages"]], "Announcement configuration keys.": [[20, "id24"]], "Announcements": [[20, "announcements"]], "Announcements Are Dismissible by Default.": [[107, "announcements-are-dismissible-by-default"]], "Apache httpd tips": [[49, null]], "App Changes": [[95, "app-changes"], [96, "app-changes"]], "App Development": [[28, null]], "App Development Guide": [[28, null]], "App Sharing": [[29, null]], "App completes without being able to connect to it.": [[50, "app-completes-without-being-able-to-connect-to-it"]], "App sharing landing page": [[104, "app-sharing-landing-page"]], "Application Version Changes": [[98, "application-version-changes"], [99, "application-version-changes"], [100, "application-version-changes"], [101, "application-version-changes"]], "Application Versions": [[95, "id6"], [96, "id5"], [97, "id3"], [98, "id3"], [99, "id4"], [100, "id2"], [101, "id2"]], "Application using Flask and a virtual environment": [[143, "application-using-flask-and-a-virtual-environment"]], "Applications": [[95, "applications"], [96, "applications"], [97, "applications"]], "Approach #1: Systemd user slices": [[65, "approach-1-systemd-user-slices"]], "Approach #2: libcgroup cgroups": [[65, "approach-2-libcgroup-cgroups"]], "Architecture": [[0, null]], "Attributes": [[36, "attributes"]], "Authentication": [[0, "authentication"], [1, null], [64, "authentication"]], "Autoloading During Initialization Has Been Removed.": [[107, "autoloading-during-initialization-has-been-removed"]], "Autoloading during initialization is deprecated.": [[105, "autoloading-during-initialization-is-deprecated"]], "Automatic Form Options": [[105, "automatic-form-options"]], "Automatic Predefined Attributes": [[36, "automatic-predefined-attributes"]], "Automatic Profile Selection": [[20, "automatic-profile-selection"]], "Backporting and Support": [[145, "backporting-and-support"]], "Balance Warnings on Dashboard": [[20, "balance-warnings-on-dashboard"]], "Basic Batch Connect Options": [[89, null]], "Basic application": [[143, "basic-application"]], "Basic job array support for Slurm, Torque, and SGE": [[100, "basic-job-array-support-for-slurm-torque-and-sge"]], "Batch Connect Form Identifiers Are Now Lowercase.": [[107, "batch-connect-form-identifiers-are-now-lowercase"]], "Batch Connect Script Options": [[90, null]], "Batch Connect Sessions Poll Delay": [[107, "batch-connect-sessions-poll-delay"]], "Batch Connect Template types": [[45, "batch-connect-template-types"]], "Batch Connect VNC Container Options": [[92, null]], "Batch Connect VNC Options": [[91, null]], "Batch Connect apps now support disabling caching on fields": [[103, "batch-connect-apps-now-support-disabling-caching-on-fields"]], "Batch Connect apps now support multiple clusters": [[103, "batch-connect-apps-now-support-multiple-clusters"]], "Before Hook": [[46, "before-hook"]], "Beta CCQ Scheduler support": [[103, "beta-ccq-scheduler-support"]], "Beta XDMoD integration in the dashboard": [[103, "beta-xdmod-integration-in-the-dashboard"]], "Better debugging of Interactive Apps by logging shell commands": [[98, "better-debugging-of-interactive-apps-by-logging-shell-commands"]], "Better environment setting": [[99, "better-environment-setting"]], "Better max file upload support": [[103, "better-max-file-upload-support"]], "Block or Allow Directory Access": [[20, "block-or-allow-directory-access"]], "Boot the application": [[142, "boot-the-application"], [143, "boot-the-application"]], "Bootstrapping OnDemand web node to communicate with Kubernetes": [[64, "bootstrapping-ondemand-web-node-to-communicate-with-kubernetes"]], "Bootstrapping the Kuberenetes cluster": [[64, "bootstrapping-the-kuberenetes-cluster"]], "Branding": [[20, "branding"], [20, "id26"]], "Breaking Changes": [[104, "breaking-changes"], [105, "breaking-changes"], [106, "breaking-changes"], [107, "breaking-changes"]], "Browser Requirements": [[108, "browser-requirements"]], "Build Old Version of Shell": [[112, "build-old-version-of-shell"]], "Building From Source": [[55, "building-from-source"], [59, "building-from-source"]], "CAS": [[3, null]], "Caching form items": [[36, "caching-form-items"]], "Cancel Interactive Sessions": [[20, "cancel-interactive-sessions"]], "Change Executable for Main Script": [[45, "change-executable-for-main-script"]], "Change Field Default Value": [[24, "change-field-default-value"]], "Change a Label": [[24, "change-a-label"]], "Change quota messages in the Dashboard": [[20, "change-quota-messages-in-the-dashboard"]], "Change the Dashboard Tagline": [[20, "change-the-dashboard-tagline"]], "Change to Xfce Desktop": [[24, "change-to-xfce-desktop"]], "Changed ngnix_stage to always remove stale PID files": [[101, "changed-ngnix-stage-to-always-remove-stale-pid-files"]], "Changed \u2018Open in Terminal\u2019 button to offer multiple options when OOD_SSH_HOSTS is set": [[101, "changed-open-in-terminal-button-to-offer-multiple-options-when-ood-ssh-hosts-is-set"]], "Changes in All Apps page layout": [[104, "changes-in-all-apps-page-layout"]], "Changes to the interactive cards": [[104, "changes-to-the-interactive-cards"]], "Changing the Navigation bar": [[20, "changing-the-navigation-bar"]], "Chinese localization": [[103, "chinese-localization"]], "Cleanup Hook": [[46, "cleanup-hook"]], "Cloudy Cluster": [[63, null]], "Cluster Config": [[56, null]], "Cluster Config Schema v2": [[58, null]], "Cluster Configuration": [[56, null], [65, "cluster-configuration"]], "Cluster config verification script": [[98, "cluster-config-verification-script"]], "Code Sharing": [[29, "code-sharing"]], "Commands": [[73, null], [83, null]], "Comments on Policy": [[109, "comments-on-policy"]], "Common Issues": [[63, "common-issues"], [68, "common-issues"]], "Community contributions": [[53, "community-contributions"]], "Components": [[95, "components"], [96, "components"]], "Config changes no longer require app rebuilds": [[98, "config-changes-no-longer-require-app-rebuilds"]], "Configuration": [[20, "configuration"], [36, "configuration"], [45, "configuration"]], "Configuration Options": [[85, "configuration-options"]], "Configuration Profiles": [[20, "configuration-profiles"]], "Configuration Properties": [[86, "configuration-properties"]], "Configuration Properties with profile support": [[86, "configuration-properties-with-profile-support"]], "Configuration Reference": [[73, null]], "Configurations in an ondemand.d directory": [[104, "configurations-in-an-ondemand-d-directory"]], "Configurations whitelist and blacklist Have Been Removed.": [[107, "configurations-whitelist-and-blacklist-have-been-removed"]], "Configure Apache Authentication": [[10, null]], "Configure Authentication Module": [[10, "configure-authentication-module"]], "Configure Duo SPI": [[5, "configure-duo-spi"]], "Configure General Options": [[87, "configure-general-options"]], "Configure Keycloak": [[17, null]], "Configure Keycloak with CILogon": [[16, null]], "Configure LDAP": [[17, "configure-ldap"]], "Configure Logout": [[11, null]], "Configure Logout Redirect": [[87, "configure-logout-redirect"]], "Configure OOD": [[2, "configure-ood"]], "Configure OnDemand to authenticate with Keycloak": [[19, null]], "Configure Open OnDemand": [[27, "configure-open-ondemand"]], "Configure OpenID Connect": [[87, "configure-openid-connect"]], "Configure Public Assets": [[87, "configure-public-assets"]], "Configure Reverse Proxy": [[87, "configure-reverse-proxy"]], "Configure Script": [[45, "configure-script"]], "Configure User Registration": [[87, "configure-user-registration"]], "Configure mod_auth_mellon": [[2, "configure-mod-auth-mellon"]], "Configure per-user NGINX": [[87, "configure-per-user-nginx"]], "Configuring OnDemand Dex": [[4, "configuring-ondemand-dex"]], "Configuring OnDemand Dex for LDAP": [[4, "configuring-ondemand-dex-for-ldap"]], "Configuring which cluster to submit to": [[36, "configuring-which-cluster-to-submit-to"]], "Connection Parameters conn_params": [[34, null]], "Connection View": [[47, null]], "Considerations": [[109, "considerations"]], "Container context": [[0, "container-context"]], "Context": [[46, "context"]], "Control whether an app link opens in a new window using manifest attribute": [[104, "control-whether-an-app-link-opens-in-a-new-window-using-manifest-attribute"]], "Controlling Who Can Share and Access Apps": [[29, "controlling-who-can-share-and-access-apps"]], "Controls": [[109, "controls"]], "Copy Jupyter App": [[118, null]], "Copy MATLAB App": [[124, null]], "Copy RStudio App": [[133, null]], "Create a Dev Dashboard": [[111, "create-a-dev-dashboard"]], "Create a Dev Shell": [[112, "create-a-dev-shell"]], "Create the python files": [[143, "create-the-python-files"]], "Create the virtual environment": [[143, "create-the-virtual-environment"]], "Custom CSS files": [[20, "custom-css-files"]], "Custom Error Page for Missing Home Directory on Launch": [[20, "custom-error-page-for-missing-home-directory-on-launch"]], "Custom Javascript files": [[106, "custom-javascript-files"]], "Custom Job Composer Templates": [[20, "custom-job-composer-templates"]], "Custom Job Submission": [[23, null]], "Custom Pages": [[20, "custom-pages"]], "Custom dashboard widgets and layout": [[104, "custom-dashboard-widgets-and-layout"]], "Custom layouts in the dashboard": [[20, "custom-layouts-in-the-dashboard"]], "Customizable error pages for missing home dirs": [[99, "customizable-error-pages-for-missing-home-dirs"]], "Customizations": [[20, null], [20, "id22"]], "Customize Attributes": [[119, null], [127, null], [134, null]], "Customize Dex Theme": [[20, "customize-dex-theme"]], "Customize Text in OnDemand": [[20, "customize-text-in-ondemand"]], "Customize Text in the Job Composer\u2019s options form": [[20, "customize-text-in-the-job-composer-s-options-form"]], "Customize User-defined Attributes": [[36, "customize-user-defined-attributes"]], "Customizing Attributes": [[36, "customizing-attributes"]], "Customizing OnDemand Dex": [[4, "customizing-ondemand-dex"]], "D-Bus errors": [[65, "d-bus-errors"]], "Dashboard Access": [[0, "dashboard-access"]], "Dashboard App (from v1.12.0 to v1.15.2)": [[95, "dashboard-app-from-v1-12-0-to-v1-15-2"]], "Dashboard App (from v1.15.2 to v1.17.0)": [[96, "dashboard-app-from-v1-15-2-to-v1-17-0"]], "Dashboard URLs": [[20, "id28"]], "Dashboard now alerts on malformed cluster configs": [[102, "dashboard-now-alerts-on-malformed-cluster-configs"]], "Debian 12 packages": [[106, "debian-12-packages"]], "Debugging Interactive Apps": [[50, null]], "Debugging User Mapping": [[12, "debugging-user-mapping"]], "Debugging and Monitoring": [[48, null]], "Default Installation": [[74, "default-installation"], [82, "default-installation"]], "Default authentication is now handled by Dex": [[103, "default-authentication-is-now-handled-by-dex"]], "Deleting old interactive app directories": [[105, "deleting-old-interactive-app-directories"]], "Demonstration": [[39, "demonstration"]], "Dependency Updates": [[107, "dependency-updates"], [145, "dependency-updates"]], "Dependency updates": [[104, "dependency-updates"], [105, "dependency-updates"], [106, "dependency-updates"]], "Deploy Hooks to bootstrap users Kubernetes configuration": [[64, "deploy-hooks-to-bootstrap-users-kubernetes-configuration"]], "Deploy Jupyter App": [[120, null]], "Deploy MATLAB App": [[125, null]], "Deploy RStudio App": [[135, null]], "Deprecations": [[105, "deprecations"], [106, "deprecations"], [107, "deprecations"]], "Desktops App (added v0.1.1)": [[95, "desktops-app-added-v0-1-1"]], "Details": [[98, "details"], [99, "details"], [100, "details"], [101, "details"], [102, "details"], [103, "details"], [104, "details"]], "Details of administrative changes": [[105, "details-of-administrative-changes"], [106, "details-of-administrative-changes"]], "Details of new features": [[105, "details-of-new-features"], [106, "details-of-new-features"]], "Develop OOD in OOD": [[111, "develop-ood-in-ood"]], "Develop the Shell": [[112, "develop-the-shell"]], "Developing The OOD Dashboard": [[110, null]], "Developing the Dashboard App": [[111, null]], "Developing the Shell App": [[112, null]], "Dex Automatic Configuration": [[12, "dex-automatic-configuration"]], "Dex Firewall": [[4, "dex-firewall"]], "Dex behind Apache reverse proxy by default": [[105, "dex-behind-apache-reverse-proxy-by-default"]], "Differences if installing Keycloak on separate host": [[18, "differences-if-installing-keycloak-on-separate-host"]], "Disable Host Link in Batch Connect Session Card": [[20, "disable-host-link-in-batch-connect-session-card"]], "Disable uploads or downloads": [[20, "disable-uploads-or-downloads"]], "Disabling Users": [[20, "disabling-users"]], "Disabling applications": [[20, "disabling-applications"]], "Disabling interactive app versions": [[105, "disabling-interactive-app-versions"]], "Disabling uploads and downloads": [[106, "disabling-uploads-and-downloads"]], "Disclosure Policy": [[109, "disclosure-policy"]], "Disk Quota Warnings on Dashboard": [[20, "disk-quota-warnings-on-dashboard"]], "Displaying Form options": [[105, "displaying-form-options"]], "Displaying choices made in Session Card": [[33, "displaying-choices-made-in-session-card"]], "Displaying form items in the session card": [[36, "displaying-form-items-in-the-session-card"]], "Documentation changes": [[105, "documentation-changes"]], "Documentation for Keycloak as identity broker with CILogon and Keycloak with Duo 2FA": [[102, "documentation-for-keycloak-as-identity-broker-with-cilogon-and-keycloak-with-duo-2fa"]], "Documentation update for Keycloak and Duo": [[100, "documentation-update-for-keycloak-and-duo"]], "Download The Singularity Image": [[136, "download-the-singularity-image"]], "Drop EL6 and add EL8 support": [[102, "drop-el6-and-add-el8-support"]], "Drop IE 11 support": [[103, "drop-ie-11-support"]], "Dynamic Checkboxes": [[106, "dynamic-checkboxes"]], "Dynamic Element Labels": [[35, "dynamic-element-labels"]], "Dynamic Form Widgets": [[35, null]], "Dynamic Min and Maxes": [[35, "dynamic-min-and-maxes"]], "Dynamically Set Submission Parameters": [[45, "dynamically-set-submission-parameters"]], "EL9 and Ubuntu 22.04 packages": [[105, "el9-and-ubuntu-22-04-packages"]], "ERB Objects": [[46, "erb-objects"]], "ERB formats for Message of the day": [[104, "erb-formats-for-message-of-the-day"]], "Easier customization of home page text": [[100, "easier-customization-of-home-page-text"]], "Edit Form.js": [[126, null]], "Edit Launch Script": [[128, null]], "Edit and Delete Interactive Application Saved Settings": [[107, "edit-and-delete-interactive-application-saved-settings"]], "Editing and deleting settings": [[39, "editing-and-deleting-settings"]], "Enable BatchConnect applications to raise errors after form submission": [[101, "enable-batchconnect-applications-to-raise-errors-after-form-submission"]], "Enable Interactive Desktop": [[21, null]], "Enable Reverse Proxy": [[41, null]], "Enable and configure Shell Ping Pong": [[20, "enable-and-configure-shell-ping-pong"]], "Enable in OnDemand v1.3:": [[30, "enable-in-ondemand-v1-3"]], "Enable in OnDemand v1.4 & v1.5:": [[30, "enable-in-ondemand-v1-4-v1-5"]], "Enable in OnDemand v1.6+:": [[30, "enable-in-ondemand-v1-6"]], "Enable multiple Dashboard announcements with embedded HTML": [[98, "enable-multiple-dashboard-announcements-with-embedded-html"]], "Enabling": [[39, "enabling"]], "Enabling App Development": [[30, null]], "Enabling The App Sharing Dashboard": [[29, "enabling-the-app-sharing-dashboard"]], "Enforce resource limits on the target host": [[65, "enforce-resource-limits-on-the-target-host"]], "Enforcing Walltimes": [[64, "enforcing-walltimes"]], "Example Using File Permissions": [[29, "example-using-file-permissions"]], "Example of Executable Sharing": [[29, "example-of-executable-sharing"]], "Examples": [[36, "examples"], [45, "examples"], [47, "examples"], [74, "examples"], [75, "examples"], [76, "examples"], [77, "examples"], [78, "examples"], [79, "examples"], [80, "examples"], [81, "examples"], [82, "examples"]], "Examples for the MapFile script": [[12, "examples-for-the-mapfile-script"]], "Experimental SGE/UGE support": [[99, "experimental-sge-uge-support"]], "Extended view support for GridEngine clusters": [[103, "extended-view-support-for-gridengine-clusters"]], "File Editor Interface Update": [[107, "file-editor-interface-update"]], "File User Mapping": [[12, "file-user-mapping"]], "Files": [[73, null]], "Files App (from v1.3.3 to v1.3.5)": [[95, "files-app-from-v1-3-3-to-v1-3-5"]], "Files app configuration changes": [[104, "files-app-configuration-changes"]], "First an example:": [[58, "first-an-example"]], "Fix Unauthorized WebSocket Connection in Shell App": [[20, "fix-unauthorized-websocket-connection-in-shell-app"]], "Fixed copy and paste issues in the Shell app for Firefox": [[99, "fixed-copy-and-paste-issues-in-the-shell-app-for-firefox"]], "Form Widgets": [[37, null]], "Fully customizing the navigation bar": [[20, "fully-customizing-the-navigation-bar"]], "GKE Authentication": [[64, "gke-authentication"]], "General Options": [[74, "general-options"], [77, "general-options"], [78, "general-options"], [79, "general-options"], [82, "general-options"]], "Generic Interactive App Templates": [[54, "id1"]], "Getting Started": [[53, null]], "Global Batch Connect Form Items": [[36, "global-batch-connect-form-items"]], "Global Batch Connect Items": [[107, "global-batch-connect-items"]], "Globus integration": [[106, "globus-integration"]], "Glossary": [[26, null]], "Google Analytics 4 support": [[106, "google-analytics-4-support"]], "Grafana Dashboard": [[52, "id1"]], "Grafana support": [[20, "grafana-support"]], "Grid Engine": [[68, null]], "Handle Custom Attribute in Job Submission": [[115, "handle-custom-attribute-in-job-submission"], [116, "handle-custom-attribute-in-job-submission"]], "Hard-code a Form Field": [[24, "hard-code-a-form-field"]], "Hard-coded Attributes": [[36, "hard-coded-attributes"]], "Hardware Requirements": [[108, "hardware-requirements"]], "Hiding Job Arrays": [[20, "hiding-job-arrays"]], "Hiding entire elements": [[35, "hiding-entire-elements"]], "Hiding select options": [[35, "hiding-select-options"]], "How-Tos": [[53, null]], "If you get Java errors": [[130, "if-you-get-java-errors"]], "Ignore apps if they have a period in directory name": [[98, "ignore-apps-if-they-have-a-period-in-directory-name"]], "Improve default discoverability of apps in the Dashboard\u2019s navbar": [[99, "improve-default-discoverability-of-apps-in-the-dashboard-s-navbar"]], "Improved Slurm and Grid Engine adapters": [[101, "improved-slurm-and-grid-engine-adapters"]], "Improved shell connections": [[106, "improved-shell-connections"]], "Improvements to ood-portal-generator": [[102, "improvements-to-ood-portal-generator"]], "Individual Fileset Quota": [[20, "individual-fileset-quota"]], "Individual User Quota": [[20, "individual-user-quota"]], "Infrastructure": [[95, "infrastructure"], [96, "infrastructure"], [97, "infrastructure"]], "Infrastructure Changes": [[95, "infrastructure-changes"], [96, "infrastructure-changes"], [101, "infrastructure-changes"]], "Infrastructure Component Versions": [[95, "id5"], [96, "id4"], [97, "id2"], [98, "id2"]], "Infrastructure Version Changes": [[98, "infrastructure-version-changes"], [99, "infrastructure-version-changes"], [100, "infrastructure-version-changes"]], "Initial Installation Steps": [[18, "initial-installation-steps"]], "Initialize the application": [[142, "initialize-the-application"]], "Install Keycloak": [[18, null]], "Install Keycloak Duo SPI": [[5, "install-keycloak-duo-spi"]], "Install Other Interactive Apps": [[54, null]], "Install Software": [[59, null]], "Install dependencies": [[144, "install-dependencies"]], "Install from Source": [[52, "install-from-source"]], "Install mod_auth_mellon": [[2, "install-mod-auth-mellon"]], "Install mod_auth_openidc": [[19, "install-mod-auth-openidc"]], "Install via RPM": [[52, "install-via-rpm"]], "Installation": [[55, null]], "Installing OnDemand Dex from source": [[4, "installing-ondemand-dex-from-source"]], "Installing OnDemand Dex package": [[4, "installing-ondemand-dex-package"]], "Interactive App": [[54, "id2"]], "Interactive Apps": [[31, null]], "Interactive Apps Can Have a Text Header.": [[107, "interactive-apps-can-have-a-text-header"]], "Interactive Apps Menu": [[20, "interactive-apps-menu"]], "Introduction": [[109, "introduction"]], "Invalid Job name": [[68, "invalid-job-name"]], "Invoking MATLAB without a Window Manager": [[128, "invoking-matlab-without-a-window-manager"]], "Issues and Errors": [[112, "issues-and-errors"]], "Job Composer (formerly My Jobs) App (from v2.5.0 to v2.6.0)": [[96, "job-composer-formerly-my-jobs-app-from-v2-5-0-to-v2-6-0"]], "Job Composer Script Size Limit": [[20, "job-composer-script-size-limit"]], "Job Composer and Active Jobs match Dashboard Branding": [[102, "job-composer-and-active-jobs-match-dashboard-branding"]], "Job Composer: Optionally hide Account field in Job Options": [[98, "job-composer-optionally-hide-account-field-in-job-options"]], "Job Submission (submit.yml.erb)": [[45, null]], "Job Template Details": [[20, "job-template-details"]], "Job Templates Overview": [[20, "job-templates-overview"]], "Job composer now shows suggested scripts": [[102, "job-composer-now-shows-suggested-scripts"]], "Job finishes instantly because, desktop app backgrounds itself": [[140, "job-finishes-instantly-because-desktop-app-backgrounds-itself"]], "Jupyter Notebook Example": [[34, "jupyter-notebook-example"]], "Keycloak": [[64, "keycloak"], [64, "id1"]], "Known Issues": [[130, null]], "Kubernetes": [[64, null]], "Kyverno Policies": [[64, "kyverno-policies"]], "LSF": [[66, null]], "Launch any software on target host": [[65, "launch-any-software-on-target-host"]], "Launch specific application containers": [[65, "launch-specific-application-containers"]], "Limit auto generated menu bars": [[20, "limit-auto-generated-menu-bars"]], "Limitations": [[109, "limitations"]], "Linux Host Adapter": [[0, "linux-host-adapter"]], "LinuxHost": [[65, null]], "LinuxHost Adapter": [[23, "linuxhost-adapter"]], "Log location": [[50, "log-location"]], "Log locations": [[49, "log-locations"]], "Logging": [[51, null]], "Login Cluster Only": [[58, "login-cluster-only"]], "MATLAB throws Java errors when the window is resized": [[140, "matlab-throws-java-errors-when-the-window-is-resized"]], "Main Script": [[46, "main-script"]], "Maintenance Mode": [[20, "maintenance-mode"]], "Maintenance mode": [[102, "maintenance-mode"]], "Major Changes": [[104, "major-changes"]], "Major Versions": [[145, "major-versions"]], "Make everyone a developer by default (optional)": [[30, "make-everyone-a-developer-by-default-optional"]], "Make \u201cInteractive Sessions\u201d link top level item": [[98, "make-interactive-sessions-link-top-level-item"]], "Managed Authentication": [[64, "managed-authentication"]], "Managing the OnDemand Dex service": [[4, "managing-the-ondemand-dex-service"]], "Manifest yml files": [[38, null]], "Manual Profile Selection": [[20, "manual-profile-selection"]], "Many bug fixes": [[101, "many-bug-fixes"]], "Mapping Users": [[7, "mapping-users"]], "Mapping of apps for a default installation": [[74, "id2"]], "Memcached Ruby gem available for use in apps": [[104, "memcached-ruby-gem-available-for-use-in-apps"]], "Menus based on applications": [[20, "menus-based-on-applications"]], "Menus based on links": [[20, "menus-based-on-links"]], "Menus by Application category": [[20, "menus-by-application-category"]], "Menus for URLs": [[20, "menus-for-urls"]], "Menus for custom pages": [[20, "menus-for-custom-pages"]], "Menus for profile links": [[20, "menus-for-profile-links"]], "Message of the Day (MOTD)": [[20, "message-of-the-day-motd"]], "Minimal LinuxHost Form": [[24, "minimal-linuxhost-form"]], "Minor Versions": [[145, "minor-versions"]], "Modify Cluster Configuration": [[42, null], [115, "modify-cluster-configuration"]], "Modify Form Attributes": [[24, null]], "Modify Submit Parameters": [[121, null], [129, null]], "More Info": [[27, "more-info"]], "My Jobs App (from v2.4.1 to v2.5.0)": [[95, "my-jobs-app-from-v2-4-1-to-v2-5-0"]], "NSF ACCESS": [[7, null]], "NavConfig Has Been Removed.": [[107, "navconfig-has-been-removed"]], "NavConfig is deprecated": [[105, "navconfig-is-deprecated"]], "New Features": [[105, "new-features"], [106, "new-features"]], "New Features and Enhancements": [[107, "new-features-and-enhancements"]], "New File Manager app": [[104, "new-file-manager-app"]], "New data-label Directive": [[107, "new-data-label-directive"]], "New shared OnDemand gem sets": [[102, "new-shared-ondemand-gem-sets"]], "Nightly Versions": [[145, "nightly-versions"]], "No longer providing ood_auth_map.regex": [[104, "no-longer-providing-ood-auth-map-regex"]], "Node Wrapper": [[142, "node-wrapper"]], "OIDC Audience": [[64, "oidc-audience"]], "OIDC Authentication": [[64, "oidc-authentication"]], "OIDC Client Registration": [[7, "oidc-client-registration"]], "OIDC Token Exchange": [[64, "oidc-token-exchange"]], "OnDemand Dex behind Apache reverse proxy": [[4, "ondemand-dex-behind-apache-reverse-proxy"]], "OnDemand Dex configuration reference": [[4, "ondemand-dex-configuration-reference"]], "OnDemand Locale Files": [[20, "id30"]], "OnDemand passed a security audit": [[101, "ondemand-passed-a-security-audit"]], "Open OnDemand": [[53, null]], "Open OnDemand apps in a Kuberenetes cluster": [[64, "open-ondemand-apps-in-a-kuberenetes-cluster"]], "Open Shell to compute node that a VNC job is running on": [[101, "open-shell-to-compute-node-that-a-vnc-job-is-running-on"]], "Open \u201chelp\u201d links in new window": [[98, "open-help-links-in-new-window"]], "OpenID Connect": [[8, null]], "OpenID Connect with Dex": [[4, null]], "OpenID Connect with KeyCloak on RHEL7": [[14, null]], "Operating System and Architecture Support": [[108, "id3"]], "Optional Quota warnings on dashboard": [[99, "optional-quota-warnings-on-dashboard"]], "Options": [[84, "options"]], "Other Insecure Options": [[6, null]], "Other Request Flow Diagrams": [[0, "other-request-flow-diagrams"]], "Other Resource Manager": [[121, "other-resource-manager"], [129, "other-resource-manager"]], "Overriding Pages": [[20, "overriding-pages"]], "Overview": [[0, "overview"], [9, null], [29, "overview"]], "Overviews": [[73, null]], "PBS Professional": [[23, "pbs-professional"], [67, null], [121, "pbs-professional"], [129, "pbs-professional"]], "POLL_DELAY is Deprecated.": [[107, "poll-delay-is-deprecated"]], "POST Password": [[47, "post-password"]], "PUN environment": [[93, null]], "Passenger App": [[0, "passenger-app"]], "Patch Versions": [[145, "patch-versions"]], "Path Selector widget": [[106, "path-selector-widget"]], "Peer to Peer Executable Sharing": [[29, "peer-to-peer-executable-sharing"]], "Peer to peer app sharing": [[100, "peer-to-peer-app-sharing"]], "Per User Kubernetes": [[64, "per-user-kubernetes"]], "Performance Settings": [[66, "performance-settings"]], "Performance Tuning": [[49, "performance-tuning"]], "Performance improvements to Active Jobs": [[100, "performance-improvements-to-active-jobs"]], "Pinned Apps customizations": [[20, "pinned-apps-customizations"]], "Pinned Apps: Enhanced app launch interface using large app icons on the dashboard": [[104, "pinned-apps-enhanced-app-launch-interface-using-large-app-icons-on-the-dashboard"]], "Pinning Applications to the Dashboard": [[20, "pinning-applications-to-the-dashboard"]], "Place Apache in front of Keycloak": [[18, "place-apache-in-front-of-keycloak"]], "Possible Solutions": [[114, null]], "Predefined Attributes": [[36, "predefined-attributes"]], "Predefined templates": [[20, "predefined-templates"]], "Prepare the Host": [[2, "prepare-the-host"]], "Process Exporter": [[52, "id2"]], "Project Balance": [[20, "project-balance"]], "Project Dependencies": [[102, "id4"]], "Prometheus Configuration": [[52, "prometheus-configuration"]], "Prometheus Monitoring": [[52, null]], "Prompted for input": [[63, "prompted-for-input"]], "Publish App": [[142, "publish-app"], [143, "publish-app"], [144, "publish-app"]], "Querying Google Analytics": [[27, "querying-google-analytics"]], "Quick Launch Apps": [[44, "quick-launch-apps"], [105, "quick-launch-apps"]], "Quick Start Guide": [[21, null], [40, null], [117, null], [123, null], [132, null]], "RPM based installation": [[98, "rpm-based-installation"]], "RStudio Job": [[0, "rstudio-job"]], "RStudio with varying versions of R": [[100, "rstudio-with-varying-versions-of-r"]], "Re-generate main config using ood-portal-generator": [[19, "re-generate-main-config-using-ood-portal-generator"]], "Recently Used Apps widget": [[105, "recently-used-apps-widget"]], "RedHat/CentOS 7 packages deprecated": [[106, "redhat-centos-7-packages-deprecated"]], "Reduced installation size by 30 percent": [[102, "reduced-installation-size-by-30-percent"]], "Reference": [[53, null]], "Regenerate ood-portal.conf with every apache restart": [[102, "regenerate-ood-portal-conf-with-every-apache-restart"]], "Register your Keycloak instance with CILogon": [[16, "register-your-keycloak-instance-with-cilogon"]], "Regular Expression User Mapping": [[12, "regular-expression-user-mapping"]], "Release Notes": [[94, null]], "Relevant References": [[109, "relevant-references"]], "Remote User": [[12, "remote-user"]], "Remove Form Field": [[24, "remove-form-field"]], "Removed Runtime Dependency on Software Collections": [[107, "removed-runtime-dependency-on-software-collections"]], "Render Template": [[46, null]], "Reporting a Vulnerability": [[109, "reporting-a-vulnerability"]], "Request Flow": [[0, "request-flow"]], "Require NodeJS 14": [[104, "require-nodejs-14"]], "Required Announcements": [[107, "required-announcements"]], "Required Options": [[74, "required-options"], [78, "required-options"], [81, "required-options"], [82, "required-options"]], "Requirements": [[41, "requirements"], [108, null]], "Restart services": [[49, "restart-services"]], "Retain completed jobs panel for debugging": [[103, "retain-completed-jobs-panel-for-debugging"]], "Reverse Proxy": [[47, "reverse-proxy"]], "Root-Owned Configuration Files": [[107, "root-owned-configuration-files"]], "Ruby Wrapper": [[144, "ruby-wrapper"]], "Ruby and bundler updates": [[104, "ruby-and-bundler-updates"]], "Running Sessions widget": [[105, "running-sessions-widget"]], "SAML Authentication with Active Directory Federated Services (ADFS) and mod_auth_mellon": [[2, null]], "SCL Ruby no longer available to apache": [[104, "scl-ruby-no-longer-available-to-apache"]], "SELinux": [[60, "selinux"]], "SELinux Changes": [[107, "selinux-changes"]], "SELinux after Updates": [[60, "selinux-after-updates"]], "SELinux changes": [[105, "selinux-changes"]], "Sanitize Session Information": [[10, "sanitize-session-information"]], "Saving Settings": [[39, "saving-settings"]], "Saving interactive application settings": [[39, null]], "Secure Apache httpd": [[57, null]], "Security": [[109, null]], "Security Audits": [[109, "security-audits"]], "Security Enhancement - PUN autogenerates secret key base if none is set": [[99, "security-enhancement-pun-autogenerates-secret-key-base-if-none-is-set"]], "Security Enhancement: App development mode is disabled by default": [[99, "security-enhancement-app-development-mode-is-disabled-by-default"]], "Security Enhancement: Enable whitelisting of directories in several core apps": [[99, "security-enhancement-enable-whitelisting-of-directories-in-several-core-apps"]], "Security Enhancement: Require SSH for all hosts in Shell app": [[99, "security-enhancement-require-ssh-for-all-hosts-in-shell-app"]], "Security Fixes": [[105, "security-fixes"]], "Session": [[46, "session"]], "Session Data": [[51, "session-data"]], "Session Information": [[47, "session-information"]], "Set Default SSH Host": [[20, "set-default-ssh-host"]], "Set Dev Configuration Directory": [[111, "set-dev-configuration-directory"]], "Set Download Limits": [[20, "set-download-limits"]], "Set Illegal Job Name Characters": [[20, "set-illegal-job-name-characters"]], "Set OOD SSH Port": [[20, "set-ood-ssh-port"]], "Set SSH Allowlist": [[20, "set-ssh-allowlist"]], "Set Upload Limits": [[20, "set-upload-limits"]], "Setting Batch Connect Options Globally": [[45, "setting-batch-connect-options-globally"], [88, "setting-batch-connect-options-globally"]], "Setting values based on other elements": [[35, "setting-values-based-on-other-elements"]], "Setup Authentication Module": [[9, null]], "Setup Interactive Apps": [[40, null]], "Setup Singularity": [[136, null]], "Setup User Mapping": [[12, null]], "Shell App (from v1.2.2 to v1.2.3)": [[95, "shell-app-from-v1-2-2-to-v1-2-3"]], "Shell App SSH Command Wrapper": [[20, "shell-app-ssh-command-wrapper"]], "Shell Session": [[0, "shell-session"]], "Shell app now has themes": [[104, "shell-app-now-has-themes"]], "Shell environments": [[68, "shell-environments"]], "Shell hosts are now protected behind allowlists": [[103, "shell-hosts-are-now-protected-behind-allowlists"]], "Shibboleth": [[13, null]], "Shibboleth and InCommon": [[7, "shibboleth-and-incommon"]], "Show VirtualHosts": [[49, "show-virtualhosts"]], "Show account balance warnings": [[102, "show-account-balance-warnings"]], "Significant changes to navbar configurations": [[105, "significant-changes-to-navbar-configurations"]], "Simple Example": [[88, "simple-example"]], "Slurm": [[23, "slurm"], [69, null], [121, "slurm"], [129, "slurm"]], "Slurm 18 Support": [[99, "slurm-18-support"]], "Software Requirements": [[25, null], [43, null], [108, "software-requirements"], [122, null], [131, null], [137, null]], "Special Thanks": [[53, "special-thanks"]], "Special thanks": [[102, "special-thanks"], [103, "special-thanks"]], "Specify Job Submission Parameters": [[45, "specify-job-submission-parameters"]], "Specify dedicated host for development (optional)": [[30, "specify-dedicated-host-for-development-optional"]], "Stages of an Interactive App": [[31, null]], "Start Keycloak Server": [[18, "start-keycloak-server"]], "Starter NodeJS Application": [[142, null]], "Starter Python Application": [[143, null]], "Starter Ruby Application": [[144, null]], "Starter def file": [[92, "starter-def-file"]], "Steps to Enable in Apache": [[41, "steps-to-enable-in-apache"]], "Store configuration under /etc instead of under app directories": [[98, "store-configuration-under-etc-instead-of-under-app-directories"]], "Streamlined copy and paste in noVNC for Chrome": [[103, "streamlined-copy-and-paste-in-novnc-for-chrome"]], "Stylizing": [[47, "stylizing"]], "Sub-Apps and Reconfiguring existing apps": [[44, null]], "Submitting Help tickets": [[105, "submitting-help-tickets"]], "Support Tickets": [[20, "support-tickets"]], "Support added for completed.{md,html}.erb": [[106, "support-added-for-completed-md-html-erb"]], "Support for Profiles": [[105, "support-for-profiles"]], "Support for SVG dashboard logos": [[103, "support-for-svg-dashboard-logos"]], "Support for Ubuntu 18.04 has been dropped.": [[105, "support-for-ubuntu-18-04-has-been-dropped"]], "Support for custom pages": [[105, "support-for-custom-pages"]], "Support for new Native VNC views": [[103, "support-for-new-native-vnc-views"]], "Support for remote files": [[105, "support-for-remote-files"]], "Support mod_auth_openidc configuration via ood-portal-generator": [[103, "support-mod-auth-openidc-configuration-via-ood-portal-generator"]], "Support running OnDemand with SELinux": [[102, "support-running-ondemand-with-selinux"]], "Support sanitizing job names": [[102, "support-sanitizing-job-names"]], "Support users removing CILogon mappings": [[16, "support-users-removing-cilogon-mappings"]], "Supported Operating Systems": [[108, "supported-operating-systems"]], "Switch between SLURM and Kubernetes": [[139, "switch-between-slurm-and-kubernetes"]], "System Installed Apps": [[29, "system-installed-apps"]], "System Logs": [[51, "system-logs"]], "System Status Application": [[107, "system-status-application"]], "System context": [[0, "system-context"]], "Systemd": [[70, null]], "Table of Contents": [[107, "table-of-contents"]], "Tagging": [[145, "tagging"]], "Template Files": [[46, "template-files"]], "Test Configuration": [[71, null]], "Test Prometheus Exporter": [[52, "test-prometheus-exporter"]], "Thanks!": [[105, "thanks"]], "The container": [[139, "the-container"]], "The job just exists with no errors.": [[65, "the-job-just-exists-with-no-errors"]], "The window cannot be resized/moved/maximized": [[140, "the-window-cannot-be-resized-moved-maximized"]], "Things To Know": [[111, "things-to-know"]], "Tighter integration between the Dashboard, Active Jobs, and Files apps": [[104, "tighter-integration-between-the-dashboard-active-jobs-and-files-apps"]], "Titles for Files menu entries": [[102, "titles-for-files-menu-entries"]], "Tokens for Bootstrapping": [[64, "tokens-for-bootstrapping"]], "Torque": [[23, "torque"], [72, null], [121, "torque"], [129, "torque"]], "Torque and Slurm schedulers now support QoS fields": [[103, "torque-and-slurm-schedulers-now-support-qos-fields"]], "Troubleshooting": [[65, "troubleshooting"]], "Troubleshooting Interactive Apps": [[140, null]], "Tutorial": [[14, null]], "Tutorials": [[53, null], [110, null], [113, null], [141, null]], "Tutorials: Interactive Apps": [[113, null]], "Tutorials: Passenger Apps": [[141, null]], "Two Factor Auth using Duo with Keycloak": [[5, null]], "Understanding the default navigation bar": [[20, "understanding-the-default-navigation-bar"]], "Undetermined state": [[65, "undetermined-state"]], "Update project dependencies": [[102, "update-project-dependencies"]], "Updated Apache options": [[106, "updated-apache-options"]], "Upgrade Instructions": [[107, "upgrade-instructions"]], "Upgrade directions": [[104, "upgrade-directions"], [104, "id2"], [105, "upgrade-directions"], [106, "upgrade-directions"]], "Upgrade to Ruby 2.4, NodeJS 6, Passenger 5": [[99, "upgrade-to-ruby-2-4-nodejs-6-passenger-5"]], "Upgrading from v1.1": [[97, "upgrading-from-v1-1"]], "Upgrading from v1.2": [[98, "upgrading-from-v1-2"]], "Upgrading from v1.3": [[99, "upgrading-from-v1-3"], [100, "upgrading-from-v1-3"]], "Upgrading from v1.4": [[100, "upgrading-from-v1-4"]], "Upgrading from v1.5": [[101, "upgrading-from-v1-5"], [102, "upgrading-from-v1-5"]], "Upgrading from v1.6": [[102, "upgrading-from-v1-6"], [103, "upgrading-from-v1-6"]], "Upgrading from v1.7": [[103, "upgrading-from-v1-7"]], "Upgrading from v1.8": [[104, "upgrading-from-v1-8"]], "Upgrading to 1.0": [[95, "upgrading-to-1-0"]], "Upgrading to 1.1": [[96, "upgrading-to-1-1"]], "Upgrading to v2.0.29": [[104, "upgrading-to-v2-0-29"]], "Usage": [[83, null]], "Use Fluxbox for the Window Manager": [[128, "use-fluxbox-for-the-window-manager"]], "Use Mate for the Window Manager": [[128, "use-mate-for-the-window-manager"]], "Use XFCE for the Window Manager": [[128, "use-xfce-for-the-window-manager"]], "Use a Global Static List": [[115, null]], "Use a Local Static List": [[116, null]], "User App Sharing": [[0, "user-app-sharing"]], "User Balance": [[20, "user-balance"]], "User Form (form.yml.erb)": [[36, null]], "User Map Command for Advanced Mappings": [[12, "user-map-command-for-advanced-mappings"]], "User Mapping Now Accepts User Identifiers.": [[107, "user-mapping-now-accepts-user-identifiers"]], "User Settings File Change": [[106, "user-settings-file-change"]], "User-defined Attributes": [[36, "user-defined-attributes"]], "Using Settings": [[39, "using-settings"]], "Using a private image registry": [[64, "using-a-private-image-registry"]], "Using manifests to create menu items": [[20, "using-manifests-to-create-menu-items"]], "Using the virtual environment": [[143, "using-the-virtual-environment"]], "VNC Desktop Job": [[0, "vnc-desktop-job"]], "VNC Server": [[45, "vnc-server"]], "Verify it Works": [[41, "verify-it-works"]], "Version Numbering": [[145, "version-numbering"]], "Version Timing": [[145, "version-timing"]], "Versioning Policy": [[145, null]], "Visualization Nodes": [[61, "visualization-nodes"]], "Vulnerability Management": [[109, "vulnerability-management"]], "Write the app.rb file": [[144, "write-the-app-rb-file"]], "XDMoD Efficiency Widget Update": [[107, "xdmod-efficiency-widget-update"]], "XDMoD Integration": [[20, "xdmod-integration"]], "Xfce support Interactive Desktops": [[98, "xfce-support-interactive-desktops"]], "Your own form.js": [[35, "your-own-form-js"]], "aarch64/arm64 and ppc64le packages": [[106, "aarch64-arm64-and-ppc64le-packages"]], "acls:": [[58, "acls"]], "batch_connect:": [[58, "batch-connect"]], "bin_overrides:": [[58, "bin-overrides"]], "completed.{md,html}.erb": [[32, "completed-md-html-erb"]], "config.ru for Ruby on Rails": [[144, "config-ru-for-ruby-on-rails"]], "config.ru for Sinatra": [[144, "config-ru-for-sinatra"]], "configmap": [[138, "configmap"]], "container spec": [[138, "container-spec"], [139, "container-spec"]], "context.json file locations have changed": [[105, "context-json-file-locations-have-changed"]], "custom:": [[58, "custom"]], "data-hide Directives Now Respond to False.": [[107, "data-hide-directives-now-respond-to-false"]], "error while loading shared libraries": [[65, "error-while-loading-shared-libraries"]], "firewalld": [[60, "firewalld"]], "info.{md,html}.erb": [[32, "info-md-html-erb"]], "init containers": [[138, "init-containers"]], "job:": [[58, "job"]], "login:": [[58, "login"]], "meta:": [[58, "meta"]], "mod_ood_proxy (from v0.2.0 to v0.3.1)": [[95, "mod-ood-proxy-from-v0-2-0-to-v0-3-1"]], "mounts": [[138, "mounts"], [139, "mounts"]], "nginx_clean Now Cleans PUNs for Disabled Users.": [[107, "nginx-clean-now-cleans-puns-for-disabled-users"]], "nginx_clean support for a specific user": [[102, "nginx-clean-support-for-a-specific-user"]], "nginx_stage app": [[74, null]], "nginx_stage app_clean": [[75, null]], "nginx_stage app_list": [[76, null]], "nginx_stage app_reset": [[77, null]], "nginx_stage nginx": [[78, null]], "nginx_stage nginx_clean": [[79, null]], "nginx_stage nginx_list": [[80, null]], "nginx_stage nginx_show": [[81, null]], "nginx_stage pun": [[82, null]], "nginx_stage.yml": [[85, null]], "noVNC Quality and Compression Defaults": [[107, "novnc-quality-and-compression-defaults"]], "ondemand.d/*.yml files": [[86, null]], "ood-portal-generator": [[84, null]], "ood-portal-generator (from v0.3.1 to v0.4.0)": [[95, "ood-portal-generator-from-v0-3-1-to-v0-4-0"]], "ood_portal.yml": [[87, null]], "resource requests": [[138, "resource-requests"]], "submit yml in full": [[138, "submit-yml-in-full"], [139, "submit-yml-in-full"]], "submit.yml.erb": [[88, null]], "v1.0 Release Notes": [[95, null]], "v1.1 Release Notes": [[96, null]], "v1.2 Release Notes": [[97, null]], "v1.3 Release Notes": [[98, null]], "v1.4 Release Notes": [[99, null]], "v1.5 Release Notes": [[100, null]], "v1.6 Release Notes": [[101, null]], "v1.7 Release Notes": [[102, null]], "v1.8 Release Notes": [[103, null]], "v2.0 Release Notes": [[104, null]], "v2:": [[58, "v2"]], "v3.0 Release Notes": [[105, null]], "v3.1 Release Notes": [[106, null]], "v4.0 Release Notes": [[107, null]], "whitelist & blacklist configs are deprecated": [[105, "whitelist-blacklist-configs-are-deprecated"]]}, "docnames": ["architecture", "authentication", "authentication/adfs-with-auth-mellon", "authentication/cas", "authentication/dex", "authentication/duo-2fa-with-keycloak", "authentication/insecure", "authentication/nsf-access", "authentication/oidc", "authentication/overview", "authentication/overview/configure-authentication", "authentication/overview/configure-logout", "authentication/overview/map-user", "authentication/shibboleth", "authentication/tutorial-oidc-keycloak-rhel7", "authentication/tutorial-oidc-keycloak-rhel7/add-custom-theme", "authentication/tutorial-oidc-keycloak-rhel7/configure-cilogon", "authentication/tutorial-oidc-keycloak-rhel7/configure-keycloak-webui", "authentication/tutorial-oidc-keycloak-rhel7/install-keycloak", "authentication/tutorial-oidc-keycloak-rhel7/install_mod_auth_openidc", "customizations", "enable-desktops", "enable-desktops/add-cluster", "enable-desktops/custom-job-submission", "enable-desktops/modify-form-attributes", "enable-desktops/software-requirements", "glossary", "how-tos/analytics/google-analytics", "how-tos/app-development", "how-tos/app-development/app-sharing", "how-tos/app-development/enabling-development-mode", "how-tos/app-development/interactive", "how-tos/app-development/interactive/additional-info", "how-tos/app-development/interactive/advanced", "how-tos/app-development/interactive/conn-params", "how-tos/app-development/interactive/dynamic-form-widgets", "how-tos/app-development/interactive/form", "how-tos/app-development/interactive/form-widgets", "how-tos/app-development/interactive/manifest", "how-tos/app-development/interactive/saved-settings", "how-tos/app-development/interactive/setup", "how-tos/app-development/interactive/setup/enable-reverse-proxy", "how-tos/app-development/interactive/setup/modify-cluster-configuration", "how-tos/app-development/interactive/setup/software-requirements", "how-tos/app-development/interactive/sub-apps", "how-tos/app-development/interactive/submit", "how-tos/app-development/interactive/template", "how-tos/app-development/interactive/view", "how-tos/debug", "how-tos/debug/debug-apache", "how-tos/debug/debug-interactive-apps", "how-tos/monitoring/logging", "how-tos/monitoring/prometheus", "index", "install-ihpc-apps", "installation", "installation/add-cluster-config", "installation/add-ssl", "installation/cluster-config-schema", "installation/install-software", "installation/modify-system-security", "installation/resource-manager/advanced-configs", "installation/resource-manager/bin-override-example", "installation/resource-manager/ccq", "installation/resource-manager/kubernetes", "installation/resource-manager/linuxhost", "installation/resource-manager/lsf", "installation/resource-manager/pbspro", "installation/resource-manager/sge", "installation/resource-manager/slurm", "installation/resource-manager/systemd", "installation/resource-manager/test", "installation/resource-manager/torque", "reference", "reference/commands/nginx-stage/commands/app", "reference/commands/nginx-stage/commands/app-clean", "reference/commands/nginx-stage/commands/app-list", "reference/commands/nginx-stage/commands/app-reset", "reference/commands/nginx-stage/commands/nginx", "reference/commands/nginx-stage/commands/nginx-clean", "reference/commands/nginx-stage/commands/nginx-list", "reference/commands/nginx-stage/commands/nginx-show", "reference/commands/nginx-stage/commands/pun", "reference/commands/nginx-stage/usage", "reference/commands/ood-portal-generator", "reference/files/nginx-stage-yml", "reference/files/ondemand-d-ymls", "reference/files/ood-portal-yml", "reference/files/submit-yml-erb", "reference/files/submit-yml/basic-bc-options", "reference/files/submit-yml/script", "reference/files/submit-yml/vnc-bc-options", "reference/files/submit-yml/vnc-container-bc-options", "reference/pun-environment", "release-notes", "release-notes/v1.0-release-notes", "release-notes/v1.1-release-notes", "release-notes/v1.2-release-notes", "release-notes/v1.3-release-notes", "release-notes/v1.4-release-notes", "release-notes/v1.5-release-notes", "release-notes/v1.6-release-notes", "release-notes/v1.7-release-notes", "release-notes/v1.8-release-notes", "release-notes/v2.0-release-notes", "release-notes/v3.0-release-notes", "release-notes/v3.1-release-notes", "release-notes/v4.0-release-notes", "requirements", "security", "tutorials/tutorials-dashboard-apps", "tutorials/tutorials-dashboard-apps/dashboard", "tutorials/tutorials-dashboard-apps/shell-app", "tutorials/tutorials-interactive-apps", "tutorials/tutorials-interactive-apps/add-custom-queue", "tutorials/tutorials-interactive-apps/add-custom-queue/global-static-list", "tutorials/tutorials-interactive-apps/add-custom-queue/local-static-list", "tutorials/tutorials-interactive-apps/add-jupyter", "tutorials/tutorials-interactive-apps/add-jupyter/copy-app", "tutorials/tutorials-interactive-apps/add-jupyter/customize-attributes", "tutorials/tutorials-interactive-apps/add-jupyter/deploy", "tutorials/tutorials-interactive-apps/add-jupyter/modify-submit-parameters", "tutorials/tutorials-interactive-apps/add-jupyter/software-requirements", "tutorials/tutorials-interactive-apps/add-matlab", "tutorials/tutorials-interactive-apps/add-matlab/copy-app", "tutorials/tutorials-interactive-apps/add-matlab/deploy", "tutorials/tutorials-interactive-apps/add-matlab/edit-form-js", "tutorials/tutorials-interactive-apps/add-matlab/edit-form-yml", "tutorials/tutorials-interactive-apps/add-matlab/edit-script-sh", "tutorials/tutorials-interactive-apps/add-matlab/edit-submit-yml", "tutorials/tutorials-interactive-apps/add-matlab/known-issues", "tutorials/tutorials-interactive-apps/add-matlab/software-requirements", "tutorials/tutorials-interactive-apps/add-rstudio", "tutorials/tutorials-interactive-apps/add-rstudio/copy-app", "tutorials/tutorials-interactive-apps/add-rstudio/customize-attributes", "tutorials/tutorials-interactive-apps/add-rstudio/deploy", "tutorials/tutorials-interactive-apps/add-rstudio/setup-singularity", "tutorials/tutorials-interactive-apps/add-rstudio/software-requirements", "tutorials/tutorials-interactive-apps/k8s-jupyter", "tutorials/tutorials-interactive-apps/k8s-like-hpc-jupyter", "tutorials/tutorials-interactive-apps/troubleshooting", "tutorials/tutorials-passenger-apps", "tutorials/tutorials-passenger-apps/nodejs-starter-app", "tutorials/tutorials-passenger-apps/python-starter-app", "tutorials/tutorials-passenger-apps/ruby-starter-app", "version-policy"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["architecture.rst", "authentication.rst", "authentication/adfs-with-auth-mellon.rst", "authentication/cas.rst", "authentication/dex.rst", "authentication/duo-2fa-with-keycloak.rst", "authentication/insecure.rst", "authentication/nsf-access.rst", "authentication/oidc.rst", "authentication/overview.rst", "authentication/overview/configure-authentication.rst", "authentication/overview/configure-logout.rst", "authentication/overview/map-user.rst", "authentication/shibboleth.rst", "authentication/tutorial-oidc-keycloak-rhel7.rst", "authentication/tutorial-oidc-keycloak-rhel7/add-custom-theme.rst", "authentication/tutorial-oidc-keycloak-rhel7/configure-cilogon.rst", "authentication/tutorial-oidc-keycloak-rhel7/configure-keycloak-webui.rst", "authentication/tutorial-oidc-keycloak-rhel7/install-keycloak.rst", "authentication/tutorial-oidc-keycloak-rhel7/install_mod_auth_openidc.rst", "customizations.rst", "enable-desktops.rst", "enable-desktops/add-cluster.rst", "enable-desktops/custom-job-submission.rst", "enable-desktops/modify-form-attributes.rst", "enable-desktops/software-requirements.rst", "glossary.rst", "how-tos/analytics/google-analytics.rst", "how-tos/app-development.rst", "how-tos/app-development/app-sharing.rst", "how-tos/app-development/enabling-development-mode.rst", "how-tos/app-development/interactive.rst", "how-tos/app-development/interactive/additional-info.rst", "how-tos/app-development/interactive/advanced.rst", "how-tos/app-development/interactive/conn-params.rst", "how-tos/app-development/interactive/dynamic-form-widgets.rst", "how-tos/app-development/interactive/form.rst", "how-tos/app-development/interactive/form-widgets.rst", "how-tos/app-development/interactive/manifest.rst", "how-tos/app-development/interactive/saved-settings.rst", "how-tos/app-development/interactive/setup.rst", "how-tos/app-development/interactive/setup/enable-reverse-proxy.rst", "how-tos/app-development/interactive/setup/modify-cluster-configuration.rst", "how-tos/app-development/interactive/setup/software-requirements.rst", "how-tos/app-development/interactive/sub-apps.rst", "how-tos/app-development/interactive/submit.rst", "how-tos/app-development/interactive/template.rst", "how-tos/app-development/interactive/view.rst", "how-tos/debug.rst", "how-tos/debug/debug-apache.rst", "how-tos/debug/debug-interactive-apps.rst", "how-tos/monitoring/logging.rst", "how-tos/monitoring/prometheus.rst", "index.rst", "install-ihpc-apps.rst", "installation.rst", "installation/add-cluster-config.rst", "installation/add-ssl.rst", "installation/cluster-config-schema.rst", "installation/install-software.rst", "installation/modify-system-security.rst", "installation/resource-manager/advanced-configs.rst", "installation/resource-manager/bin-override-example.rst", "installation/resource-manager/ccq.rst", "installation/resource-manager/kubernetes.rst", "installation/resource-manager/linuxhost.rst", "installation/resource-manager/lsf.rst", "installation/resource-manager/pbspro.rst", "installation/resource-manager/sge.rst", "installation/resource-manager/slurm.rst", "installation/resource-manager/systemd.rst", "installation/resource-manager/test.rst", "installation/resource-manager/torque.rst", "reference.rst", "reference/commands/nginx-stage/commands/app.rst", "reference/commands/nginx-stage/commands/app-clean.rst", "reference/commands/nginx-stage/commands/app-list.rst", "reference/commands/nginx-stage/commands/app-reset.rst", "reference/commands/nginx-stage/commands/nginx.rst", "reference/commands/nginx-stage/commands/nginx-clean.rst", "reference/commands/nginx-stage/commands/nginx-list.rst", "reference/commands/nginx-stage/commands/nginx-show.rst", "reference/commands/nginx-stage/commands/pun.rst", "reference/commands/nginx-stage/usage.rst", "reference/commands/ood-portal-generator.rst", "reference/files/nginx-stage-yml.rst", "reference/files/ondemand-d-ymls.rst", "reference/files/ood-portal-yml.rst", "reference/files/submit-yml-erb.rst", "reference/files/submit-yml/basic-bc-options.rst", "reference/files/submit-yml/script.rst", "reference/files/submit-yml/vnc-bc-options.rst", "reference/files/submit-yml/vnc-container-bc-options.rst", "reference/pun-environment.rst", "release-notes.rst", "release-notes/v1.0-release-notes.rst", "release-notes/v1.1-release-notes.rst", "release-notes/v1.2-release-notes.rst", "release-notes/v1.3-release-notes.rst", "release-notes/v1.4-release-notes.rst", "release-notes/v1.5-release-notes.rst", "release-notes/v1.6-release-notes.rst", "release-notes/v1.7-release-notes.rst", "release-notes/v1.8-release-notes.rst", "release-notes/v2.0-release-notes.rst", "release-notes/v3.0-release-notes.rst", "release-notes/v3.1-release-notes.rst", "release-notes/v4.0-release-notes.rst", "requirements.rst", "security.rst", "tutorials/tutorials-dashboard-apps.rst", "tutorials/tutorials-dashboard-apps/dashboard.rst", "tutorials/tutorials-dashboard-apps/shell-app.rst", "tutorials/tutorials-interactive-apps.rst", "tutorials/tutorials-interactive-apps/add-custom-queue.rst", "tutorials/tutorials-interactive-apps/add-custom-queue/global-static-list.rst", "tutorials/tutorials-interactive-apps/add-custom-queue/local-static-list.rst", "tutorials/tutorials-interactive-apps/add-jupyter.rst", "tutorials/tutorials-interactive-apps/add-jupyter/copy-app.rst", "tutorials/tutorials-interactive-apps/add-jupyter/customize-attributes.rst", "tutorials/tutorials-interactive-apps/add-jupyter/deploy.rst", "tutorials/tutorials-interactive-apps/add-jupyter/modify-submit-parameters.rst", "tutorials/tutorials-interactive-apps/add-jupyter/software-requirements.rst", "tutorials/tutorials-interactive-apps/add-matlab.rst", "tutorials/tutorials-interactive-apps/add-matlab/copy-app.rst", "tutorials/tutorials-interactive-apps/add-matlab/deploy.rst", "tutorials/tutorials-interactive-apps/add-matlab/edit-form-js.rst", "tutorials/tutorials-interactive-apps/add-matlab/edit-form-yml.rst", "tutorials/tutorials-interactive-apps/add-matlab/edit-script-sh.rst", "tutorials/tutorials-interactive-apps/add-matlab/edit-submit-yml.rst", "tutorials/tutorials-interactive-apps/add-matlab/known-issues.rst", "tutorials/tutorials-interactive-apps/add-matlab/software-requirements.rst", "tutorials/tutorials-interactive-apps/add-rstudio.rst", "tutorials/tutorials-interactive-apps/add-rstudio/copy-app.rst", "tutorials/tutorials-interactive-apps/add-rstudio/customize-attributes.rst", "tutorials/tutorials-interactive-apps/add-rstudio/deploy.rst", "tutorials/tutorials-interactive-apps/add-rstudio/setup-singularity.rst", "tutorials/tutorials-interactive-apps/add-rstudio/software-requirements.rst", "tutorials/tutorials-interactive-apps/k8s-jupyter.rst", "tutorials/tutorials-interactive-apps/k8s-like-hpc-jupyter.rst", "tutorials/tutorials-interactive-apps/troubleshooting.rst", "tutorials/tutorials-passenger-apps.rst", "tutorials/tutorials-passenger-apps/nodejs-starter-app.rst", "tutorials/tutorials-passenger-apps/python-starter-app.rst", "tutorials/tutorials-passenger-apps/ruby-starter-app.rst", "version-policy.rst"], "indexentries": {"--app-init-url": [[82, "cmdoption-nginx_stage-pun-a", false]], "--config": [[84, "cmdoption-ood-portal-generator-c", false]], "--detailed-exitcodes": [[84, "cmdoption-ood-portal-generator-detailed-exitcodes", false]], "--file": [[12, "cmdoption-ood_auth_map.mapfile-f", false]], "--force": [[79, "cmdoption-nginx_stage-nginx_clean-f", false], [84, "cmdoption-ood-portal-generator-f", false]], "--rpm": [[84, "cmdoption-ood-portal-generator-r", false]], "--signal": [[78, "cmdoption-nginx_stage-nginx-s", false]], "--skip-nginx": [[74, "cmdoption-nginx_stage-app-N", false], [78, "cmdoption-nginx_stage-nginx-N", false], [79, "cmdoption-nginx_stage-nginx_clean-N", false], [82, "cmdoption-nginx_stage-pun-N", false]], "--sub-request": [[74, "cmdoption-nginx_stage-app-r", false]], "--sub-uri": [[74, "cmdoption-nginx_stage-app-i", false], [77, "cmdoption-nginx_stage-app_reset-i", false]], "--template": [[84, "cmdoption-ood-portal-generator-t", false]], "--user": [[74, "cmdoption-nginx_stage-app-u", false], [78, "cmdoption-nginx_stage-nginx-u", false], [81, "cmdoption-nginx_stage-nginx_show-u", false], [82, "cmdoption-nginx_stage-pun-u", false]], "-a": [[82, "cmdoption-nginx_stage-pun-a", false]], "-c": [[84, "cmdoption-ood-portal-generator-c", false]], "-f": [[12, "cmdoption-ood_auth_map.mapfile-f", false], [79, "cmdoption-nginx_stage-nginx_clean-f", false], [84, "cmdoption-ood-portal-generator-f", false]], "-i": [[74, "cmdoption-nginx_stage-app-i", false], [77, "cmdoption-nginx_stage-app_reset-i", false]], "-n": [[74, "cmdoption-nginx_stage-app-N", false], [78, "cmdoption-nginx_stage-nginx-N", false], [79, "cmdoption-nginx_stage-nginx_clean-N", false], [82, "cmdoption-nginx_stage-pun-N", false]], "-r": [[74, "cmdoption-nginx_stage-app-r", false], [84, "cmdoption-ood-portal-generator-r", false]], "-s": [[78, "cmdoption-nginx_stage-nginx-s", false]], "-t": [[84, "cmdoption-ood-portal-generator-t", false]], "-u": [[74, "cmdoption-nginx_stage-app-u", false], [78, "cmdoption-nginx_stage-nginx-u", false], [81, "cmdoption-nginx_stage-nginx_show-u", false], [82, "cmdoption-nginx_stage-pun-u", false]], "nginx_stage-app command line option": [[74, "cmdoption-nginx_stage-app-N", false], [74, "cmdoption-nginx_stage-app-i", false], [74, "cmdoption-nginx_stage-app-r", false], [74, "cmdoption-nginx_stage-app-u", false]], "nginx_stage-app_reset command line option": [[77, "cmdoption-nginx_stage-app_reset-i", false]], "nginx_stage-nginx command line option": [[78, "cmdoption-nginx_stage-nginx-N", false], [78, "cmdoption-nginx_stage-nginx-s", false], [78, "cmdoption-nginx_stage-nginx-u", false]], "nginx_stage-nginx_clean command line option": [[79, "cmdoption-nginx_stage-nginx_clean-N", false], [79, "cmdoption-nginx_stage-nginx_clean-f", false]], "nginx_stage-nginx_show command line option": [[81, "cmdoption-nginx_stage-nginx_show-u", false]], "nginx_stage-pun command line option": [[82, "cmdoption-nginx_stage-pun-N", false], [82, "cmdoption-nginx_stage-pun-a", false], [82, "cmdoption-nginx_stage-pun-u", false]], "ood-portal-generator command line option": [[84, "cmdoption-ood-portal-generator-c", false], [84, "cmdoption-ood-portal-generator-detailed-exitcodes", false], [84, "cmdoption-ood-portal-generator-f", false], [84, "cmdoption-ood-portal-generator-r", false], [84, "cmdoption-ood-portal-generator-t", false]], "ood_auth_map.mapfile command line option": [[12, "cmdoption-ood_auth_map.mapfile-f", false]]}, "objects": {"": [[47, 0, 1, "get--node-(host)-(port)(path)", "/node/(host)/(port)(path)"], [47, 0, 1, "get--rnode-(host)-(port)(path)", "/rnode/(host)/(port)(path)"]], "nginx_stage-app": [[74, 1, 1, "cmdoption-nginx_stage-app-N", "--skip-nginx"], [74, 1, 1, "cmdoption-nginx_stage-app-r", "--sub-request"], [74, 1, 1, "cmdoption-nginx_stage-app-i", "--sub-uri"], [74, 1, 1, "cmdoption-nginx_stage-app-u", "--user"], [74, 1, 1, "cmdoption-nginx_stage-app-N", "-N"], [74, 1, 1, "cmdoption-nginx_stage-app-i", "-i"], [74, 1, 1, "cmdoption-nginx_stage-app-r", "-r"], [74, 1, 1, "cmdoption-nginx_stage-app-u", "-u"]], "nginx_stage-app_reset": [[77, 1, 1, "cmdoption-nginx_stage-app_reset-i", "--sub-uri"], [77, 1, 1, "cmdoption-nginx_stage-app_reset-i", "-i"]], "nginx_stage-nginx": [[78, 1, 1, "cmdoption-nginx_stage-nginx-s", "--signal"], [78, 1, 1, "cmdoption-nginx_stage-nginx-N", "--skip-nginx"], [78, 1, 1, "cmdoption-nginx_stage-nginx-u", "--user"], [78, 1, 1, "cmdoption-nginx_stage-nginx-N", "-N"], [78, 1, 1, "cmdoption-nginx_stage-nginx-s", "-s"], [78, 1, 1, "cmdoption-nginx_stage-nginx-u", "-u"]], "nginx_stage-nginx_clean": [[79, 1, 1, "cmdoption-nginx_stage-nginx_clean-f", "--force"], [79, 1, 1, "cmdoption-nginx_stage-nginx_clean-N", "--skip-nginx"], [79, 1, 1, "cmdoption-nginx_stage-nginx_clean-N", "-N"], [79, 1, 1, "cmdoption-nginx_stage-nginx_clean-f", "-f"]], "nginx_stage-nginx_show": [[81, 1, 1, "cmdoption-nginx_stage-nginx_show-u", "--user"], [81, 1, 1, "cmdoption-nginx_stage-nginx_show-u", "-u"]], "nginx_stage-pun": [[82, 1, 1, "cmdoption-nginx_stage-pun-a", "--app-init-url"], [82, 1, 1, "cmdoption-nginx_stage-pun-N", "--skip-nginx"], [82, 1, 1, "cmdoption-nginx_stage-pun-u", "--user"], [82, 1, 1, "cmdoption-nginx_stage-pun-N", "-N"], [82, 1, 1, "cmdoption-nginx_stage-pun-a", "-a"], [82, 1, 1, "cmdoption-nginx_stage-pun-u", "-u"]], "ood-portal-generator": [[84, 1, 1, "cmdoption-ood-portal-generator-c", "--config"], [84, 1, 1, "cmdoption-ood-portal-generator-detailed-exitcodes", "--detailed-exitcodes"], [84, 1, 1, "cmdoption-ood-portal-generator-f", "--force"], [84, 1, 1, "cmdoption-ood-portal-generator-r", "--rpm"], [84, 1, 1, "cmdoption-ood-portal-generator-t", "--template"], [84, 1, 1, "cmdoption-ood-portal-generator-c", "-c"], [84, 1, 1, "cmdoption-ood-portal-generator-f", "-f"], [84, 1, 1, "cmdoption-ood-portal-generator-r", "-r"], [84, 1, 1, "cmdoption-ood-portal-generator-t", "-t"]], "ood_auth_map.mapfile": [[12, 1, 1, "cmdoption-ood_auth_map.mapfile-f", "--file"], [12, 1, 1, "cmdoption-ood_auth_map.mapfile-f", "-f"]]}, "objnames": {"0": ["http", "get", "HTTP get"], "1": ["std", "cmdoption", "program option"]}, "objtypes": {"0": "http:get", "1": "std:cmdoption"}, "terms": {"": [0, 2, 4, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 27, 28, 29, 30, 32, 34, 35, 36, 38, 39, 41, 42, 44, 45, 46, 47, 49, 51, 53, 54, 55, 57, 58, 59, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 78, 81, 85, 86, 87, 88, 89, 90, 91, 92, 93, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 118, 119, 126, 127, 128, 131, 134, 136, 138, 139, 140, 142, 143, 144, 145], "0": [2, 4, 5, 12, 14, 15, 16, 18, 20, 23, 24, 35, 36, 37, 43, 49, 52, 53, 58, 59, 61, 62, 64, 65, 79, 84, 86, 87, 92, 94, 97, 98, 99, 100, 101, 102, 106, 108, 121, 122, 127, 128, 129, 131, 134, 137, 138, 139, 143, 144, 145], "00": [2, 20, 71, 90, 98], "000": 27, "0000ff": [20, 86], "007fff": 86, "00am": 20, "00pm": 20, "01": [12, 65, 71], "02": [12, 65], "03": [12, 29, 65], "04": [55, 59, 65, 71, 106, 107, 108], "0400": 71, "0440": 52, "06": 12, "0600": [4, 8, 64], "0644": [4, 5, 52], "0664": 71, "0755": [4, 52], "077": [46, 128], "089": 12, "09": 18, "1": [4, 7, 10, 12, 13, 15, 17, 18, 20, 23, 24, 25, 27, 29, 30, 33, 34, 35, 36, 37, 41, 43, 44, 45, 52, 53, 55, 58, 61, 62, 64, 70, 74, 81, 84, 86, 87, 88, 89, 90, 92, 94, 98, 99, 100, 101, 102, 103, 104, 105, 107, 108, 109, 112, 116, 118, 121, 122, 124, 127, 128, 129, 131, 133, 134, 137, 139, 140, 145], "10": [7, 8, 12, 20, 27, 36, 37, 52, 71, 85, 86, 87, 91, 92, 99, 100, 101, 102, 103, 105, 107], "100": [12, 108], "1000": [20, 65, 85, 102], "10000": 86, "1000000": 20, "1000m": 20, "10060": 108, "1024": 101, "10485760": 20, "10737418240": 20, "10737420000": [20, 85], "10820525": 71, "10mb": 20, "11": [12, 36, 100, 101, 106, 108], "1111": 19, "1111111": 19, "111111111111": 19, "1111111111111": 19, "111998": 18, "12": [20, 46, 55, 59, 99, 104, 107, 108], "1234": 45, "1240x900": 91, "127": [4, 64], "13": [29, 98, 128], "14": [12, 29, 98, 99, 102, 105, 106], "140070995539712": 12, "1426": 105, "149352": 12, "15": [12, 20, 29, 36, 71, 86, 97, 98, 101], "150": 86, "150mb": 108, "150px": 86, "1525361263": 20, "156": 68, "157": 29, "16": [4, 18, 29, 35, 46, 97, 108, 127, 128], "160": 127, "162m": 102, "168": [20, 87], "169": 29, "17": [37, 97, 102, 104, 106], "172m": 102, "1766": 105, "1776": 105, "17m": 102, "18": [29, 96, 97, 98, 104, 106, 112], "181m": 102, "1854": 105, "19": [12, 18, 29, 95], "191": 101, "192": [20, 87], "1920x1080": 91, "195": 65, "1992": 105, "1_all": 104, "2": [1, 2, 7, 12, 18, 20, 21, 25, 27, 33, 35, 36, 37, 43, 44, 49, 53, 55, 58, 61, 62, 64, 70, 86, 87, 92, 94, 100, 101, 102, 104, 105, 106, 107, 108, 109, 116, 121, 122, 128, 129, 131, 134, 137, 139, 145], "20": [12, 18, 20, 29, 52, 55, 58, 59, 87, 95, 104, 105, 106, 107, 108, 128, 142], "200": [27, 138, 143], "2000": [20, 46, 89], "2016": 108, "2017": [18, 20], "2018": [20, 71, 98, 101], "2020": [12, 90], "2022": 12, "2023": [55, 59, 107, 108], "2048": 66, "2091": 105, "2097152": 20, "20g": 20, "20gb": 108, "21": [12, 20, 37, 64], "21474840000": 85, "2194": 105, "22": [20, 59, 102, 106, 107, 108, 142], "2200": 139, "2222": 20, "23": [98, 107], "2323": 105, "2327": 105, "24": [20, 55, 58, 59, 64, 71, 87, 106, 107, 108], "24214": 81, "245": 29, "24h": 4, "24t10": 71, "25": [18, 49, 87], "255": 49, "256": 49, "256m": 102, "26": [29, 98, 99, 101, 107], "28": [23, 35, 37, 121, 127, 129, 139], "285": 101, "28800": [7, 8, 19, 65, 87], "29": [45, 94, 145], "291": 101, "295": 99, "2d": 130, "2f": [7, 8, 11, 12, 13, 19], "2f58606": 12, "2faccess": 7, "2fbatch": [121, 129], "2fbatchconnect": [121, 129], "2fcilogon": 12, "2fidp": [7, 11, 13], "2flogout": [11, 13], "2fondemand": [8, 11, 19], "2fprofil": [11, 13], "2fservera": 12, "2ftemplat": [121, 129], "2fuser": 12, "2fwww": 19, "2h": 64, "2jhfyh7": 20, "2m": 52, "2mb": 20, "2u5": 99, "3": [15, 20, 25, 27, 28, 29, 36, 37, 47, 53, 55, 58, 65, 84, 86, 92, 94, 96, 97, 101, 102, 104, 105, 106, 107, 122, 128, 134, 137, 138, 139, 144, 145], "30": [86, 91, 99, 100], "300": 85, "3000": 142, "30000": 86, "300000": 20, "3005": 89, "31": [100, 101], "31m": 102, "32": [46, 49, 64, 65, 71, 89, 91, 105], "3333": 138, "3371": 107, "3424": 107, "35": 101, "3544": 107, "3549": 107, "36": [12, 106, 128], "3600": [45, 46, 89, 90, 91, 138, 139], "3600000": 20, "3619": 107, "364": 71, "3677": 107, "37": [12, 106], "373897": 130, "374365283": 103, "3776": 107, "3795": 107, "381324": 130, "3866": 107, "39": 12, "3973": 107, "3a": [7, 8, 11, 12, 13, 19], "3d": 127, "3rd": 58, "4": [1, 12, 18, 20, 25, 28, 33, 35, 36, 52, 53, 55, 57, 62, 79, 84, 94, 96, 97, 98, 101, 102, 103, 104, 105, 107, 108, 111, 118, 122, 124, 127, 128, 131, 133, 134, 138], "40": [19, 35, 36, 102], "4000": 139, "40000": 89, "400000": 20, "401": 20, "40172": 12, "4096": 29, "40cilogon": 12, "40core": 139, "40harvard": 12, "40osc": 12, "41": 107, "41fa": 8, "42": 62, "424725": 130, "426": 99, "443": [18, 19, 60, 87], "4444444444444444444444444444444444444444": 19, "45": 12, "47": 18, "48": [99, 127], "48core": 139, "49": 18, "4gi": 138, "4h": 64, "5": [20, 28, 29, 36, 45, 53, 64, 66, 71, 87, 92, 94, 97, 98, 103, 104, 105, 108, 118, 124, 131, 133, 134, 137], "50": 49, "500": [20, 85], "5000": 47, "5000000": 20, "500mi": 138, "5014": 30, "503": [20, 82], "50gb": 108, "5242880": 20, "53565a": 85, "5368709120": 20, "5432": 41, "55": 99, "5554": [4, 87], "5556": [4, 12], "5557": 4, "57": 106, "57600": 87, "587": 20, "59": 101, "592m": 102, "5b4d93636e0968be920cf409252292d674cc951d": 62, "5mb": 20, "5tb": 127, "6": [20, 28, 46, 52, 53, 58, 62, 65, 86, 94, 97, 98, 100, 104, 105, 106, 107, 122, 131, 137], "60": [108, 128], "600": [18, 108], "62": 101, "6291456": 20, "636": [4, 17], "63m": 102, "64": 101, "640": [10, 19], "644": 18, "6443": 64, "64g": 65, "64gb": [65, 108], "65": [20, 102, 106], "65535": [46, 89], "65kb": 20, "688x": 66, "68m": 102, "6h": 4, "6mb": 20, "7": [20, 29, 53, 84, 94, 98, 99, 100, 101, 104, 105, 134, 136, 138], "700": [18, 20, 65, 99], "7100": 91, "716de4ac": 86, "7200": 65, "73s0qfxc5e_s": 65, "75": 49, "750": [20, 29], "755": 29, "8": [8, 18, 19, 20, 24, 35, 36, 43, 49, 52, 53, 55, 59, 62, 64, 74, 84, 89, 92, 94, 95, 96, 98, 99, 100, 102, 105, 106, 107, 108, 112, 130, 139], "80": [20, 41, 60, 87], "8080": [14, 18, 47, 87, 138, 139], "86400": 20, "87f7": 8, "88a4": 8, "8h": 64, "9": [5, 14, 15, 18, 20, 49, 52, 59, 62, 64, 86, 95, 96, 99, 100, 101, 106, 107, 108, 138], "900": 85, "9090": 64, "9301": 52, "95": 20, "955855": 12, "96": [91, 105], "97856": 29, "9989": 108, "99m": 102, "9f1fe759": 86, "9h": 64, "A": [0, 8, 13, 16, 20, 23, 26, 27, 31, 36, 37, 38, 41, 45, 46, 47, 53, 56, 57, 63, 64, 65, 66, 67, 68, 69, 71, 72, 85, 86, 87, 89, 92, 97, 98, 99, 109, 118, 121, 124, 129, 133, 138, 140, 141], "And": [24, 27, 41, 107, 108, 112], "As": [20, 24, 27, 29, 36, 41, 48, 49, 59, 64, 65, 98, 99, 100, 101, 102, 103, 104, 105, 106, 114, 115, 116, 140, 142, 143, 144], "At": [14, 20, 29, 61, 64, 83, 84, 101, 105, 106, 108, 111, 112, 115, 127, 141, 143], "Be": [12, 19, 59, 115, 119, 126, 127, 134], "Being": 64, "But": [24, 35, 36, 45, 46, 111, 121, 129], "By": [4, 20, 29, 35, 36, 38, 47, 52, 65, 86, 104, 105, 109, 128, 136, 140], "For": [2, 4, 5, 10, 14, 16, 18, 20, 22, 23, 24, 27, 29, 30, 33, 36, 37, 43, 45, 46, 47, 51, 52, 54, 56, 57, 58, 62, 64, 65, 67, 71, 86, 87, 90, 98, 99, 100, 101, 102, 104, 105, 107, 109, 115, 116, 118, 121, 124, 129, 133, 139, 140, 142, 144, 145], "IT": [105, 107], "If": [1, 4, 7, 10, 11, 12, 14, 17, 18, 20, 22, 23, 24, 27, 29, 30, 33, 35, 36, 39, 41, 42, 45, 46, 47, 49, 50, 52, 53, 54, 55, 57, 58, 59, 60, 63, 64, 65, 68, 69, 71, 78, 82, 85, 86, 87, 88, 90, 93, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 111, 112, 118, 121, 123, 124, 129, 133, 134, 138, 139, 145], "In": [0, 10, 12, 13, 14, 16, 18, 20, 23, 24, 29, 34, 35, 36, 41, 42, 44, 45, 46, 47, 51, 54, 56, 57, 58, 62, 64, 65, 82, 85, 86, 98, 101, 102, 103, 104, 105, 106, 107, 118, 120, 121, 124, 125, 127, 129, 130, 133, 134, 135, 138, 139, 142, 143], "It": [6, 8, 12, 13, 18, 20, 23, 32, 35, 36, 37, 39, 42, 45, 46, 47, 49, 51, 55, 56, 57, 58, 59, 60, 64, 65, 66, 71, 83, 85, 86, 87, 88, 89, 91, 98, 102, 105, 106, 107, 109, 112, 115, 119, 121, 128, 129, 134, 138, 139, 143], "NOT": [20, 25, 43, 46, 47, 122, 131, 137], "No": [1, 36, 62, 85, 86, 87, 96, 101, 103, 107, 108, 111, 112], "Not": [20, 36, 85, 90], "ON": [16, 17], "OR": [44, 87, 104], "Of": 104, "On": [1, 7, 8, 13, 18, 20, 85, 87, 108], "One": [20, 51, 64, 105, 109, 138, 139], "Or": [18, 20, 28, 30, 45, 49, 98], "TO": 11, "TOS": 107, "That": [22, 24, 36, 42, 44, 56, 102, 134], "The": [0, 1, 2, 4, 7, 8, 10, 11, 12, 13, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28, 30, 32, 34, 35, 36, 37, 38, 41, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 66, 67, 68, 69, 71, 72, 74, 77, 78, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 143, 144, 145], "Then": [13, 17, 18, 19, 20, 30, 36, 42, 112, 118, 124, 133, 134], "There": [6, 20, 23, 24, 29, 44, 46, 47, 51, 63, 64, 65, 86, 87, 102, 104, 105, 121, 127, 129, 130, 134, 142, 143], "These": [5, 9, 14, 17, 20, 29, 36, 38, 45, 46, 47, 48, 51, 53, 56, 64, 65, 86, 87, 88, 89, 90, 91, 93, 98, 104, 105, 107, 109, 118, 121, 124, 129, 133, 139], "To": [4, 11, 12, 20, 23, 24, 27, 29, 30, 35, 36, 45, 47, 51, 58, 63, 64, 65, 68, 74, 75, 76, 77, 78, 79, 80, 81, 82, 86, 97, 98, 101, 102, 103, 105, 107, 108, 110, 142, 143], "ToS": 20, "WILL": 46, "Will": 58, "With": [20, 27, 35, 44, 62, 65, 111, 144], "_": [12, 35, 36], "__main__": [62, 143], "__name__": [62, 143], "_access": 51, "_any_": 20, "_blank": 34, "_email": 20, "_erb": 20, "_err_to_out": 62, "_error": 51, "_footer": 20, "_html": 20, "_in": 62, "_limits_": 138, "_my_cluster_widget": 20, "_my_new_widget": 20, "_native_vnc_": 47, "_requests_": 138, "_shibsession_": [10, 13], "_theme": 15, "_tmux": 65, "_your_": 7, "a12ff167dd13": 8, "aaba6ahbauquag": [20, 58], "aarch64": 108, "ab": 41, "ab001": 41, "ab100": 41, "abaqu": 54, "abc123": [44, 86], "abil": [16, 20, 58, 64, 65, 68, 98, 100, 105, 107], "abl": [4, 18, 19, 20, 21, 24, 29, 36, 44, 48, 51, 55, 56, 62, 64, 65, 86, 87, 95, 98, 101, 103, 104, 107, 111, 117, 123, 132, 136, 140, 142, 143], "abort": 101, "about": [20, 27, 30, 41, 49, 50, 51, 52, 53, 57, 58, 68, 101, 103, 115, 116, 119, 121, 129, 138, 139, 143], "abov": [7, 11, 13, 20, 22, 23, 24, 25, 27, 32, 36, 39, 41, 43, 46, 52, 64, 65, 69, 86, 87, 91, 93, 95, 96, 97, 102, 104, 105, 107, 111, 115, 116, 121, 122, 129, 131, 137, 138, 143], "abruptli": 119, "absolut": [20, 23, 47, 65, 87, 92, 134], "abus": 46, "ac": 65, "academ": 126, "acceler": [127, 131], "accept": [0, 4, 12, 17, 20, 27, 36, 60, 103], "access": [1, 4, 11, 12, 14, 16, 17, 18, 19, 23, 30, 32, 34, 45, 46, 47, 53, 55, 56, 58, 59, 60, 64, 71, 82, 85, 86, 87, 95, 96, 98, 99, 102, 103, 104, 105, 107, 109, 114, 118, 124, 133, 136, 142, 143, 144], "accesslog": 87, "accomid": 106, "accommod": 87, "accomplish": [10, 58, 115, 116, 134, 140], "accord": [108, 128], "accordingli": [7, 20, 49], "account": [16, 20, 23, 24, 27, 35, 36, 44, 45, 59, 64, 71, 86, 87, 89, 90, 101, 127, 138, 139], "accounting_id": [36, 45, 90, 138, 139], "achiev": 65, "acknowledg": [94, 109], "acl": [20, 105, 107], "across": [20, 36, 51, 86, 104, 107, 115], "act": [19, 29, 44, 60, 64], "action": [5, 20, 34, 47, 60, 104, 109], "activ": [1, 18, 20, 46, 52, 55, 56, 64, 79, 81, 86, 97, 99, 101, 103, 142, 143, 144], "activejob": [20, 29, 93, 98], "actual": [20, 22, 23, 36, 42, 44, 49, 57, 59, 61, 64, 65, 71, 86, 104, 108, 111, 121, 128, 129, 136, 144], "ad": [10, 15, 16, 18, 20, 28, 29, 31, 35, 36, 37, 45, 48, 53, 55, 56, 57, 59, 64, 85, 86, 87, 89, 93, 96, 98, 99, 100, 105, 107, 119, 121, 127, 129, 130, 134, 143], "adai": 107, "adapt": [20, 21, 24, 41, 42, 53, 58, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 95, 96, 99, 121, 127, 129, 139], "adaybujeda": 105, "add": [1, 2, 4, 5, 9, 14, 18, 21, 23, 29, 32, 34, 35, 36, 38, 41, 45, 53, 54, 55, 56, 58, 62, 64, 65, 68, 82, 86, 87, 93, 95, 98, 104, 105, 106, 107, 110, 113, 121, 129, 130, 141, 143, 144], "add_line_to_configmap": 138, "addit": [4, 7, 20, 28, 31, 35, 38, 82, 85, 86, 87, 91, 92, 102, 107, 134, 138, 139, 145], "addition": [20, 31, 35, 87, 107, 109], "addr": 4, "address": [12, 18, 20, 51, 64, 85, 87, 90, 102, 107], "adf": [1, 55], "adjust": [4, 17, 20, 52, 65, 86], "admin": [4, 15, 16, 17, 18, 19, 20, 29, 51, 64, 100, 110, 142, 143, 144], "administr": [2, 20, 36, 44, 47, 49, 51, 59, 69, 85, 94, 102, 103, 109, 142, 143, 144], "adopt": [53, 145], "advanc": [9, 23, 28, 31, 53, 56, 58, 143], "advantag": [23, 45, 47, 98, 100, 115, 116, 117, 123, 132], "advers": 130, "adversli": 85, "advertis": [29, 55], "advic": 20, "aebruno": 105, "affect": [20, 24, 60, 71, 85, 93, 96, 98, 104, 105, 107, 109], "after": [1, 12, 15, 18, 19, 20, 22, 24, 29, 31, 34, 35, 36, 55, 56, 58, 59, 62, 64, 65, 71, 86, 89, 90, 98, 100, 102, 103, 104, 105, 106, 107, 108, 111, 115, 116, 118, 119, 120, 124, 125, 133, 135, 139, 140, 142, 145], "after_initi": [20, 30, 105, 107], "again": [20, 32, 58, 65, 71, 119], "against": [12, 20, 23, 36, 104], "agarw": 105, "agent": 87, "aggreg": [20, 52], "agnost": [45, 115, 116], "ago": 18, "agre": 20, "agreement": [20, 107], "ahead": [98, 111, 119, 127, 134], "ahm": 107, "aid": 99, "aim": 110, "alert": [20, 98], "alia": [16, 20], "alias": [20, 87], "align": 107, "aliv": [19, 20, 49, 106], "all": [0, 4, 5, 7, 12, 18, 19, 20, 22, 23, 24, 27, 28, 29, 31, 35, 36, 41, 44, 45, 46, 47, 48, 51, 54, 55, 56, 58, 59, 60, 64, 65, 69, 71, 73, 75, 76, 77, 79, 80, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 100, 101, 102, 103, 105, 106, 107, 109, 111, 115, 118, 120, 121, 124, 125, 129, 133, 134, 135, 137, 138, 139, 141, 142, 143, 144, 145], "all_app": 20, "all_namespac": 64, "alllow": 106, "alloc": [7, 65, 127], "allow": [17, 22, 23, 24, 29, 35, 36, 37, 44, 45, 47, 50, 52, 53, 55, 58, 60, 64, 65, 72, 85, 86, 87, 99, 100, 101, 102, 103, 104, 105, 107, 109, 114, 115, 118, 121, 127, 129, 134], "allow_embed": 20, "allow_origin": 138, "allowlist": [53, 58, 87, 105, 107], "alma": [52, 59], "almalinux": [52, 55, 59, 106, 107, 108], "almost": 62, "alon": [20, 36, 134], "along": [32, 39, 87, 102, 105, 107], "alongsid": [99, 145], "alpha": 102, "alphabet": [53, 93], "alphanumer": [46, 85], "alreadi": [7, 17, 18, 20, 36, 42, 45, 46, 47, 51, 88, 103, 115, 116, 128, 138, 139], "also": [1, 12, 14, 20, 23, 24, 29, 30, 32, 35, 36, 37, 39, 45, 46, 47, 51, 52, 53, 54, 56, 59, 60, 62, 64, 65, 66, 79, 84, 85, 87, 88, 89, 98, 99, 100, 103, 104, 105, 107, 108, 111, 115, 119, 121, 127, 129, 138, 139, 145], "alter": [58, 62, 85], "altern": [7, 20, 58, 64, 69, 86, 130, 132], "although": [20, 29, 45, 121, 129], "altogeth": [20, 37, 105, 109], "alwai": [12, 20, 24, 29, 32, 36, 42, 64, 71, 87, 90, 98, 99, 100, 102, 103, 104, 106, 138], "am": 20, "amazon": [55, 59, 107, 108], "amd64": [52, 64], "among": 59, "amount": [36, 44, 90], "amzn2023": [59, 107], "an": [1, 2, 4, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 21, 23, 24, 26, 29, 32, 33, 34, 35, 36, 37, 38, 41, 42, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 98, 99, 100, 101, 103, 105, 106, 107, 111, 113, 115, 116, 117, 118, 121, 123, 124, 127, 128, 129, 130, 131, 133, 136, 137, 138, 139, 142, 143, 144, 145], "an0047": 29, "analysi": [101, 103], "analyt": [48, 53, 86, 87], "analyticsservic": 27, "analyticsv3": 27, "ancestor": [20, 87], "anchor": [20, 41, 57], "ani": [2, 10, 17, 19, 20, 22, 24, 27, 32, 35, 36, 41, 42, 44, 46, 47, 51, 61, 62, 64, 69, 71, 74, 75, 77, 83, 84, 85, 86, 87, 91, 92, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 111, 119, 121, 122, 126, 127, 128, 129, 131, 137, 138, 139, 141, 142, 143], "anni": [7, 12, 107], "annot": 64, "annouc": 107, "announc": [53, 86], "announcement_path": 86, "anonym": [13, 17, 20], "anoth": [29, 35, 41, 45, 64, 87, 90, 100, 105, 108, 115, 120, 125, 127, 135], "ansi": [54, 126], "ansibl": 56, "answer": 130, "anticip": 49, "any_file_nam": 20, "anymor": [24, 75, 104, 115, 116], "anyon": [20, 64, 85, 105, 145], "anyth": [20, 26, 35, 36, 41, 44, 65, 85, 89, 90, 106, 107, 115, 126, 140], "anywher": [20, 58, 98, 105, 145], "aoaklei": [7, 12], "apach": [0, 1, 2, 6, 8, 9, 11, 12, 13, 14, 20, 28, 40, 48, 51, 52, 53, 55, 59, 60, 82, 84, 85, 87, 98, 100, 103, 107, 108], "apache2": [49, 59, 106, 107], "apache_hom": 49, "api": [4, 18, 27, 31, 34, 58, 64, 89, 91, 126], "apivers": 64, "app": [16, 19, 21, 22, 23, 24, 25, 26, 27, 34, 35, 36, 38, 42, 43, 45, 46, 47, 48, 51, 52, 53, 56, 58, 60, 65, 71, 75, 76, 77, 82, 83, 85, 86, 87, 88, 89, 90, 93, 94, 97, 101, 106, 108, 110, 114, 115, 116, 119, 121, 122, 127, 129, 131, 134, 137], "app_clean": 83, "app_config_path": 85, "app_development_en": 30, "app_directori": [118, 124, 133], "app_init_url": 82, "app_jupyt": 37, "app_list": 83, "app_nam": [20, 74], "app_own": 74, "app_passenger_env": 85, "app_request_regex": 85, "app_request_uri": 85, "app_reset": 83, "app_root": [30, 85], "app_token": 85, "appear": [20, 24, 29, 30, 36, 47, 65, 82, 98, 99, 100, 102, 107, 118, 124, 130, 133, 134, 142, 143, 144], "append": [23, 24, 101, 121, 129], "append_path": 134, "appl": 71, "appli": [13, 19, 20, 36, 45, 60, 64, 65, 86, 88, 89, 91, 92, 104, 138], "applic": [0, 7, 18, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 42, 44, 45, 46, 47, 50, 53, 58, 61, 62, 64, 68, 71, 74, 75, 76, 77, 85, 86, 87, 88, 90, 93, 94, 102, 103, 104, 105, 106, 108, 109, 123, 128, 138, 139, 140, 141], "appnam": [29, 105, 142], "appreci": 1, "approach": [11, 20, 29, 64, 99, 131, 139], "appropri": [5, 15, 18, 19, 20, 27, 36, 41, 45, 46, 51, 57, 65, 93, 98, 122, 131, 134, 137, 142, 143], "approv": 16, "apprun": 136, "apps_path": 139, "apptain": 92, "apt": [2, 4, 57, 59, 104, 106, 107], "aptli": 46, "ar": [0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 17, 18, 19, 20, 23, 24, 25, 27, 28, 29, 30, 31, 33, 35, 36, 38, 42, 43, 44, 45, 46, 47, 49, 51, 53, 54, 57, 58, 59, 60, 62, 63, 64, 65, 69, 71, 78, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 104, 106, 108, 109, 111, 112, 114, 115, 116, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 131, 133, 134, 135, 136, 137, 138, 139, 140, 145], "arbirari": [37, 64], "arbitrari": [20, 30, 65, 99], "architectur": [53, 59, 95, 101, 106, 107, 109], "archiv": 52, "area": [17, 37, 109], "aren": 46, "arg": [20, 62, 64, 90, 139], "argument": [12, 20, 23, 45, 62, 68, 71, 85, 87, 90, 91, 92, 100, 101, 115, 116, 121, 129], "argv": 62, "arithmet": [24, 45, 46], "arizona": 53, "arm64": 108, "around": [20, 42, 51, 105, 107, 118, 124, 133], "arrai": [4, 23, 24, 36, 37, 45, 53, 85, 86, 87, 89, 90, 91, 103, 115, 116, 121, 129, 138], "arrang": 20, "arrow": 103, "ascii": 101, "ashton22305": 107, "asid": [121, 129], "ask": [30, 98], "aspect": [105, 139], "assert": 64, "asset": [20, 46, 85, 93, 128], "assign": [20, 109], "assist": [14, 107], "associ": [34, 58, 86, 98, 107, 142, 143, 144], "assum": [2, 22, 29, 30, 36, 38, 45, 46, 47, 57, 64, 86, 98, 103, 111, 114, 115, 138, 139], "atkin": 101, "attach": [20, 35, 61], "attack": 41, "attempt": [4, 6, 14, 20, 24, 71, 78, 87, 97, 101, 105, 111, 137], "attribut": [18, 20, 21, 22, 23, 31, 33, 34, 35, 44, 45, 46, 47, 53, 65, 88, 90, 98, 102, 103, 105, 113, 114, 117, 121, 123, 129, 132, 142], "audit": 60, "audit2allow": 60, "aug": 29, "auth": [1, 2, 6, 8, 10, 13, 16, 17, 18, 19, 20, 55, 64, 65, 87, 100, 102, 103, 108], "auth_openidc": [19, 87], "auth_shib": 13, "authent": [3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 16, 17, 18, 20, 46, 47, 51, 53, 55, 59, 60, 65, 87, 96, 100, 102, 104, 105, 109, 139], "authenticated_usernam": 12, "authentict": 106, "authnam": 19, "author": [2, 4, 13, 16, 19, 29, 57, 64], "authtyp": [2, 8, 10, 13, 19, 87], "authuserfil": 19, "auto": [24, 105, 107, 134], "auto_account": [36, 90, 105], "auto_group": [36, 86, 105], "auto_groups_filt": 86, "auto_modul": 105, "auto_modules_": 36, "auto_modules_matlab": 36, "auto_modules_netcdf": 36, "auto_modules_netcdf_seri": 36, "auto_modules_r": 36, "auto_primary_group": [36, 105], "auto_qo": 36, "auto_queu": [36, 90], "auto_supplemental_group": 64, "autofil": 20, "autogroup": 36, "autom": [56, 99], "automat": [9, 31, 35, 39, 64, 86, 90, 107, 112], "avail": [1, 20, 23, 24, 27, 29, 35, 36, 45, 46, 47, 51, 52, 53, 54, 58, 62, 64, 65, 71, 77, 86, 90, 93, 98, 101, 102, 103, 105, 106, 107, 109, 115, 121, 127, 129, 131, 137, 139, 142, 145], "averag": 108, "avivkel": 107, "avoid": [20, 30, 46, 83, 87], "aw": 63, "awai": 24, "awar": [12, 20, 36, 58, 126, 131], "awesom": 47, "awk": [7, 41, 64, 89, 121, 129], "b": [16, 18, 111, 112], "b972c25d": 8, "back": [6, 16, 19, 24, 34, 35, 41, 46, 59, 60, 86, 89, 98, 101, 104, 105, 111, 119], "backend": [10, 13, 19, 47, 63, 87, 109, 115, 116], "background": [20, 45, 46, 86, 111, 113, 127, 128], "backport": 53, "backtrac": 65, "backup": [98, 100], "backward": [20, 104, 145], "bad": 62, "bak": 98, "balanc": 53, "balance1": 20, "balance2": 20, "balzana": 102, "banner": 111, "bar": [38, 53, 86, 87, 90, 102, 105, 107], "bart": 102, "barton": 101, "base": [5, 7, 11, 13, 15, 16, 18, 28, 29, 30, 31, 44, 49, 52, 58, 64, 65, 85, 86, 89, 91, 100, 104, 105, 106, 107, 126, 131, 136, 137, 139, 141, 142, 143, 144], "base64": 64, "base_path": 20, "base_slurm_arg": 139, "base_url": [34, 47, 138], "basearch": 136, "basedn": 4, "baselin": 64, "basenam": 20, "bash": [7, 12, 20, 41, 42, 45, 46, 58, 62, 64, 65, 68, 71, 86, 88, 89, 99, 104, 121, 129, 138, 139, 142, 143, 144], "bash_help": 89, "bash_profil": 42, "bash_rematch": 12, "bash_sourc": 143, "bashrc": [42, 68, 112], "basi": [20, 36, 103], "basic": [6, 19, 24, 41, 42, 45, 46, 58, 68, 88, 91, 92, 101, 103, 105, 108, 109, 115, 116, 121, 139, 141], "basicconfig": 62, "batch": [22, 23, 25, 29, 31, 35, 38, 42, 43, 46, 47, 51, 53, 54, 55, 58, 61, 64, 65, 67, 68, 71, 72, 86, 95, 97, 104, 105, 114, 116, 117, 118, 119, 121, 122, 123, 124, 127, 129, 131, 132, 133, 134, 137], "batch_connect": [20, 23, 38, 41, 42, 45, 46, 47, 51, 64, 65, 68, 86, 88, 89, 91, 92, 105, 115, 116, 118, 121, 124, 129, 133, 139], "batch_connect_session_context_my_cool_form_item": 107, "batchmod": 65, "baverhei": 102, "bc": [138, 139], "bc_account": [23, 24, 36, 44, 90, 115, 116, 119, 121, 127, 129, 134], "bc_clean_old_dir": 86, "bc_clean_old_dirs_dai": 86, "bc_desktop": [20, 22, 23, 24, 29, 44, 98, 99], "bc_desktop_example_kd": 29, "bc_dynamic_j": 86, "bc_email_on_start": [23, 24, 36, 90, 115, 116, 119, 121, 127, 129, 134], "bc_example_jupyt": [54, 118], "bc_example_rstudio": [133, 134, 135, 137], "bc_js_filepick": [106, 126], "bc_jupyter_dynpart": 54, "bc_my_center_matlab": [124, 125, 126, 127, 128, 129, 130], "bc_num_hour": [23, 24, 36, 46, 90, 115, 116, 119, 121, 127, 129, 134, 139], "bc_num_slot": [23, 24, 36, 115, 116, 119, 121, 127, 129, 134], "bc_osc_abaqu": 54, "bc_osc_ansys_workbench": 54, "bc_osc_codeserv": 54, "bc_osc_comsol": 54, "bc_osc_example_shini": 54, "bc_osc_jupyt": 54, "bc_osc_jupyter_spark": 54, "bc_osc_matlab": [54, 124, 128], "bc_osc_paraview": 54, "bc_osc_qgi": 54, "bc_osc_rstudio_serv": 54, "bc_osc_stata": 54, "bc_osc_vmd": 54, "bc_queue": [23, 24, 36, 45, 90, 114, 115, 116, 119, 121, 129, 134], "bc_relion": 54, "bc_saved_set": [39, 86], "bc_sessions_poll_delai": [86, 107], "bc_simple_auto_account": [36, 86], "bc_vnc_idl": 24, "bc_vnc_resolut": [24, 127], "bcff07264b318688c3f4272a9662b13477833373": 128, "becaus": [7, 11, 18, 20, 22, 24, 29, 35, 36, 42, 45, 56, 58, 63, 64, 65, 68, 69, 71, 86, 87, 89, 90, 100, 102, 103, 104, 105, 113, 127, 136, 138, 143], "becom": [10, 20, 99, 101, 104], "been": [2, 14, 16, 20, 34, 35, 36, 42, 45, 58, 65, 66, 71, 78, 79, 98, 99, 100, 101, 102, 104, 106, 109, 128, 130, 131, 139, 140, 145], "befor": [2, 10, 19, 20, 21, 23, 24, 29, 31, 34, 36, 45, 52, 59, 61, 64, 69, 85, 87, 89, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 112, 117, 118, 119, 122, 123, 124, 131, 133, 137, 138, 139, 140], "before_fil": 89, "before_script": 89, "beforehand": 87, "begin": [2, 5, 12, 20, 24, 27, 39, 111, 112, 118, 119, 124, 127, 133, 134, 139], "behalf": 29, "behav": [20, 53, 64, 68, 105, 113, 138], "behavior": [4, 32, 35, 62, 65, 86, 93, 99, 100, 101, 105, 107], "behaviour": [20, 69, 86], "behhavior": 36, "behind": [1, 18, 20, 87], "being": [4, 10, 13, 19, 20, 35, 36, 42, 44, 48, 51, 58, 62, 63, 87, 89, 90, 98, 100, 101, 102, 104, 105, 107, 108, 111, 130, 139, 145], "believ": 131, "belong": [65, 100], "below": [0, 1, 5, 16, 18, 19, 20, 24, 29, 30, 31, 36, 37, 39, 45, 46, 47, 49, 58, 64, 65, 68, 69, 85, 86, 87, 89, 91, 92, 95, 96, 98, 99, 101, 103, 104, 105, 107, 113, 115, 121, 128, 129, 139, 143], "ben": 103, "beneath": 74, "benefici": 51, "benefit": [29, 44, 98, 100, 134, 139], "best": [24, 41, 45, 49, 56, 71, 98, 99, 103, 104, 108], "beta": 102, "better": [20, 29, 36, 87, 101, 106], "between": [4, 18, 20, 29, 36, 51, 57, 64, 65, 74, 86, 87, 99, 100, 101, 102, 103, 105, 113, 134], "beyond": 105, "bgohar": 30, "big": [49, 105, 107, 139], "biggest": 98, "bin": [4, 7, 8, 12, 18, 20, 29, 41, 42, 45, 46, 52, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 84, 85, 86, 88, 89, 91, 92, 104, 105, 106, 111, 112, 130, 134, 138, 139, 142, 143, 144], "bin_overrid": [53, 56, 63, 66, 67, 68, 69, 72], "binari": [4, 55, 56, 63, 68, 69, 72, 85], "bind": [5, 17, 18, 23, 65, 92, 136], "binddn": 4, "bindir": 66, "bindpw": 4, "bio": 20, "biologi": [20, 38, 104, 105], "bit": 20, "bjob": 66, "bkill": 66, "black": 20, "blank": [17, 23, 24, 45, 121, 127, 129, 142, 143], "blender": 29, "blob": [55, 59, 62], "block": [18, 46, 53, 105, 107, 109, 128, 139, 140], "block_limit": 20, "block_usag": 20, "blocklist": [58, 105, 107], "blue": [0, 36, 86], "bmcmichael": 30, "bob": [12, 13, 29, 74, 78, 81, 82], "bodi": [20, 42, 85], "body_bytes_s": 85, "bolster": 109, "book": 20, "bookworm_al": [59, 107], "bool": 86, "boolean": [4, 36, 37, 38, 60, 64, 86, 87, 90, 102, 104, 105], "boostrap": [45, 64], "boot": [45, 91, 92, 141, 144], "bootstrap": [20, 45, 47, 92, 98, 104, 136], "border_color": 20, "botani": 38, "both": [12, 14, 18, 19, 20, 35, 36, 44, 45, 55, 58, 64, 65, 87, 88, 90, 93, 99, 100, 103, 104, 107, 134, 138, 139], "bottom": [17, 20, 89, 99, 141], "bound": [64, 136], "bowdoin": 53, "box": [0, 16, 20, 35, 36, 52, 85, 103, 104, 109, 118, 124, 133], "br": 143, "branch": [111, 112, 145], "brand": [53, 103, 104, 105], "brand_bg_color": [20, 86], "brand_link_active_bg_color": [20, 86], "break": [10, 12, 62, 85, 90, 94, 101, 102, 134, 145], "bresum": 66, "breviti": [27, 65, 68, 92], "bridg": 7, "brief": [20, 62], "brittl": 36, "broader": 88, "broke": [99, 106], "broken": [9, 29], "broker": 16, "brows": [57, 86, 105], "browseabl": 99, "browser": [0, 5, 16, 20, 21, 22, 23, 24, 26, 36, 41, 47, 49, 53, 57, 85, 86, 98, 99, 103, 105, 106, 107, 111, 117, 118, 120, 121, 123, 124, 125, 129, 132, 133, 135], "bstop": 66, "bsub": [45, 58, 66, 86, 102], "btn": 47, "buechler": 102, "buffalo": [53, 103], "buffer": 103, "bug": [96, 99, 107, 118, 124, 130, 133, 145], "bugfix": 97, "build": [4, 5, 8, 10, 19, 20, 36, 37, 41, 46, 53, 87, 111, 118, 124, 128, 132, 133, 139, 144], "builder": [59, 104], "built": [0, 20, 24, 45, 55, 59, 65, 68, 99, 104, 115, 118, 124, 133, 136, 139, 145], "builtin": 12, "bujeda": 107, "bulk": [98, 138], "bunch": 105, "bundl": [85, 99, 100, 144], "bundle_user_config": 85, "bundler": [59, 111, 144], "button": [17, 20, 36, 37, 39, 47, 86, 87, 99, 104, 118, 119, 124, 133, 142, 143, 144], "button_text": 20, "bypass": 108, "byte": [20, 85], "c": [4, 14, 17, 45, 47, 52, 54, 71, 84, 121, 129, 138], "c12": [45, 121, 129], "c4": 0, "ca": [1, 4, 55, 59, 64], "cacert": 64, "cach": [31, 92, 105], "cacheabl": 36, "cachetempl": 18, "cachethem": 18, "cae": 54, "calcul": 107, "call": [12, 18, 20, 24, 27, 29, 34, 36, 45, 62, 64, 78, 86, 87, 89, 103, 104, 115, 116, 119, 142], "callback": 16, "caltech": 107, "campu": 7, "can": [1, 2, 4, 7, 9, 10, 12, 13, 15, 16, 17, 18, 20, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 44, 45, 46, 47, 49, 51, 52, 53, 56, 57, 58, 60, 61, 62, 64, 65, 69, 70, 71, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 112, 115, 116, 118, 120, 121, 124, 125, 126, 127, 129, 133, 135, 138, 139, 142, 143, 144, 145], "canari": 29, "cancel": [53, 86], "cancel_session_en": [20, 86], "candid": 145, "candidate_favorite_path": [20, 105, 107], "cannot": [12, 20, 24, 29, 41, 64, 65, 89, 90, 113, 127], "capabl": [12, 35, 38, 83, 84, 87, 88], "capit": 86, "captur": [8, 13, 51, 87], "card": [28, 31, 39, 53, 58, 86, 101, 105, 106, 107], "care": [24, 29, 36, 45, 46, 58, 86, 89, 100], "carri": 24, "case": [10, 12, 14, 19, 20, 23, 24, 27, 35, 36, 41, 45, 46, 47, 57, 59, 64, 65, 85, 87, 102, 103, 121, 129, 138, 139], "casloginurl": 10, "cat": [18, 51, 52, 60, 64, 102, 128, 130], "catalog": 29, "categori": [29, 38, 86, 99, 100, 104, 105, 111, 142, 143, 144], "caus": [10, 20, 23, 36, 45, 47, 58, 65, 69, 87, 89, 91, 99, 108, 111, 115, 121, 129, 142, 143, 144], "caution": [20, 24], "caveat": 69, "cc": 20, "ccq": 63, "ccqcert": 63, "ccqdel": 63, "ccqstat": 63, "ccqsub": 63, "cd": [2, 4, 5, 18, 29, 30, 71, 111, 112, 118, 120, 125, 128, 135, 142, 143, 144], "center": [1, 3, 11, 12, 13, 15, 20, 36, 45, 53, 54, 74, 82, 87, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 118, 124, 133, 139], "cento": [65, 99, 100, 102, 104, 105, 134, 136], "centos7": [65, 134, 136], "centos_7": 65, "central": [3, 102], "cert": [2, 4, 18, 57, 63, 64, 87], "cert_authority_fil": 64, "certain": [20, 64, 65, 85, 86, 98, 99, 107], "certainli": 62, "certian": 105, "certif": [2, 4, 14, 17, 18, 55, 57, 59, 63, 64], "cfg": 138, "cgconfig": 65, "cgi": [34, 87], "cgred": 65, "cgroup": [0, 20], "cgrule": 65, "chagn": 107, "chain": [71, 87], "chanc": 22, "chang": [4, 8, 10, 11, 18, 19, 21, 23, 29, 30, 31, 35, 36, 37, 41, 49, 53, 55, 60, 62, 63, 64, 71, 84, 86, 87, 89, 91, 93, 94, 102, 103, 109, 111, 112, 115, 119, 120, 121, 125, 127, 129, 130, 134, 135, 139, 142, 143, 144, 145], "changelog": [95, 96, 99, 100], "changem": [20, 64], "changetarget": 34, "channel": 57, "charact": [46, 53, 58, 68, 83, 85, 87, 89, 101, 102, 107], "charg": [20, 23, 35, 36, 45, 90, 127], "charge_account": 35, "check": [16, 20, 35, 36, 37, 39, 45, 51, 52, 59, 60, 65, 86, 96, 98, 111, 118, 121, 124, 129, 133], "check_box": [35, 36, 37, 106], "checkbox": [35, 37, 39, 90], "checked_valu": 37, "checkout": [111, 112, 142, 143, 144], "checksum": [84, 102], "cherri": 45, "chevi": 36, "chgrp": [19, 29], "child": [20, 44, 65], "chmod": [4, 8, 10, 18, 19, 20, 29, 64, 71, 143], "choic": [31, 35, 36, 39, 44, 45, 104, 105, 107, 139], "choos": [5, 16, 17, 20, 22, 24, 32, 35, 36, 37, 39, 44, 45, 54, 64, 86, 103, 104, 105, 114, 115, 116, 121, 129, 139, 142], "chose": [115, 116, 139], "chosen": [35, 36, 39, 44, 65, 85, 121, 129], "chown": [4, 18, 20, 51, 92, 107], "chpc": 54, "chrome": [100, 108], "ci": [7, 109], "cidr": 20, "cilogon": [1, 7, 14, 87], "circumv": 105, "cjose": 107, "claim": [12, 19], "class": [17, 20, 30, 36, 47, 87, 90, 104, 105, 107, 144], "class_instruct": 20, "classroom": 104, "claus": 35, "clean": [5, 46, 58, 65, 75, 79, 86, 89, 92, 99, 100, 101, 102, 103, 104, 105, 106], "clean_fil": 89, "clean_script": 89, "cleaner": 71, "cleanup": [31, 62, 64, 89], "cli": [18, 69, 122, 131, 137], "click": [5, 16, 17, 20, 22, 36, 38, 39, 44, 47, 64, 86, 87, 98, 103, 105, 109, 111, 115, 116, 118, 119, 121, 124, 129, 133, 142, 143, 144], "clickabl": 101, "client": [0, 1, 4, 12, 14, 16, 19, 20, 21, 27, 49, 55, 56, 58, 62, 63, 64, 66, 67, 68, 69, 72, 85, 86, 91, 103, 107, 126, 128], "client_bodi": 82, "client_id": [4, 7, 64], "client_nam": 4, "client_redirect_uri": 4, "client_secret": [4, 64], "clipboard": [103, 104], "clock": [20, 128], "clone": [4, 5, 29, 111, 112, 118, 124, 133, 137, 138, 139, 142, 143, 144], "close": [12, 20, 39, 104, 105], "closer": [36, 145], "closest": 104, "cloud": [63, 64], "cloudcmd": 104, "cloudi": [53, 56, 103], "cloudyclust": 63, "cluster": [20, 21, 23, 24, 26, 31, 32, 35, 40, 41, 44, 45, 46, 53, 54, 62, 66, 67, 68, 69, 71, 72, 86, 88, 100, 101, 105, 106, 107, 113, 116, 118, 119, 121, 124, 127, 129, 133, 134], "cluster1": [23, 36, 41, 71, 121, 129], "cluster2": [36, 71], "cluster_id": [32, 46], "cluster_overrid": 20, "cluster_us": 58, "clusteradmin": 64, "cmd": [4, 60, 87], "cmd_user": 64, "cmdline": 52, "cn": [4, 103], "code": [8, 20, 21, 23, 27, 28, 30, 31, 35, 42, 44, 45, 47, 54, 55, 58, 59, 62, 82, 84, 85, 86, 87, 89, 93, 99, 100, 101, 105, 107, 109, 111, 112, 115, 121, 128, 129, 145], "codebas": 20, "codecat555": 107, "coderais": 104, "codereadi": [59, 104], "codeserv": 51, "cog": 20, "cold": 138, "collabor": [29, 53], "collect": [2, 18, 30, 52, 93, 98, 99, 100], "colleg": 53, "collis": 107, "colon": [20, 99], "color": [20, 86, 91, 98, 104, 111], "column": [20, 101, 104], "com": [2, 4, 5, 8, 19, 20, 36, 41, 52, 54, 55, 59, 62, 64, 87, 102, 103, 104, 106, 111, 112, 118, 124, 127, 128, 130, 133], "combin": [18, 49, 87], "come": [12, 24, 45, 47, 59, 62, 65, 70, 105, 107, 111, 145], "comfort": [49, 59], "comm": 52, "comma": [37, 65, 87, 92, 101], "command": [9, 18, 23, 29, 41, 45, 49, 51, 53, 55, 57, 58, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 91, 92, 97, 102, 103, 104, 119, 121, 129, 130, 138, 139, 140, 142, 143, 144], "comment": [7, 18, 20, 54, 86, 102], "commit": [109, 119, 121, 129, 142, 143, 144, 145], "common": [1, 12, 20, 24, 35, 45, 46, 85, 105, 106, 115, 127, 140], "commonli": [36, 134], "commun": [4, 20, 47, 54, 57, 63, 65, 87, 107, 141, 145], "compar": [20, 104], "compat": [20, 58, 99, 104, 105, 106, 139, 145], "complain": [20, 68], "complaint": 101, "complet": [20, 24, 27, 31, 46, 48, 68, 71, 89, 90, 91, 96, 98, 100, 101, 102, 107, 108, 110], "complex": [104, 114], "compon": [0, 20, 36, 48, 94, 99, 100, 101, 109], "compos": [29, 51, 53, 56, 58, 62, 93, 97, 99, 100, 103, 110], "composit": 128, "compositor": 128, "comprehens": 101, "compress": 86, "compris": [20, 88], "comput": [0, 20, 21, 25, 26, 28, 40, 41, 43, 47, 51, 53, 58, 64, 65, 70, 92, 103, 105, 108, 109, 113, 117, 121, 122, 123, 129, 131, 132, 136, 137, 140], "compute_clust": 139, "comsol": [47, 54], "con": 44, "conbin": 87, "concat": 20, "concern": 109, "concurr": 145, "conda": 138, "condition": 45, "conduct": 109, "conf": [2, 10, 13, 18, 19, 49, 52, 58, 65, 66, 68, 69, 82, 84, 85, 87, 92, 98, 100, 101, 139], "confer": 99, "confidenti": 17, "config": [2, 4, 5, 8, 10, 11, 13, 14, 16, 17, 18, 20, 22, 23, 24, 29, 30, 35, 36, 41, 42, 44, 45, 47, 53, 57, 59, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 75, 76, 77, 82, 84, 85, 86, 87, 88, 93, 97, 99, 100, 103, 104, 107, 111, 115, 119, 121, 127, 128, 129, 134, 138, 141], "config_fil": 64, "config_properti": 20, "config_valu": 20, "configmap": [64, 113], "configmap_data": 138, "configmap_filenam": 138, "configur": [1, 3, 7, 8, 9, 13, 14, 15, 18, 22, 23, 24, 28, 30, 31, 34, 35, 39, 40, 41, 44, 46, 47, 48, 49, 51, 53, 55, 57, 58, 59, 62, 63, 66, 67, 68, 69, 72, 74, 75, 76, 77, 82, 84, 88, 89, 93, 97, 99, 100, 102, 106, 108, 110, 119, 121, 127, 129, 134, 138, 139, 143, 145], "configvers": 128, "confirm": [21, 41, 87, 97, 109, 117, 120, 123, 125, 130, 135], "conflict": [42, 46], "confnew": 104, "confus": [0, 24, 96, 111], "conn_fil": [89, 91], "conn_param": [28, 31, 89, 91, 104, 139], "connect": [1, 7, 11, 12, 16, 17, 18, 19, 21, 28, 31, 35, 38, 41, 42, 46, 48, 49, 51, 52, 53, 54, 55, 56, 58, 61, 64, 65, 68, 79, 81, 86, 95, 100, 101, 104, 105, 108, 117, 118, 123, 124, 127, 132, 133, 142, 143, 144], "connector": [4, 12, 87], "consequ": [20, 24, 85, 99, 104], "conserv": 20, "consid": [20, 29, 65, 102, 103, 145], "consider": [53, 58], "consist": [20, 36, 45, 47, 85, 107], "consol": 142, "consolid": 20, "const": 142, "constitut": 98, "constraint": 139, "construct": [20, 46, 47], "consum": 34, "consumpt": [52, 65], "contact": [14, 17, 20, 98, 109], "contain": [18, 20, 23, 28, 30, 34, 45, 46, 53, 54, 58, 64, 68, 85, 87, 88, 89, 99, 100, 101, 113, 119, 134, 136, 145], "container": 65, "container_bindpath": 92, "container_command": 92, "container_modul": 92, "container_path": 92, "container_start_arg": 92, "content": [5, 19, 20, 36, 45, 58, 62, 64, 87, 89, 90, 99, 105, 119, 138, 142, 143], "context": [20, 31, 34, 36, 51, 53, 60, 64, 89, 104, 123, 128], "contian": 92, "continu": [21, 35, 65, 87, 99, 100, 103, 105, 107, 117, 118, 119, 123, 124, 130, 133], "contract": 12, "contrib": 103, "contribut": [1, 54, 102, 103, 105, 107, 108, 109], "contributor": 102, "control": [20, 23, 36, 39, 45, 47, 49, 58, 63, 64, 65, 66, 67, 68, 69, 72, 78, 86, 87, 98, 99, 103, 105, 107, 115, 121, 129], "conveni": [12, 107, 140], "convent": [20, 28, 64, 98, 141], "convers": [20, 46], "convert": [2, 20, 24, 36, 45, 46], "cooki": [10, 13, 18, 19, 99], "cool": [38, 87], "coordin": 109, "coorespond": 64, "copi": [4, 5, 17, 20, 29, 46, 54, 57, 69, 85, 87, 90, 97, 98, 100, 104, 108, 113, 117, 120, 123, 125, 127, 128, 132, 135, 142, 143, 144], "copy_environ": [69, 90], "cor": 20, "core": [20, 28, 35, 36, 37, 44, 45, 49, 90, 98, 102, 108, 109, 127, 139], "corner": [5, 16, 17, 111], "correct": [1, 18, 19, 20, 24, 29, 35, 65, 71, 93, 111, 112, 121, 128, 129], "correctli": [12, 20, 27, 36, 50, 51, 105, 106, 143], "correspond": [12, 22, 23, 24, 36, 42, 45, 47, 49, 55, 60, 71, 72, 74, 77, 82, 85, 86, 87, 97, 103, 115, 119, 121, 127, 129, 134], "could": [1, 10, 20, 29, 30, 36, 41, 57, 61, 64, 65, 89, 99, 101, 104, 107, 111, 134, 138, 145], "counter": 99, "countri": 36, "coupl": 20, "cours": 30, "cover": [20, 101, 134, 139, 144], "covert8": 105, "cp": [4, 20, 29, 57, 98, 120, 125, 135], "cpu": [20, 23, 36, 49, 58, 65, 103, 107, 108, 121, 126, 129, 138, 139], "cpu_limit": 138, "cpu_request": 138, "cpuaccount": 65, "cpuquota": 65, "crash": [20, 51, 101, 128], "crb": 59, "creat": [0, 2, 17, 18, 22, 23, 27, 28, 29, 30, 32, 36, 45, 46, 47, 49, 51, 56, 58, 64, 71, 82, 85, 86, 96, 97, 98, 99, 100, 103, 105, 107, 110, 115, 116, 117, 118, 123, 124, 128, 130, 132, 133, 134, 138, 139, 142, 144, 145], "create_passwd": 46, "create_salt_and_sha1": 138, "created_at": 32, "creation": [64, 86], "cred": 64, "credentail": 64, "credenti": [16, 17, 19, 27, 59, 64], "criteria": [20, 102], "critic": [101, 109, 126], "crond": 65, "cronjob": 20, "crontab": 64, "crop": 22, "crt": [4, 18, 57, 64], "csc": [105, 107], "csrf": 20, "css": [86, 104], "cuda": 35, "cuda_vers": 35, "cuda_visible_devic": 61, "cumul": 20, "curl": 52, "current": [1, 15, 17, 20, 25, 29, 31, 35, 36, 39, 46, 53, 54, 55, 58, 59, 64, 65, 69, 71, 77, 84, 85, 86, 87, 89, 95, 96, 98, 104, 107, 108, 109, 111, 118, 119, 124, 133, 136, 145], "currentus": 20, "custom": [1, 2, 10, 12, 14, 16, 21, 22, 24, 28, 31, 35, 45, 49, 53, 60, 62, 65, 85, 86, 87, 93, 96, 97, 98, 99, 101, 102, 103, 107, 109, 111, 113, 117, 123, 132], "custom_app": 98, "custom_config": 115, "custom_css_fil": [20, 86], "custom_env": 99, "custom_javascript_fil": [86, 106], "custom_location_direct": 87, "custom_map": 12, "custom_nam": 99, "custom_pag": [20, 86], "custom_pages_guid": 20, "custom_queu": [115, 116], "custom_vhost_direct": 87, "customapp": 29, "customlog": 18, "cwd": [62, 101], "cyberinfrastructur": 7, "cybersecur": 109, "cycl": 145, "d": [2, 4, 10, 13, 18, 19, 20, 22, 23, 27, 29, 35, 36, 39, 41, 42, 45, 49, 52, 53, 55, 56, 58, 59, 63, 64, 66, 67, 68, 69, 71, 72, 73, 84, 88, 98, 100, 102, 105, 107, 111, 115, 119, 121, 127, 128, 129, 134, 139, 140], "d3d3d3": 128, "daemon": [18, 46, 52, 128], "daemons_use_tti": 60, "dai": [27, 53, 86, 109], "daili": 20, "dalli": 104, "dan": 101, "danger": [20, 98], "dark": [20, 86], "dasbhoard": 64, "dashboard": [11, 16, 19, 22, 24, 26, 28, 30, 36, 38, 46, 47, 48, 51, 53, 56, 58, 62, 64, 71, 74, 85, 86, 87, 89, 93, 97, 100, 105, 106, 107, 112, 115, 118, 120, 124, 125, 133, 135, 142, 143, 144], "dashboard_header_img_logo": [20, 86], "dashboard_layout": [20, 86], "dashboard_logo": [20, 86], "dashboard_logo_height": [20, 86], "dashboard_titl": [20, 86], "data": [12, 18, 20, 27, 34, 35, 36, 46, 48, 62, 64, 86, 89, 96, 100, 101, 103, 104, 105, 106, 109, 138], "databas": [14, 65, 69], "dataroot": 106, "date": [20, 57, 63, 89, 104], "date_field": 36, "davidmonro": 105, "db": 4, "dbu": 65, "dc": [4, 17], "deb": [59, 104, 106, 107, 145], "debian": [49, 55, 57, 59, 107, 108], "debug": [9, 20, 22, 45, 47, 49, 51, 53, 59, 65, 90, 96, 97, 119, 128, 138, 139], "decid": 24, "declar": [85, 99], "decleari": 85, "decod": [12, 62], "decreas": [49, 87, 104], "dedic": [26, 28], "def": [62, 88, 89, 143], "default": [4, 11, 12, 14, 15, 16, 17, 18, 19, 21, 23, 25, 28, 29, 35, 36, 37, 38, 39, 41, 45, 46, 47, 49, 51, 52, 53, 55, 56, 58, 59, 60, 62, 63, 64, 65, 67, 68, 69, 78, 84, 85, 86, 87, 89, 90, 91, 92, 93, 98, 100, 101, 102, 104, 106, 111, 115, 116, 121, 129, 138], "defens": 5, "defin": [4, 17, 18, 20, 23, 24, 27, 31, 34, 44, 45, 46, 56, 61, 64, 65, 71, 84, 85, 86, 87, 90, 93, 99, 103, 107, 115, 116, 119, 121, 127, 129, 134, 136, 139], "definit": [20, 24, 45, 65, 86, 88, 102], "degrad": 49, "degre": 145, "delai": 86, "delet": [5, 10, 20, 31, 49, 55, 64, 65, 75, 86, 100, 101, 104], "delimit": [20, 65, 99, 101], "deliveri": 20, "delivery_method": 20, "delivery_set": 20, "delm": 7, "demo": 87, "demonstr": [17, 20, 31, 62], "deni": [20, 85], "denial": 60, "denot": [74, 77], "depart": 20, "depend": [5, 20, 23, 29, 36, 47, 49, 51, 52, 53, 54, 55, 57, 94, 98, 99, 100, 103, 115, 116, 121, 129, 134, 136, 137, 141, 142, 143], "deploi": [8, 11, 13, 29, 31, 36, 45, 46, 47, 54, 75, 76, 77, 85, 93, 96, 99, 100, 107, 113, 117, 123, 132], "deploy": [2, 5, 20, 29, 48, 55, 57, 64, 85, 87, 98, 109, 120, 125, 135], "deprec": [20, 85, 94, 104, 131, 145], "depth": 91, "deriv": 99, "describ": [20, 23, 27, 31, 35, 36, 38, 41, 45, 46, 56, 58, 64, 68, 85, 87, 118, 121, 124, 129, 130, 133, 138, 139, 142, 143], "descript": [18, 20, 24, 36, 38, 54, 107, 142, 143, 144], "design": [65, 107], "desir": [16, 20, 51, 86, 104, 115, 137], "desk": 20, "desk1": 20, "desktop": [20, 22, 23, 25, 29, 43, 53, 58, 65, 91, 96, 97, 99, 100, 101, 104, 105, 108, 113, 123, 128, 131], "despit": [20, 99], "destin": 20, "destination_path": [138, 139], "detail": [0, 1, 2, 7, 9, 11, 12, 27, 36, 46, 47, 56, 58, 60, 61, 64, 74, 81, 84, 85, 86, 87, 94, 95, 96, 107, 109, 118, 119, 121, 124, 129, 133, 138, 139, 140, 142, 143, 144], "detect": [65, 101], "determin": [4, 36, 45, 46, 58, 64, 85, 87, 89, 91, 109, 121, 129, 138, 139], "dev": [5, 14, 17, 19, 20, 29, 30, 36, 45, 46, 47, 61, 62, 64, 65, 74, 82, 85, 92, 97, 110, 115, 116, 118, 119, 120, 121, 124, 125, 126, 127, 128, 129, 130, 133, 134, 135, 137, 138, 139, 142, 143, 144], "dev_work": [111, 112], "devel": 18, "develop": [6, 18, 20, 29, 31, 34, 36, 47, 53, 54, 59, 62, 64, 65, 85, 87, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 113, 114, 118, 124, 128, 133, 138, 139, 141, 142, 143, 145], "devgrp": 30, "dex": [1, 8, 9, 53, 55, 60, 87, 104, 106, 107], "dex_uri": [4, 87, 105], "dexidp": 4, "di": 119, "diagram": [46, 53], "dictionari": [20, 86], "did": [36, 45, 101], "didn": [36, 64], "dietz": 101, "diff": [97, 98, 99, 100, 101], "differ": [3, 14, 20, 23, 24, 35, 36, 42, 45, 49, 63, 64, 66, 67, 68, 69, 72, 84, 85, 86, 87, 98, 99, 100, 102, 105, 107, 111, 112, 121, 126, 127, 129, 142, 144], "different_select_clust": 36, "differenti": 64, "difficult": [55, 59, 104], "digit": 53, "dimens": [27, 36], "dimension1": 27, "dimension3": 27, "dimension6": 27, "dir": [4, 20, 86, 138], "direct": [1, 10, 11, 17, 18, 19, 20, 35, 42, 49, 56, 57, 71, 87, 95, 102, 103, 109, 114, 139], "directli": [2, 4, 10, 12, 20, 23, 24, 32, 36, 37, 44, 45, 47, 49, 85, 93, 95, 99, 102, 103, 104, 105, 110], "directori": [1, 15, 18, 22, 23, 29, 30, 31, 34, 36, 37, 38, 45, 46, 47, 51, 53, 55, 56, 60, 63, 65, 66, 68, 71, 74, 82, 83, 85, 86, 87, 89, 90, 93, 97, 100, 101, 102, 103, 106, 107, 109, 110, 112, 118, 119, 120, 124, 125, 128, 133, 134, 135, 136, 138, 139, 140, 142, 143, 144], "dirnam": [20, 143], "disabeled_shel": 85, "disabl": [4, 18, 19, 23, 36, 37, 39, 41, 53, 58, 60, 64, 79, 85, 86, 87, 109, 128, 130, 137], "disable_bc_shel": 86, "disable_bundle_user_config": 85, "disable_check_xsrf": 138, "disable_dashboard_logo": 86, "disable_log": 87, "disable_safari_basic_auth_warn": 103, "disabled_shel": 85, "disablerepo": 100, "disclos": 105, "discourag": [6, 69], "discours": [3, 14, 17, 20, 53, 54, 60, 99, 100, 109], "discov": [20, 87, 134], "discoveri": 87, "discuss": [9, 12, 20, 24, 36, 121, 129], "disk": [53, 60, 62, 85, 99, 118, 124, 133], "dismiss": 20, "dispar": 7, "displai": [11, 16, 20, 24, 31, 32, 37, 45, 46, 47, 57, 58, 61, 64, 75, 78, 79, 81, 83, 84, 85, 86, 87, 91, 97, 99, 100, 101, 102, 103, 104, 106, 107, 127, 128, 130, 140, 142, 143, 144], "disregard": 102, "disrupt": 102, "distant": 63, "distinct": [45, 65, 105], "distinguish": 111, "distribut": [12, 18, 20, 65], "div": [20, 104], "dl": 99, "dn": [4, 17, 65], "dnf": [4, 52, 59, 92, 104, 105, 106, 107], "do": [12, 14, 18, 20, 23, 24, 25, 27, 29, 30, 32, 36, 39, 41, 42, 43, 44, 45, 46, 47, 61, 62, 63, 64, 65, 68, 69, 79, 85, 86, 87, 89, 90, 91, 92, 93, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 115, 116, 118, 119, 122, 124, 127, 128, 130, 131, 133, 134, 137, 138, 139, 140, 142, 143, 144], "doc": [2, 4, 15, 18, 20, 57, 90, 102, 130], "docker": [0, 5, 64, 92, 138, 139], "dockerfil": [55, 59], "documen": 100, "document": [4, 7, 8, 12, 13, 15, 17, 20, 23, 27, 30, 45, 47, 49, 53, 57, 58, 64, 71, 73, 86, 87, 90, 96, 98, 101, 103, 104, 107, 109, 114, 115, 116, 138, 139, 142, 143, 144, 145], "dodeploi": 5, "doe": [1, 10, 20, 23, 27, 29, 30, 35, 36, 40, 46, 47, 57, 58, 60, 62, 63, 65, 86, 99, 101, 106, 111, 118, 124, 127, 128, 130, 131, 133, 136, 138, 144], "doesn": [18, 20, 30, 35, 47, 71, 82, 85, 89, 99, 104, 115, 116], "domain": [0, 12, 20, 41, 81, 85, 86, 87, 90, 107, 141], "don": [14, 18, 19, 20, 23, 24, 27, 35, 36, 41, 54, 55, 59, 75, 84, 85, 86, 87, 95, 96, 102, 111, 138], "donat": 99, "done": [20, 22, 23, 29, 42, 46, 60, 62, 64, 68, 89, 98, 103, 104, 111, 116, 120, 121, 125, 126, 128, 129, 135, 138, 140, 143], "dot": [0, 65, 91], "doubl": 85, "down": [5, 9, 16, 20, 36, 51, 64, 98, 111, 112, 114, 115, 116], "downgrad": [100, 107], "download": [2, 7, 18, 52, 53, 86, 105, 132], "download_en": [20, 86], "downtim": 20, "dpi": 91, "dpkg": 104, "dport": [4, 60], "drastic": 71, "draw": 0, "drawback": 20, "drawer": 108, "drink": 128, "driven": [36, 145], "drmaa": 68, "drop": [5, 16, 20, 36, 114, 115, 116], "dropdown": [16, 20, 22, 30, 36, 39, 86, 98, 99, 100, 101, 102, 103, 104, 111, 118, 120, 124, 125, 133, 135], "drwx": 82, "drwxr": [29, 82], "dsun": 130, "du": 102, "due": [99, 102, 103, 107], "duo": [1, 55], "duo_java": 5, "duosecur": 5, "duoweb": 5, "duplic": [12, 20], "durat": [20, 64, 91], "dure": [18, 20, 65, 84, 87, 89, 91, 98, 99], "dynam": [20, 23, 27, 28, 31, 32, 36, 38, 71, 86, 87, 97, 98, 104, 107, 126], "e": [0, 1, 2, 5, 8, 10, 12, 13, 17, 18, 19, 20, 29, 36, 41, 43, 45, 49, 55, 57, 58, 61, 62, 64, 65, 71, 74, 77, 85, 86, 87, 89, 98, 99, 102, 105, 115, 116, 121, 122, 129, 131, 137, 145], "each": [0, 12, 15, 20, 22, 24, 27, 29, 31, 36, 44, 45, 47, 56, 64, 65, 69, 85, 86, 95, 96, 97, 98, 99, 100, 104, 106, 108, 111, 115, 118, 124, 127, 133, 139], "each_pair": 139, "eager": 101, "earli": [46, 53, 145], "earlier": [98, 122], "easi": 104, "easier": [16, 97], "easiest": [20, 36], "easili": [20, 86, 98], "echo": [7, 12, 46, 61, 64, 71, 89, 128], "ecmascript": 108, "edg": [20, 101, 108], "edit": [2, 5, 10, 13, 17, 18, 19, 20, 23, 24, 27, 29, 31, 33, 55, 64, 71, 85, 86, 99, 102, 105, 113, 115, 119, 123, 127, 130, 134, 140, 141], "editor": [20, 27, 29, 95, 96, 97, 98, 99, 100, 101, 104, 111, 119, 127, 134], "edt": [12, 18], "edu": [4, 11, 12, 13, 14, 16, 17, 18, 19, 20, 29, 30, 41, 42, 45, 47, 54, 55, 56, 57, 58, 59, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 82, 86, 87, 90, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 115, 118, 120, 124, 125, 133, 135, 139], "edu_access_ssl": 18, "edu_error_ssl": 18, "educ": 53, "effect": [10, 19, 20, 29, 30, 41, 55, 98, 99, 104, 107, 111, 115], "effici": [20, 103], "effort": [106, 107], "efranz": [29, 30, 142, 143, 144], "eg": [16, 20, 64, 86], "eight": 20, "either": [4, 14, 20, 23, 34, 35, 36, 51, 58, 64, 65, 68, 87, 88, 99, 100, 102, 104, 105, 115, 116], "el6": [99, 100], "el7": [2, 98, 99, 100, 102, 105, 106, 108], "el8": [2, 59, 92, 105, 106, 107], "el8serv": 92, "el9": [59, 89, 106, 107], "elaps": [20, 101, 107], "element": [20, 31, 36, 68, 104, 107, 114, 115, 116, 119, 127, 134], "elev": 65, "elisa": 101, "ellips": 18, "els": [7, 12, 19, 29, 45, 49, 64, 105, 128, 139], "elsewher": 20, "elsif": 139, "email": [7, 8, 12, 16, 17, 20, 23, 29, 36, 60, 85, 87, 90, 109, 127], "email_field": [20, 36], "email_on_start": [36, 45, 90], "email_on_termin": 90, "emailattr": 4, "emb": [18, 20, 23, 45, 47, 101, 115, 121, 129], "embed": [20, 23, 32, 45, 46, 47, 99, 115, 121, 129], "emphas": 109, "emploi": [64, 104], "empti": [10, 12, 24, 27, 36, 64, 86, 87, 89, 90, 101, 126], "emul": 65, "en": [16, 20], "en_u": 92, "enabl": [2, 4, 10, 11, 16, 17, 18, 19, 23, 28, 31, 35, 36, 40, 46, 47, 53, 55, 60, 64, 65, 66, 68, 71, 85, 86, 87, 95, 97, 100, 102, 103, 104, 105, 106, 107, 110, 111, 123, 131, 139], "enable_cuda_vers": 35, "enable_gpu": 35, "enable_native_vnc": 47, "enable_starttls_auto": 20, "encod": [12, 83], "encount": [20, 51, 57, 68], "encourag": 109, "encrypt": [57, 99, 109], "end": [0, 12, 14, 18, 20, 27, 30, 41, 45, 46, 65, 71, 86, 89, 98, 101, 104, 105, 107, 111, 115, 128, 139, 140, 144, 145], "end_dat": 27, "endpoint": [16, 64, 86, 106], "endpoint_path": 86, "enforc": [20, 87], "engag": 109, "engin": [53, 56, 64, 99, 102], "english": 20, "enhanc": [94, 109], "enough": [12, 26, 104, 130], "ensur": [2, 5, 10, 20, 29, 34, 35, 42, 45, 51, 52, 57, 62, 64, 65, 68, 69, 71, 100, 102, 103, 105, 107, 109, 111, 112, 134, 136, 140, 142, 143, 144], "enter": [20, 63, 111, 118, 124, 133], "entir": [31, 36, 45, 88, 127, 143], "entiti": 7, "entitl": [39, 102], "entri": [12, 20, 24, 36, 51, 64, 65, 87, 103, 106], "entrypoint": [142, 143], "enumer": 36, "env": [4, 16, 20, 29, 30, 36, 47, 62, 64, 85, 86, 87, 90, 93, 98, 99, 102, 103, 104, 110, 138, 139, 142, 143, 144], "envdir": 66, "enviro": 86, "environ": [7, 8, 19, 20, 24, 25, 29, 30, 34, 36, 42, 46, 47, 52, 53, 58, 62, 64, 69, 71, 73, 82, 83, 85, 86, 87, 89, 90, 91, 92, 98, 101, 102, 103, 104, 105, 107, 108, 109, 111, 122, 128, 131, 134, 136, 137, 138, 139, 141, 142, 144], "environment": 101, "envvar": 49, "eof": [18, 52, 64], "eot": 128, "epel": [59, 92, 99, 100, 104], "equal": 20, "equip": 110, "equival": [20, 24, 36, 121, 129], "erb": [18, 20, 22, 23, 24, 28, 31, 34, 47, 53, 64, 73, 84, 85, 86, 89, 90, 91, 98, 101, 103, 105, 115, 116, 119, 121, 126, 127, 128, 129, 130, 134, 138, 139, 140], "eric": 29, "error": [12, 41, 50, 51, 53, 57, 62, 63, 68, 71, 82, 85, 87, 89, 90, 91, 97, 102, 113, 119, 123], "error_path": [65, 90], "errorlog": [18, 87], "errorreturncod": 62, "erubi": [23, 32, 45, 46, 47, 103, 115, 121, 129], "esac": 64, "escal": [20, 22, 51], "escap": [19, 34, 83], "especi": 57, "ess": [37, 139], "essenti": [64, 86, 109, 111], "est": [12, 20], "etc": [2, 4, 7, 8, 10, 11, 12, 13, 16, 18, 19, 20, 22, 23, 24, 26, 29, 30, 36, 41, 42, 44, 45, 47, 49, 51, 52, 56, 57, 58, 60, 63, 64, 65, 66, 67, 68, 69, 71, 72, 84, 85, 86, 87, 88, 90, 92, 93, 97, 99, 100, 101, 102, 103, 104, 105, 107, 115, 119, 121, 127, 129, 134, 138, 139], "eula": [20, 107], "euler": 107, "evalu": 101, "even": [20, 29, 30, 35, 65, 84, 104, 109, 138, 140, 145], "event": [20, 49, 104], "eventu": 20, "ever": 50, "everi": [0, 12, 18, 20, 29, 35, 36, 38, 63, 64, 71, 86, 87, 91, 103, 106, 107, 142, 143, 144, 145], "everyon": [28, 29], "everyth": [0, 29, 35, 36, 44], "everytim": 115, "ex": 36, "exact": [20, 34], "exactli": 36, "exampl": [3, 4, 7, 8, 10, 11, 13, 14, 16, 18, 19, 20, 23, 24, 27, 30, 31, 33, 35, 37, 42, 44, 46, 49, 51, 52, 53, 56, 57, 60, 61, 64, 65, 71, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 95, 98, 99, 101, 102, 103, 104, 105, 107, 111, 115, 116, 118, 121, 124, 128, 129, 131, 133, 136, 137, 138, 139, 140, 142, 143, 144, 145], "example_clust": 42, "example_templ": 20, "excel": 109, "except": [20, 62, 90, 98, 101, 106, 130, 134], "exception": 101, "excit": 107, "exclud": [29, 102], "exclus": 139, "exec": [20, 65, 67, 89, 136, 142, 143, 144], "execstart": 18, "execut": [5, 12, 20, 28, 31, 46, 58, 62, 64, 65, 67, 74, 78, 79, 82, 84, 89, 100, 115, 136, 139, 142, 143, 144], "execv": [51, 71, 119], "exempt": 99, "exercis": [55, 59], "exhaust": 108, "exisit": 86, "exist": [16, 20, 28, 31, 46, 71, 75, 82, 86, 87, 89, 93, 98, 99, 103, 104, 115, 116, 118, 124, 126, 133, 140, 144], "exit": [12, 46, 62, 64, 84, 101, 128], "exit_cod": 62, "exitcod": 84, "expand": [20, 98], "expect": [20, 36, 47, 55, 64, 65, 85, 90, 92, 99, 100, 107, 115, 116], "experi": [29, 60, 108, 130, 140], "experienc": 46, "experiment": [20, 71], "expir": [4, 20, 63, 64], "expiri": [4, 63], "explain": [19, 20, 121, 129], "explan": [99, 100], "explicitli": [20, 30, 36, 58, 87, 103, 104, 134], "explor": [20, 65, 119, 126], "export": [2, 20, 34, 41, 42, 45, 46, 48, 61, 62, 65, 68, 69, 87, 90, 128, 134, 136], "expos": [4, 19], "expr": [10, 13], "express": [9, 10, 13, 20, 36, 41, 63, 85, 87, 104, 115, 142], "extend": [15, 20, 105], "extens": [18, 20, 23, 45, 46, 47, 53, 56, 58, 102, 107, 121, 129], "extern": [4, 16, 29, 53, 98, 130, 142, 143, 144], "extra": [20, 36, 38, 90, 91, 98, 104, 143], "extra_arg": 91, "extra_jupyter_arg": [115, 116, 119, 121, 129], "extract": [27, 63, 64, 103], "ey": 47, "f": [12, 20, 23, 29, 37, 64, 65, 68, 79, 84, 102, 104, 105, 106, 107, 128, 139], "fa": [20, 47, 142, 143, 144], "facil": [20, 61], "facilit": [20, 65], "facl": [20, 29, 86, 105, 107], "facl_domain": 86, "fact": [27, 44, 46, 64], "factor": [1, 55, 64, 100, 102, 108], "fail": [12, 22, 41, 50, 51, 65, 71, 87, 102, 103, 107, 121, 129], "failur": [20, 48, 51, 62], "fairli": 20, "fakeroot": 92, "fallback": [23, 87], "fals": [4, 18, 20, 35, 36, 37, 38, 58, 64, 65, 69, 71, 85, 86, 87, 101, 102, 103, 104, 105, 130], "falsi": 20, "far": [60, 103], "fashion": 27, "fast": 20, "fastcgi_temp": 82, "faster": [12, 58, 98, 104], "fastest": 12, "favicon": [15, 20, 86, 87, 93], "favor": [87, 106], "favorit": [20, 37, 119, 127, 134], "favoritepath": [20, 105, 107], "featur": [8, 20, 27, 33, 35, 36, 37, 39, 45, 46, 47, 56, 58, 64, 68, 71, 86, 87, 92, 94, 95, 99, 100, 101, 102, 103, 104, 111, 121, 129, 145], "feaur": 20, "februari": 20, "fed": 45, "feder": [1, 7, 16, 17, 55], "fedorapeopl": 2, "fedoraproject": 99, "feed": 20, "feedback": 53, "feel": [20, 45, 55, 59, 86, 87, 98, 104], "fetch": 89, "few": [20, 24, 29, 46, 62, 65, 87, 105, 111, 114], "ff0000": 20, "fff": 85, "fi": [7, 12, 61, 64, 65, 136], "field": [16, 17, 20, 21, 23, 35, 36, 37, 45, 47, 64, 86, 90, 99, 100, 101, 104, 107, 115, 116, 126], "field_of_sci": [20, 38, 104], "fig": 46, "figur": 107, "file": [2, 4, 5, 7, 8, 9, 10, 13, 14, 15, 18, 19, 22, 23, 24, 26, 27, 28, 30, 31, 32, 34, 36, 37, 41, 42, 44, 45, 47, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 75, 76, 77, 81, 82, 83, 84, 85, 87, 88, 89, 90, 91, 93, 96, 97, 98, 99, 100, 109, 110, 115, 116, 118, 119, 121, 124, 126, 127, 128, 129, 130, 131, 133, 134, 136, 138, 139, 141, 142], "file_attach": 20, "file_limit": 20, "file_upload_max": [20, 103], "file_usag": 20, "filebrows": 86, "fileexplor": 101, "filenam": [20, 62, 87, 104, 138], "files_enable_shell_button": [86, 104], "filesystem": [20, 60, 86, 100, 134, 139], "fill": [5, 16, 24, 36, 44, 45, 46, 64, 86, 105, 115, 116, 118, 119, 124, 133], "filter": [4, 20, 27, 36, 62, 86, 98, 104], "filter_argv": 62, "filter_script": 62, "final": [10, 17, 18, 36, 45, 71, 97, 134], "find": [6, 20, 24, 29, 30, 46, 65, 71, 101, 103, 104, 106, 109, 115, 116, 128, 143], "find_host_port": 138, "find_port": 46, "fine": [20, 87, 100, 143], "finish": [71, 90, 113], "finland": 105, "firefox": [100, 101, 108], "firewal": [1, 60], "firewalld": [4, 55], "first": [4, 12, 13, 14, 16, 20, 23, 24, 27, 29, 36, 42, 45, 46, 50, 57, 64, 65, 87, 89, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 111, 115, 116, 118, 121, 124, 127, 129, 133, 138, 139, 142, 143, 144, 145], "firstgpu": 61, "fit": [20, 64], "five": 31, "fix": [53, 65, 71, 94, 96, 98, 103, 104, 107, 109, 118, 124, 130, 133, 145], "fixm": 55, "flag": [37, 38, 52, 69, 86, 90, 98, 101, 102, 103, 130], "flask": 141, "flexibl": [36, 58, 98, 138], "float": 36, "flow": [5, 16, 23, 45, 47, 53, 99, 105, 115, 121, 129], "fluxbox": [123, 131, 140], "fluxbox_assets_root": 128, "fluxbox_rc_fil": 128, "flybirdkh": 103, "focal_al": [59, 106, 107], "focu": [1, 127], "folder": [20, 32, 102, 130], "folk": 105, "follow": [0, 1, 2, 4, 7, 8, 9, 10, 12, 13, 19, 20, 23, 24, 25, 28, 29, 31, 36, 41, 42, 43, 45, 46, 47, 52, 54, 57, 60, 63, 64, 65, 66, 67, 68, 69, 72, 85, 87, 98, 102, 103, 104, 105, 106, 107, 108, 111, 114, 115, 116, 118, 120, 122, 124, 125, 130, 131, 133, 134, 135, 136, 137, 139, 141], "font": [47, 91, 107], "foo": [87, 90], "footer": [20, 89, 101], "footnot": [95, 96], "forbidden": 99, "forc": [4, 20, 35, 79, 84, 102, 103, 104, 105, 106, 107, 111, 128], "ford": [36, 115, 116], "forego": 41, "foreground": 20, "foreign": 72, "forget": 42, "fork": [45, 46, 83, 104, 138, 139], "form": [5, 16, 21, 22, 23, 28, 31, 33, 34, 39, 44, 45, 46, 47, 53, 86, 90, 98, 99, 103, 104, 106, 113, 114, 118, 119, 121, 123, 124, 127, 129, 133, 134], "form_head": [36, 107], "form_id": 34, "format": [2, 12, 19, 20, 22, 24, 27, 41, 62, 63, 85, 86, 87, 99, 101, 121, 129], "former": 44, "formerli": [7, 53], "formerlli": 103, "forward": [18, 20, 59, 98], "found": [7, 12, 20, 36, 45, 46, 47, 85, 93, 99, 100, 101, 103, 109, 138, 139], "foundat": 7, "four": [0, 20], "fp": 91, "fqdn": [4, 41, 64], "fr": 20, "fragil": 62, "frame": [5, 20, 51, 87, 145], "framework": [105, 107, 109, 141, 143, 144], "frankli": 58, "free": [35, 45, 55, 57, 59, 87, 98, 126], "freeli": [20, 145], "french": 20, "fresh": [20, 85], "friend": 128, "friendli": 20, "from": [0, 1, 2, 7, 8, 10, 12, 13, 14, 16, 17, 18, 19, 20, 22, 24, 26, 27, 29, 32, 34, 36, 37, 41, 44, 45, 46, 48, 49, 50, 51, 53, 56, 58, 62, 63, 64, 65, 67, 69, 71, 74, 79, 84, 85, 86, 87, 90, 92, 94, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 118, 120, 121, 124, 125, 127, 129, 133, 134, 135, 136, 137, 139, 140, 142, 143, 144, 145], "front": [0, 14, 20, 87], "frontend": [4, 20, 87, 99], "frozen": [99, 100], "frozen_string_liter": 144, "fsgroup": 64, "ftl": 5, "ftp": 20, "full": [12, 18, 20, 36, 47, 58, 68, 85, 86, 87, 92, 97, 101, 106, 113, 127, 131], "full_path": 20, "full_url": 34, "fullchain": 57, "fulli": 29, "fullscreen": 128, "function": [0, 1, 12, 20, 34, 41, 46, 58, 72, 87, 89, 93, 99, 100, 104, 108, 111, 128, 134, 138, 142, 145], "fund": 26, "further": [20, 31, 62, 85, 104, 105, 109, 121, 129], "futur": [10, 17, 65, 71, 85, 97, 98, 99, 101, 103], "g": [1, 2, 4, 5, 8, 10, 13, 18, 20, 29, 36, 41, 43, 45, 52, 55, 58, 71, 74, 77, 85, 87, 98, 99, 115, 116, 121, 122, 129, 131, 137, 145], "ga": 27, "ga_profil": 27, "ganglia": 108, "gap": 20, "gatewai": [29, 30, 74, 85, 118, 136], "gather": [20, 36], "gb": [20, 23, 85, 121, 127, 129], "gcloud": 64, "gcp": 63, "ge": [65, 99], "geco": 4, "gem": [90, 101, 111, 121, 129, 144], "gemfil": [103, 111, 144], "gener": [0, 1, 2, 4, 8, 10, 11, 12, 13, 14, 18, 22, 32, 34, 35, 36, 38, 41, 45, 46, 47, 51, 52, 53, 55, 60, 63, 64, 71, 73, 83, 85, 86, 89, 90, 96, 97, 98, 99, 100, 101, 104, 105, 106, 107, 115, 116, 119, 121, 127, 129, 134, 138, 145], "generat": 98, "geometri": 91, "georg": 53, "georgiastuart": 105, "get": [4, 7, 15, 17, 20, 24, 27, 29, 32, 36, 41, 44, 46, 47, 49, 57, 58, 59, 62, 64, 65, 68, 87, 96, 101, 104, 106, 107, 111, 118, 119, 123, 124, 133, 139, 140, 142, 143, 144], "get_ga_data": 27, "getelementbyid": 104, "getgrgid": 58, "getinputargu": 130, "getlogin": 86, "getpass": 62, "getpwnam": [86, 138, 139], "getruntimemxbean": 130, "getus": 62, "gi": 138, "gib": [20, 103], "gid": [64, 138, 139], "gist": [18, 86], "git": [4, 5, 29, 44, 98, 111, 112, 118, 119, 121, 124, 129, 133, 142, 143, 144], "git19": [99, 100], "git29": 102, "github": [4, 5, 20, 29, 47, 52, 54, 55, 59, 62, 67, 71, 99, 102, 103, 104, 105, 106, 109, 111, 112, 118, 124, 128, 131, 133, 145], "githubusercont": 64, "gitlab": 54, "giuliolibrando": 107, "give": [20, 30, 35, 36, 39, 41, 45, 51, 64, 87, 99, 104, 105, 107, 143], "given": [0, 7, 12, 20, 22, 23, 24, 27, 29, 36, 39, 44, 45, 46, 47, 56, 64, 66, 78, 81, 82, 84, 85, 86, 87, 89, 90, 91, 99, 107, 108, 119, 121, 127, 129, 134, 144, 145], "glnxa64": 130, "glob": [20, 36], "global": [20, 23, 24, 31, 42, 47, 58, 97, 103, 106, 113, 114, 121, 129], "global_": 36, "global_bc_form_item": 36, "global_bc_item": 36, "global_queu": 36, "globu": 86, "globus_endpoint": 86, "glossari": 53, "gmail": 20, "gnome": [21, 25], "gnu": 36, "go": [4, 16, 23, 24, 27, 30, 41, 65, 86, 98, 104, 105, 106, 111, 112, 118, 120, 124, 125, 133, 135, 138, 139, 142], "goal": [65, 118, 124, 133], "goe": [50, 65, 143], "good": [1, 18, 41, 46, 87, 98, 111], "googl": [48, 53, 64, 86, 87, 108], "google_analytics_tag_id": [27, 86], "googleapi": 64, "goolg": 64, "gopath": 4, "got": [65, 71], "gpu": [35, 36, 45, 61, 127, 128, 131, 139], "gpus_per_nod": 139, "grab": 46, "gracefulli": [100, 102], "grafana": [48, 53, 58], "grai": 0, "grant": 17, "granular": [20, 29, 105], "graph": [20, 102], "gre": [61, 99], "great": [57, 101, 111], "greater": [29, 36], "greatli": 1, "green": [36, 57], "grei": [20, 111], "grep": [7, 20, 64], "grid": [7, 12, 20, 53, 56, 87, 99, 102, 104], "gridengin": 68, "group": [4, 8, 18, 20, 29, 30, 36, 38, 51, 58, 62, 63, 64, 65, 71, 86, 87, 104, 105, 107, 138], "groupadd": [4, 18], "groupattr": 4, "groupinstal": 92, "groupsearch": 4, "grpc": 4, "guarente": 93, "guest": [134, 136], "gui": [45, 46, 54, 95, 140], "guid": [2, 20, 69, 109, 130], "guilherm": 102, "guimaluf": 102, "guruevi": 107, "gz": [18, 52], "h": [20, 84, 87, 102], "h1": 32, "h2": [14, 32], "ha": [2, 7, 11, 12, 14, 16, 18, 20, 23, 24, 26, 29, 30, 32, 34, 35, 36, 38, 39, 44, 45, 46, 47, 48, 49, 58, 59, 60, 64, 65, 66, 71, 86, 87, 89, 90, 98, 99, 100, 101, 102, 103, 106, 108, 109, 115, 116, 126, 127, 128, 130, 131, 138, 139, 140, 141, 142, 143, 145], "had": [45, 79, 96, 101, 102, 106, 107, 108], "hand": [20, 32, 36, 86, 102, 104, 143], "handi": 65, "handl": [11, 14, 19, 20, 23, 24, 46, 47, 49, 58, 62, 87, 98, 100, 102, 107, 121, 129], "handler": [87, 109], "hang": 62, "happen": [30, 51, 57, 108], "happi": [120, 121, 125, 129, 135], "harbor": 64, "hard": [21, 31, 44, 105, 107, 138], "hardcod": 127, "hardwar": [53, 126, 127], "harvard": [12, 105, 107], "hash": [4, 20, 24, 36, 45, 85, 86, 87, 90, 122], "have": [1, 3, 7, 8, 10, 12, 14, 18, 20, 21, 22, 23, 24, 27, 29, 30, 33, 35, 36, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 61, 63, 64, 65, 69, 71, 78, 79, 82, 83, 85, 86, 87, 89, 90, 91, 95, 96, 99, 100, 101, 102, 103, 104, 106, 108, 109, 111, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 125, 128, 129, 131, 133, 135, 136, 138, 139, 142, 143, 144, 145], "haven": [42, 65, 98], "hdd": [142, 143, 144], "he": 29, "head": [20, 61, 62, 65, 107], "header": [10, 18, 19, 20, 36, 45, 86, 87, 88, 89], "heart": 115, "heartbeat": 91, "heavili": 64, "height": [20, 86], "held": [20, 86, 143], "hello": [142, 143, 144], "helm": 64, "help": [12, 16, 21, 22, 29, 34, 36, 37, 46, 47, 48, 49, 53, 60, 61, 66, 83, 84, 86, 87, 96, 101, 102, 103, 107, 109, 111, 115, 116, 127, 130, 134, 136], "help_bar": [20, 86], "help_menu": [20, 86], "helper": [30, 107], "her": 0, "here": [1, 7, 12, 15, 17, 20, 24, 27, 30, 33, 34, 35, 36, 38, 39, 44, 45, 47, 51, 54, 56, 58, 59, 64, 65, 68, 86, 88, 89, 90, 93, 102, 103, 104, 105, 106, 107, 109, 110, 111, 115, 121, 128, 129, 136, 138, 139, 142, 143, 144], "heterogen": 35, "hex": [18, 19, 65], "heymann": 101, "hh": 101, "hi": [29, 107], "hidden": [20, 35, 37, 47, 58, 65, 98, 103, 107], "hidden_field": [20, 36, 37], "hide": [30, 31, 36, 53, 86, 101, 104, 106, 118, 124, 126, 133], "hide_app_vers": [86, 105], "hide_when_empti": 20, "hierarchi": [20, 93, 98, 134], "high": [0, 41, 53, 105, 109], "higher": [20, 36, 87, 106, 107], "highest": [89, 106], "highli": [6, 22, 46], "highlight": [20, 53, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 121, 128, 129], "hint": 18, "hit": [27, 46], "hoffman2": 99, "hold": [23, 45, 46, 86, 87, 90, 98, 138, 139, 143], "home": [16, 18, 23, 29, 30, 36, 37, 45, 46, 47, 51, 53, 60, 62, 63, 65, 71, 85, 86, 90, 96, 97, 98, 106, 118, 124, 128, 133, 134, 138, 139], "home_dir": 138, "homedir": 118, "homepag": 86, "hook": [31, 87], "hookenv": 64, "hooksdir": 64, "host": [1, 4, 14, 27, 28, 41, 42, 45, 46, 47, 49, 52, 53, 55, 56, 58, 60, 62, 63, 64, 66, 67, 68, 69, 72, 84, 85, 87, 89, 91, 92, 98, 100, 101, 104, 106, 107, 115, 120, 121, 125, 129, 134, 135, 136, 138, 139, 142, 143, 144], "host_based_profil": [20, 86], "host_cfg": 138, "host_port_cfg": 138, "host_regex": [41, 87], "host_typ": [138, 139], "hostnam": [2, 18, 20, 27, 41, 46, 47, 49, 51, 86, 87, 89, 121, 129], "hostport": 138, "hour": [19, 20, 23, 24, 36, 45, 64, 89, 90, 109, 127], "hous": [58, 86], "hover": [17, 38, 107], "hoverov": 36, "how": [0, 2, 7, 12, 20, 23, 24, 27, 29, 36, 39, 41, 42, 44, 45, 47, 48, 49, 52, 56, 58, 62, 64, 85, 86, 87, 88, 90, 98, 99, 100, 102, 103, 104, 105, 106, 107, 111, 115, 116, 118, 121, 124, 129, 133, 134, 138, 139, 142, 143], "howev": [18, 20, 23, 36, 44, 65, 98, 102, 103, 105, 106, 107], "hpc": [0, 3, 14, 16, 17, 18, 19, 20, 21, 29, 53, 54, 56, 58, 63, 64, 65, 66, 67, 68, 69, 72, 95, 103, 113, 138], "hpctoolset": 20, "href": 47, "htcacheclean": [102, 103], "hterm": 108, "html": [2, 15, 18, 19, 20, 31, 34, 36, 37, 47, 57, 86, 87, 89, 97, 100, 103, 104, 107, 114, 115, 116, 119, 127, 130, 134], "html_option": 35, "htpasswd": 19, "http": [1, 2, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 29, 36, 41, 45, 46, 47, 52, 54, 55, 57, 58, 59, 60, 62, 64, 65, 74, 82, 84, 87, 88, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 118, 120, 121, 124, 125, 127, 128, 129, 130, 133, 135, 136, 144], "http_port": 4, "http_refer": 85, "http_user_ag": 85, "http_x_forwarded_escaped_uri": 82, "http_x_forwarded_for": 85, "httpd": [2, 10, 12, 13, 18, 19, 48, 51, 52, 53, 55, 59, 84, 98, 100, 102, 103, 104, 105, 107], "httpd24": [2, 10, 18, 19, 84, 98, 100, 102, 103, 104, 105, 106], "httpd_can_network_connect": 60, "httpd_enable_homedir": 102, "httpd_execmem": 102, "httpd_mod_auth_pam": 60, "httpd_read_user_cont": 102, "httpd_run_stickshift": 60, "httpd_setrlimit": 60, "httpd_unifi": 102, "https_port": 4, "hub": 136, "huge": 127, "hugemem": [127, 139], "human": 20, "hybrid": 54, "hyperthread": 139, "hyphen": [35, 36], "hypothet": 47, "i": [0, 1, 2, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 77, 78, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 95, 96, 97, 100, 102, 104, 106, 108, 109, 110, 111, 112, 113, 115, 116, 118, 119, 121, 122, 124, 126, 127, 128, 129, 130, 131, 133, 134, 136, 137, 138, 139, 141, 142, 143, 144, 145], "i18n": 20, "iam": 27, "ico": [15, 20, 86], "icon": [20, 38, 39, 44, 46, 47, 86, 142, 143, 144], "iconbar": 128, "id": [4, 7, 12, 16, 17, 19, 20, 22, 30, 32, 34, 36, 46, 47, 51, 58, 63, 64, 65, 71, 85, 86, 87, 90, 103, 104, 107, 111, 119, 127, 138, 139], "id_": 104, "idattr": 4, "idea": [20, 62, 111, 115, 116], "ideal": 20, "ident": [5, 7, 8, 14, 20], "identifi": [20, 85], "idl": [18, 49, 85, 91], "idletimeout": 91, "idp": [2, 7, 8, 11, 13, 18, 20, 64], "idp_issuer_url": 64, "idpdev": [14, 16, 17, 18, 19], "idphint": 7, "idpmetadata": 2, "idtoken": 4, "ie": [16, 71, 108], "ifmodul": 49, "ifnotpres": 139, "ifram": 20, "ignor": [41, 58, 65, 71, 85, 103], "ihpc": 47, "illeg": [53, 68], "illustr": [0, 27, 35], "imag": [20, 39, 46, 63, 65, 86, 87, 89, 92, 93, 101, 103, 107, 132, 134, 138, 139], "image_pull_polici": 139, "image_pull_secret": 64, "imagin": 35, "img": [15, 90], "immedi": [29, 65, 140], "impact": [108, 130], "implemen": 131, "implement": [20, 27, 65, 102, 109, 126, 128, 131, 142, 143, 144], "implicitli": [41, 58], "import": [2, 17, 23, 27, 29, 42, 49, 51, 62, 64, 86, 92, 101, 138, 139, 142, 143, 144], "impos": 65, "improv": [62, 68, 96, 105, 107, 109], "inaccess": [105, 107], "inact": [20, 108], "inbetween": 64, "inch": 91, "incid": 108, "includ": [0, 2, 8, 10, 15, 18, 20, 23, 24, 29, 30, 36, 42, 47, 51, 53, 54, 56, 58, 60, 64, 65, 69, 79, 85, 86, 95, 98, 101, 102, 103, 104, 105, 107, 109, 128, 134, 136, 143, 145], "inclus": [105, 107], "incom": 20, "incommon": [1, 17], "incompat": 104, "incorpor": 36, "incorrectli": [65, 107], "increas": [12, 20, 29, 49, 85, 86, 99, 104, 107, 108], "increment": 36, "inde": [44, 56], "indent": [20, 58], "index": [15, 20, 47, 142, 143], "indic": [38, 57, 86, 90, 102, 104, 142, 143, 144], "indirect": 107, "individu": [29, 64, 65, 98, 109, 141], "info": [16, 18, 20, 31, 48, 62, 64, 71, 87, 98, 121, 129], "inform": [2, 7, 9, 13, 20, 23, 27, 28, 31, 34, 36, 46, 49, 50, 51, 53, 58, 65, 69, 86, 87, 95, 101, 102, 103, 104, 105, 106, 109, 121, 129], "infra": 17, "infrastructur": [2, 73, 94], "ing": [20, 101], "ingest": 20, "inheret": 44, "inherit": 20, "ini": [20, 85], "init": [5, 82, 113, 128, 139, 142], "init_contain": 138, "initi": [0, 14, 20, 30, 37, 46, 51, 63, 86, 87, 90, 93, 98, 101, 104, 121, 129, 138, 139, 141], "initialzi": 138, "inject": 105, "inkei": 2, "input": [4, 12, 24, 35, 36, 37, 47, 60, 84, 90], "input_path": 90, "input_us": 12, "inquiri": 109, "insecur": [1, 41, 55], "insecureskipverifi": 4, "insensit": 20, "insert": [17, 20, 41, 104], "insid": [10, 20, 45, 60, 64, 92, 111, 134, 139], "instal": [1, 7, 8, 9, 10, 13, 14, 17, 20, 21, 24, 25, 28, 30, 40, 41, 43, 47, 48, 51, 53, 58, 60, 62, 63, 65, 67, 68, 69, 71, 78, 84, 85, 86, 87, 92, 95, 96, 97, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 111, 118, 122, 124, 131, 133, 137, 139, 140, 141, 142, 143], "install_bas": 18, "instanc": [0, 5, 7, 14, 18, 20, 26, 27, 47, 53, 57, 81, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 114, 141], "instanti": 20, "instantli": 113, "instead": [12, 14, 18, 19, 20, 23, 24, 36, 45, 47, 58, 62, 65, 69, 87, 90, 91, 93, 100, 101, 102, 103, 104, 105, 107, 111, 112, 121, 129, 140], "institut": [1, 16, 20, 26, 53, 54, 86, 107], "instruct": [4, 5, 7, 20, 21, 31, 35, 54, 94, 97, 102, 103, 105, 106, 117, 123], "integ": [4, 24, 36, 45, 46, 85, 86, 87, 89, 90, 91, 101], "integr": [2, 53, 64, 141], "intel": [36, 128, 139], "intend": [25, 27, 42, 43, 46, 97, 108, 115, 122, 131, 137], "interact": [0, 4, 22, 23, 24, 25, 28, 29, 34, 35, 36, 37, 38, 42, 43, 45, 46, 47, 48, 51, 53, 56, 58, 60, 64, 65, 66, 72, 86, 95, 96, 97, 99, 100, 101, 102, 103, 106, 108, 114, 115, 116, 117, 118, 120, 123, 124, 125, 126, 132, 133, 135, 138, 139], "interactive_apps_menu": [20, 86], "interest": [14, 20, 55, 59, 111, 144], "interfac": [19, 20, 29, 47, 64, 72, 86, 96, 97], "interfer": 100, "interim": 130, "interm": [18, 57], "intermedi": [36, 55, 57], "intern": [45, 46, 47, 51, 85, 87, 98, 105, 121, 129], "internation": [20, 100, 101], "interpol": [20, 42, 58, 85], "interpret": 90, "interv": [64, 86, 107], "intervent": 36, "intro": 20, "introduc": [20, 99, 107, 115, 118, 124, 133, 145], "introduct": [1, 45, 47, 53, 99], "intuit": 99, "invalid": [20, 102, 118, 124, 133], "invers": 20, "invert": 20, "invoc": 63, "invok": 123, "involv": [35, 55, 59], "io": [0, 20, 47, 64, 138], "ip": [20, 41, 64, 87, 105, 107, 138], "iptabl": [4, 60], "irrespect": [79, 118, 124, 133], "isn": 12, "isol": [29, 109], "issu": [20, 22, 36, 46, 51, 55, 57, 59, 64, 65, 66, 67, 69, 71, 72, 85, 87, 101, 103, 104, 105, 109, 113, 123, 140, 142, 143, 144], "issuer": 20, "item": [5, 24, 31, 35, 44, 45, 64, 86, 88, 89, 91, 103, 105, 139], "its": [13, 20, 24, 29, 36, 51, 65, 85, 98, 99, 101, 103, 105, 109, 111, 121, 129, 130, 140, 145], "itself": [15, 20, 26, 30, 44, 51, 61, 69, 85, 108, 110, 113, 138, 139], "j": [4, 28, 31, 36, 59, 60, 71, 85, 86, 99, 100, 103, 104, 108, 112, 113, 123, 141], "jammy_al": [59, 106, 107], "jan": [12, 98], "januari": 98, "jar": 5, "jason": 102, "jasonbuechl": 102, "java": [18, 113, 123], "java2d": 130, "java_opt": 130, "javas": 130, "javascript": [20, 35, 36, 86, 104, 107, 126], "jboss": 18, "jdenni": 2, "jdk": 18, "jeff": 12, "jessi": 12, "jiao": [54, 103], "jim": 74, "jk": 18, "jnickla": 71, "job": [21, 22, 24, 25, 26, 28, 29, 31, 32, 34, 36, 39, 41, 42, 43, 44, 46, 47, 51, 53, 55, 56, 61, 62, 63, 64, 66, 67, 69, 70, 71, 72, 86, 88, 89, 90, 91, 93, 97, 99, 105, 106, 107, 113, 114, 117, 119, 121, 122, 123, 127, 128, 129, 130, 131, 132, 137, 138, 139], "job_environ": [45, 90], "job_id": [32, 63], "job_info_memory_cache_s": 66, "job_nam": [52, 90], "job_script_cont": [119, 139], "job_script_opt": 119, "jobcompos": 20, "jobid": [20, 58, 62], "jobid_regex": 63, "joel": 101, "johndo": 102, "johrstrom": [29, 65], "join": [20, 27, 46, 62, 128], "journal": 12, "journalctl": 12, "jqueri": [35, 104], "json": [18, 20, 64, 86, 119, 142], "jul": 29, "jupit": 20, "jupyt": [0, 20, 28, 31, 37, 41, 47, 51, 53, 54, 56, 58, 87, 95, 96, 98, 99, 108, 109, 113, 114, 115, 116, 119, 121, 122, 129, 131], "jupyter_api": [34, 139], "jupyter_experiment": 54, "jupyter_group": 20, "jupyterlab": 37, "jupyterlab_switch": 34, "just": [20, 24, 27, 29, 30, 36, 45, 47, 58, 61, 64, 71, 85, 86, 87, 98, 102, 103, 104, 112, 118, 124, 133, 136, 138, 139, 144], "juypter": 34, "juypterlab": 34, "k8": [64, 138, 139], "k8s_username_prefix": 64, "karlsson": 107, "kb": [20, 102], "kc_restart": 18, "keep": [14, 17, 19, 20, 44, 45, 49, 65, 86, 103, 106, 111], "kei": [2, 4, 18, 24, 36, 37, 38, 57, 58, 64, 65, 69, 85, 86, 93, 107, 109, 128], "kept": 20, "kerbero": 60, "kernel": [51, 58], "keycloak": [1, 8, 15, 20, 55, 87, 96], "keycloak_access_ssl": 18, "keycloak_duo_spi_buildbox": 5, "keycloak_error_ssl": 18, "keycloak_ident": 18, "keycloak_sess": 18, "keycloak_state_check": 18, "keycloakpass": 18, "keyfil": 128, "keyword": 20, "kib": 20, "kill": [46, 64, 65, 79, 83, 102, 108, 142, 143, 144], "kind": [1, 57, 64, 87], "know": [14, 17, 30, 34, 36, 57, 64, 85, 87, 90, 102, 105, 109, 110, 139], "knowledg": [20, 110], "known": [7, 8, 19, 34, 47, 87, 99, 100, 108, 113, 123, 140], "known_host": 65, "ktrout": 87, "kube": [64, 87], "kubeconfig": [64, 138, 139], "kubectl": 64, "kubernet": [53, 56, 60, 113], "l": [2, 18, 23, 29, 41, 46, 71, 86, 103, 121, 129, 139], "l138": 62, "l148": 62, "lab": [34, 37], "label": [0, 20, 21, 23, 31, 36, 37, 52, 58, 115, 116, 121, 127, 129, 136, 139], "lack": 65, "laid": 20, "land": [20, 105, 107], "landscap": 109, "lang": [92, 130], "languag": [23, 92, 104, 105, 107, 142, 143], "larg": [35, 45, 89, 103, 107, 139, 145], "large_clust": 45, "largemem": 139, "larger": 103, "largest": 89, "last": [20, 24, 36, 64, 105, 106, 140], "lastli": [20, 36, 138], "lastusedthreshold": 64, "later": [18, 29, 36, 46, 86, 115, 138], "latest": [5, 15, 47, 52, 92, 98, 99, 100, 108, 109, 128], "latter": 44, "launch": [18, 21, 22, 24, 25, 29, 31, 34, 36, 39, 42, 43, 46, 51, 53, 62, 63, 71, 82, 86, 87, 93, 95, 96, 99, 100, 101, 111, 112, 113, 115, 116, 117, 118, 119, 121, 122, 123, 124, 129, 131, 132, 133, 134, 136, 137, 138, 139, 140, 142, 143, 144], "launcher": [134, 136], "layout": [53, 86, 101, 105, 107, 111], "lc_all": 92, "ld_library_path": [71, 85, 93, 134], "ldap": [1, 6, 14, 16, 18, 60, 64, 79, 103, 107, 109], "ldap1": 17, "ldap2": 17, "lead": [20, 71, 85], "learn": [119, 121, 129], "least": [49, 145], "leav": [17, 20, 24, 36, 58, 127], "left": [5, 6, 16, 17, 20, 37, 39, 55, 58, 59, 86, 96, 103, 104, 107, 118, 124, 133], "leftov": 46, "length": [20, 46, 65], "lenoard": 107, "less": [20, 36, 98, 102, 109], "let": [12, 14, 17, 20, 24, 27, 30, 35, 36, 41, 44, 57, 62, 71, 102, 105, 109, 111, 130, 138, 139, 143], "letsencrypt": 87, "letter": 36, "level": [0, 20, 36, 58, 62, 71, 87, 105], "leverag": [47, 115, 116], "lexic": 10, "lib": [4, 12, 18, 58, 62, 65, 66, 68, 72, 82, 85, 87, 99, 100, 134, 139], "lib64": [58, 65, 71], "libapache2": 2, "libari": 136, "libdir": 66, "libdrmaa": 68, "libdrmaa_path": 68, "libexec": 2, "librari": [27, 30, 32, 35, 46, 55, 58, 59, 63, 67, 71, 72, 87, 89, 106, 107, 136, 142, 143], "libtorqu": 72, "licens": [20, 29, 45, 54, 107, 126], "license_fil": 45, "life": [104, 145], "lifetim": 64, "light": [0, 20, 86], "lightweight": 4, "like": [6, 7, 12, 18, 20, 22, 23, 24, 27, 29, 31, 35, 36, 39, 42, 45, 46, 49, 50, 51, 53, 54, 55, 56, 57, 59, 63, 64, 65, 66, 67, 68, 69, 70, 72, 86, 87, 89, 90, 91, 99, 103, 104, 105, 107, 109, 111, 113, 121, 127, 128, 129, 134, 138, 140, 142, 143, 145], "likelihood": 54, "likewis": 136, "limit": [36, 46, 53, 54, 58, 64, 69, 85, 90, 105, 107, 126, 138], "limit_in_byt": 65, "line": [0, 12, 18, 20, 23, 30, 37, 38, 41, 45, 55, 60, 65, 68, 69, 71, 85, 102, 115, 116, 119, 121, 128, 129, 130, 138], "link": [3, 6, 11, 15, 16, 22, 29, 30, 41, 47, 53, 54, 55, 58, 64, 85, 86, 87, 101, 103, 106, 118, 119, 124, 133], "linux": [12, 47, 52, 55, 58, 59, 60, 64, 65, 104, 105, 107, 108], "linux_host": 65, "linuxhost": [21, 53, 56, 102], "linuxhost_adapt": 65, "linuxhost_submit": 23, "linuxhostadapt": 65, "list": [1, 19, 20, 22, 29, 30, 36, 38, 44, 45, 47, 54, 56, 58, 62, 64, 65, 71, 76, 80, 85, 86, 87, 91, 92, 93, 95, 96, 97, 99, 100, 101, 102, 104, 105, 106, 107, 112, 113, 114, 118, 119, 124, 128, 133, 141, 142, 143], "listen": [4, 18, 41, 47, 52, 87, 138, 142], "listen_addr_port": 87, "listenbacklog": 49, "littl": [18, 36, 139], "live": [46, 70, 87], "ll": [7, 12, 20, 24, 27, 36, 39, 63, 64, 65, 68, 89, 91, 98, 102, 104, 112, 138, 139, 143], "lmod": [107, 122, 127, 131, 134, 137, 139], "lmod_dir": 86, "lmodfil": 134, "ln": [29, 30, 111, 112, 118], "load": [10, 17, 18, 20, 42, 46, 51, 52, 58, 62, 71, 86, 89, 92, 93, 99, 100, 101, 104, 106, 107, 119, 122, 127, 128, 131, 134, 137, 142, 143, 144], "load_script": 62, "load_serv": 144, "loadmodul": 49, "local": [7, 9, 12, 16, 23, 41, 42, 44, 57, 58, 60, 63, 64, 65, 66, 67, 68, 69, 72, 84, 86, 87, 98, 100, 110, 113, 114, 115, 118, 124, 133, 134, 138, 139, 144], "local_usernam": 12, "localdomain": 12, "localfil": 86, "localhost": [4, 12, 18, 20, 46, 52, 65, 99, 103], "localiz": 20, "locat": [2, 4, 10, 11, 18, 19, 20, 22, 23, 24, 36, 41, 45, 46, 47, 48, 51, 57, 62, 85, 86, 87, 97, 98, 100, 102, 104, 106, 109, 111, 115, 118, 119, 120, 121, 124, 125, 127, 129, 133, 134, 135, 138, 140], "lock": 57, "log": [5, 11, 12, 13, 16, 17, 18, 20, 22, 46, 47, 48, 53, 58, 60, 62, 64, 68, 71, 82, 85, 87, 97, 99, 100, 101, 104, 105, 106, 109, 119, 142], "log_level": 138, "log_me_out": 87, "log_out": 20, "logformat": 87, "logger": 12, "logic": [4, 20, 46, 47, 104, 105, 139, 143], "login": [4, 5, 15, 16, 17, 18, 20, 24, 25, 26, 30, 41, 42, 47, 51, 55, 56, 63, 64, 65, 66, 67, 68, 69, 70, 72, 87, 90, 99, 102, 103, 104, 112, 115], "login01": [29, 58, 65], "login02": 65, "login03": 65, "login_url": 34, "loginalertmessag": 20, "loginalerttyp": 20, "loginbuttontext": 20, "loginlogo": 20, "logintitl": 20, "logo": [15, 20, 29, 86, 93, 100], "logo_img_tag": 20, "logout": [1, 8, 9, 13, 19, 20], "logout_redirect": [8, 11, 13, 19, 87], "logout_uri": 87, "logroot": 87, "long": [20, 36, 46, 86, 98, 101, 140], "longer": [12, 20, 35, 86, 100, 101, 102, 103, 106, 107, 111, 112], "look": [4, 12, 18, 20, 24, 31, 36, 38, 46, 51, 56, 58, 63, 64, 65, 66, 67, 68, 69, 71, 72, 85, 86, 87, 98, 103, 104, 111, 118, 119, 121, 124, 127, 128, 129, 133, 138, 139, 144], "lookup": [7, 139], "loop": [27, 115, 139], "lost": 104, "lot": [24, 27, 48, 49, 138, 139], "louthan": 53, "lower": [12, 20, 36], "lowercas": [12, 34, 36], "lowest": 89, "lsb": 66, "lsb_mbd_port": 66, "lsb_query_enh": 66, "lsb_query_port": 66, "lsf": [45, 53, 55, 56, 58, 86, 90, 95, 96, 100], "lsof": [108, 134], "lua": [12, 19, 27, 87, 104, 134], "lua_log_level": [12, 87], "lua_root": 87, "luahookfixup": 19, "ly": 20, "m": [4, 5, 12, 18, 46, 52, 53, 60, 69, 101, 119, 121, 129, 142, 143, 144], "mac": 47, "machin": [20, 26, 45, 55, 57, 65, 92, 107, 120, 125, 135], "made": [4, 20, 28, 31, 36, 47, 84, 98, 100, 102, 103, 104, 105, 106, 107, 109, 119, 121, 127, 129, 139], "mah": 128, "mai": [4, 6, 10, 12, 17, 18, 20, 22, 24, 27, 29, 30, 32, 36, 39, 40, 42, 44, 45, 46, 47, 48, 49, 51, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 68, 69, 71, 85, 86, 87, 90, 93, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 114, 122, 126, 127, 130, 131, 134, 136, 137, 138, 139, 142, 145], "mail": [4, 98], "mailer": 20, "main": [5, 14, 31, 36, 42, 44, 56, 62, 64, 86, 89, 102, 119, 121, 127, 129, 134, 139, 142, 145], "maintain": [85, 95, 96, 97, 100, 104, 106, 109, 118, 124, 133, 136], "mainten": [53, 69, 87, 98, 105, 107, 109], "maintenance_ip_allowlist": [20, 87, 105, 107], "maintenance_ip_whitelist": [105, 107], "major": [47, 53, 101, 136], "make": [4, 8, 12, 16, 18, 20, 23, 24, 27, 28, 34, 35, 36, 47, 52, 60, 65, 71, 73, 95, 96, 97, 105, 107, 108, 110, 111, 112, 118, 121, 124, 127, 128, 129, 133, 138, 139], "malic": 105, "malici": [20, 41, 46], "maluf": 102, "man": 65, "manag": [1, 16, 20, 22, 23, 29, 36, 39, 45, 53, 55, 56, 58, 59, 60, 63, 65, 66, 67, 68, 69, 71, 72, 87, 98, 99, 102, 107, 115, 116, 117, 123, 130, 131, 139, 140], "managementfactori": 130, "mani": [7, 20, 27, 29, 49, 56, 58, 59, 64, 65, 85, 86, 105, 138, 140], "manifest": [28, 31, 36, 107, 142, 143, 144], "manipul": [36, 45, 53, 64], "manner": [20, 105], "manpath": [85, 93], "manual": [10, 19, 62, 63, 65, 85, 86, 102, 108, 118, 124, 133], "map": [1, 2, 9, 13, 14, 18, 20, 58, 64, 85, 86, 87, 93, 99, 106, 127], "map_fail_uri": 87, "mapfil": [7, 87], "mapped_us": 7, "mapper": 64, "marco": 128, "mark": 145, "markdown": [20, 24, 32, 36, 98, 104], "markdown_erb": 20, "master": [17, 18, 20, 55, 59, 64, 142, 143, 144], "match": [5, 12, 20, 22, 41, 51, 62, 64, 65, 84, 85, 87, 101, 115], "mate": [21, 24, 25, 123, 131, 140], "matei": 128, "mathwork": 130, "matlab": [28, 29, 36, 53, 54, 113, 126, 127, 129, 130, 131], "matlab_env": 130, "matlab_root": 130, "matlabcentr": 130, "maven": 5, "max": [31, 36, 37, 65, 85, 127], "max_item": 20, "max_port": [46, 89], "max_result": 27, "max_siz": 20, "maxim": [101, 113], "maximum": [20, 35, 36, 46, 85, 86], "maxrequestsperchild": 49, "maxrequestwork": 49, "maxsparethread": 49, "mayank": 105, "mayb": [20, 65, 145], "mbd_refresh_tim": 66, "md": [20, 31, 54, 86, 98], "mdq": 7, "me": [17, 47, 87], "mean": [4, 7, 16, 18, 20, 23, 24, 29, 36, 38, 42, 55, 98, 99, 100, 102, 103, 104, 105, 106, 107, 112, 121, 129, 142, 143, 144], "meant": [25, 27, 43, 83, 104, 122, 131, 137], "measur": 27, "mechan": [4, 20, 29, 87, 98, 103, 105], "media": [23, 65, 134], "medium": 35, "meet": [20, 65, 102], "mellon": 2, "mellon_create_metadata": 2, "mellon_endpoint": 2, "mellon_metadata": 2, "mellon_user_guid": 2, "mellonen": 2, "mellonendpointpath": 2, "mellonidpmetadatafil": 2, "mellonspcertfil": 2, "mellonspmetadatafil": 2, "mellonspprivatekeyfil": 2, "mem": [23, 90, 121, 129], "member": [4, 20, 29, 107], "membership": 58, "memori": [20, 45, 49, 58, 65, 71, 90, 107, 108, 126, 127, 138, 139], "memory_limit": 138, "memory_mb": 139, "memory_request": 138, "memoryaccount": 65, "memorylimit": 65, "memsw": 65, "mention": 54, "menu": [5, 16, 22, 36, 37, 38, 39, 53, 58, 86, 96, 98, 99, 100, 103, 104, 105, 107, 111, 118, 124, 128, 133, 142, 143, 144], "menufil": 128, "merg": [4, 62, 99, 100, 102], "messag": [12, 15, 21, 36, 37, 51, 53, 65, 71, 84, 86, 87, 102, 115, 116, 118, 124, 133], "messages_en": 15, "metadata": [2, 7, 20, 38, 41, 42, 56, 58, 63, 64, 65, 66, 67, 68, 69, 72, 103, 115], "method": [24, 29, 34, 36, 46, 47, 58, 65, 93, 99, 107, 109, 115, 116], "metric": [27, 52, 64, 108], "metrics_path": 52, "mfa": 5, "mgd": 107, "mi": 139, "michael": 107, "micket": 105, "micro": 103, "microsoft": 108, "mid": 101, "midnight": 90, "might": [18, 20, 29, 30, 52], "migrat": [20, 97], "miller": 101, "millicor": 138, "millisecond": [20, 86], "mime": 85, "mime_types_path": 85, "mimic": [23, 71, 121, 129], "min": [31, 36, 37, 127], "min_port": [46, 89], "min_uid": 85, "mind": 65, "minim": [20, 21, 140], "minimal_": 20, "minimum": [35, 36, 85, 108], "minor": 53, "minsparethread": 49, "minut": [20, 108], "mirror": 136, "mirrorurl": 136, "misbehav": 46, "misc": [111, 112], "miser": 22, "miss": [53, 105], "missing_home_directori": 20, "mistak": 20, "mit": 54, "mitig": [104, 130], "mix": [58, 107], "mjbludwig": 54, "mjob": 101, "mkdir": [4, 20, 22, 29, 30, 52, 56, 71, 98, 118, 124, 128, 133, 142, 143], "mktemp": 128, "mm": 101, "mnakao": 105, "mnt": [23, 65, 134], "mod": [2, 18, 57], "mod_auth_ca": 3, "mod_auth_mellon": [1, 55], "mod_auth_oidc": 11, "mod_auth_openidc": [8, 14, 87, 106, 107], "mod_auth_openidc_sess": [7, 8, 19], "mod_auth_openidc_session_0": [7, 8, 19], "mod_auth_openidc_session_1": [7, 8, 19], "mod_auth_openidc_session_chunk": [7, 8, 19], "mod_auth_shib": 11, "mod_authn_": 13, "mod_head": 18, "mod_mpm_ev": 49, "mod_ood_proxi": [12, 87, 96, 97, 98], "mod_proxi": 20, "mod_shib": 13, "mod_ssl": [2, 57], "modal": [37, 39], "mode": [17, 29, 37, 48, 53, 66, 87, 100, 141], "model": [0, 20, 29], "modern": 108, "modif": [13, 15, 18, 24, 36, 86, 98, 100, 105], "modifi": [4, 10, 13, 15, 18, 19, 20, 21, 22, 23, 29, 30, 36, 40, 41, 53, 54, 64, 65, 84, 85, 87, 93, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 113, 117, 123, 134, 138, 139], "modul": [1, 2, 11, 13, 19, 23, 36, 41, 42, 46, 49, 51, 56, 58, 59, 65, 86, 87, 89, 91, 92, 103, 104, 105, 106, 107, 115, 116, 119, 121, 122, 127, 128, 129, 131, 134, 137, 142, 144], "modular": 107, "module_file_dir": 86, "module_path": 134, "modulepath": 86, "moment": 111, "mon": 18, "mondai": 20, "monitor": [53, 130, 140], "monolith": [99, 100], "monorepo": 102, "month": [27, 108, 145], "more": [0, 1, 2, 7, 9, 11, 12, 17, 20, 23, 24, 29, 30, 36, 41, 45, 47, 48, 49, 51, 56, 57, 58, 64, 68, 69, 71, 86, 87, 95, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 116, 121, 129, 138, 139, 142, 143, 145], "most": [1, 10, 12, 14, 20, 22, 23, 35, 36, 45, 46, 49, 64, 65, 85, 86, 98, 100, 101, 104, 121, 129, 134], "mostli": [111, 145], "motd": [29, 53, 86, 100], "motd_format": 20, "motd_path": 20, "motd_render_html": 86, "motd_titl": 20, "mount": [23, 60, 64, 65, 92, 113, 134, 136, 142], "mount_path": 138, "mountpoint": 92, "move": [29, 48, 59, 97, 98, 99, 104, 113, 118, 124, 130, 133, 134], "mozilla": 108, "mp": 140, "mpi": 127, "mpm": 49, "mpm_event_modul": 49, "mpm_prefork_modul": 49, "mrodger": 29, "msc": 18, "msg": [20, 98], "much": [20, 39, 49, 58, 64, 98, 104, 139], "multi": [18, 38, 66, 69], "multiphys": 54, "multipl": [12, 17, 20, 24, 29, 36, 37, 85, 86, 87, 93, 102, 107, 114, 127], "multipli": 49, "multitud": [87, 97], "mung": [60, 69, 139], "muse": 111, "must": [1, 4, 16, 20, 22, 23, 24, 34, 36, 37, 45, 46, 47, 49, 52, 54, 56, 60, 62, 64, 65, 68, 86, 102, 103, 104, 105, 106, 107, 110, 115, 116, 118, 120, 124, 125, 133, 134, 135, 136, 138, 139], "mv": [2, 98, 115], "mvn": 5, "my": [10, 11, 13, 20, 23, 24, 27, 29, 36, 38, 41, 44, 47, 56, 63, 64, 65, 66, 67, 68, 69, 72, 85, 86, 87, 91, 92, 105, 107, 115, 118, 124, 133, 142, 143], "my_app": [31, 36, 44, 45, 46, 47], "my_app_imag": 90, "my_app_img": 90, "my_cent": [4, 20, 41, 42, 47, 55, 56, 57, 63, 64, 66, 67, 68, 69, 72, 115, 118, 120, 124, 125, 133, 135], "my_clust": [20, 23, 24, 56, 63, 66, 67, 68, 69, 72, 86, 98, 103, 115, 116, 119, 121, 129, 134], "my_cluster_widget": 20, "my_conf": 84, "my_cool_form_item": 107, "my_custom_attribut": 36, "my_custom_script": 45, "my_env_var": 20, "my_k8s_clust": 64, "my_module_vers": 36, "my_new_widget": 20, "my_other_clust": 103, "my_pun_app": 87, "my_pun_control": 87, "my_queu": 45, "my_schedul": 63, "my_site_hook": 87, "my_submit": 23, "my_uri": 87, "myaccount": 71, "myapp": [74, 98, 143], "mycent": 20, "myclust": 66, "mydomain": 20, "myfil": 84, "myfold": [20, 86], "myjob": [20, 29, 58, 62, 96, 98, 101], "mysit": 20, "mysql": 14, "n": [7, 20, 23, 27, 45, 58, 61, 62, 64, 68, 71, 74, 78, 79, 82, 88, 90, 121, 129, 143], "n0001": 41, "n0691": 41, "name": [4, 5, 7, 8, 13, 15, 16, 17, 18, 29, 30, 36, 38, 39, 41, 44, 46, 47, 52, 53, 54, 55, 56, 57, 58, 63, 64, 65, 69, 71, 85, 86, 87, 89, 90, 91, 93, 96, 101, 104, 105, 107, 111, 115, 118, 121, 124, 126, 127, 129, 130, 133, 136, 138, 139, 142, 143, 144], "nameattr": 4, "nameid": 2, "namespac": [0, 20, 46, 58, 64, 65, 74, 77, 85], "namespace_prefix": 64, "namespacelabel": 64, "namespacelastusedannot": 64, "namespaceregexp": 64, "nation": 7, "nativ": [23, 31, 36, 45, 64, 65, 88, 90, 107, 108, 115, 116, 121, 129, 138, 139], "native_vnc_login_host": 47, "nav": 20, "nav_bar": [20, 86], "nav_categori": [20, 86, 105, 107], "nav_help_custom": [16, 20], "navbar": [20, 85, 86, 98, 100, 104], "navbar_typ": [20, 86], "navconfig": [99, 100], "navig": [16, 22, 36, 37, 38, 41, 53, 64, 86, 98, 99, 102, 104, 105, 106, 107, 109, 111, 112, 118, 120, 124, 125, 133, 135, 142, 143], "navit": 105, "navlogo": 20, "nb": [19, 85], "nb_gid": [138, 139], "nb_uid": [138, 139], "nb_user": [138, 139], "nc": 41, "ncat": [43, 108], "ncpu": [23, 121, 129], "nearing": 20, "nearli": 102, "necessari": [4, 5, 20, 36, 46, 60, 64, 65, 101, 102, 103, 108, 131, 140], "necessarili": 71, "need": [4, 7, 8, 10, 12, 13, 14, 15, 18, 19, 20, 22, 23, 24, 27, 29, 34, 35, 36, 38, 40, 42, 43, 44, 45, 46, 47, 49, 51, 52, 54, 55, 57, 58, 59, 62, 63, 64, 65, 68, 71, 72, 85, 87, 88, 89, 90, 92, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 109, 111, 112, 115, 116, 118, 121, 124, 128, 129, 131, 133, 136, 138, 139, 140, 142, 143, 144, 145], "nest": 4, "netbean": [23, 65], "netbeans_2019": [23, 65], "network": [18, 64, 87], "network_policy_allow_cidr": 64, "never": [10, 17, 20, 42, 59, 62, 86, 99, 105, 106, 138], "new": [4, 5, 10, 13, 14, 19, 20, 23, 27, 29, 30, 36, 37, 38, 39, 44, 46, 47, 52, 55, 59, 64, 85, 86, 94, 95, 96, 97, 99, 100, 111, 118, 120, 121, 124, 125, 129, 133, 135, 138, 139, 142, 143, 144, 145], "new_app": 29, "new_app_group": 29, "new_app_us": 29, "new_featur": 111, "new_tab": 20, "new_window": [20, 38, 104], "newer": [8, 27, 102], "newjob_refresh": 66, "newli": [17, 20, 77], "newlin": [12, 101], "next": [20, 23, 34, 53, 64, 90, 101, 105, 111, 115, 116, 119, 121, 129, 134, 138, 139, 145], "next_url": 34, "nextwindow": 128, "nextworkspac": 128, "nf": [60, 138], "nfsroot": 139, "nginx": [0, 12, 19, 20, 26, 28, 51, 52, 53, 62, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 85, 93, 97, 98, 99, 102, 103, 104, 105, 106, 107, 108, 109, 119, 141, 142, 143, 144], "nginx16": [99, 100], "nginx_bin": 85, "nginx_clean": [83, 85, 104, 105, 106], "nginx_file_upload_max": [20, 85], "nginx_handl": 19, "nginx_list": 83, "nginx_show": 83, "nginx_sign": 85, "nginx_stag": [20, 30, 53, 73, 83, 86, 87, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "nginx_stage_exampl": [85, 93, 99], "nginx_uri": 87, "night": 145, "nightli": 53, "nil": [20, 27, 86, 89, 90, 91, 98], "ningx": 98, "nmap": [43, 108], "nmodul": 58, "no_good_config": 65, "noarch": [59, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "noble_al": [59, 106, 107], "node": [0, 18, 20, 21, 23, 24, 25, 26, 28, 30, 35, 36, 40, 41, 43, 45, 47, 51, 54, 55, 56, 58, 59, 60, 62, 65, 69, 70, 85, 87, 90, 97, 99, 100, 103, 105, 106, 107, 108, 112, 117, 121, 122, 123, 127, 128, 129, 131, 132, 137, 138, 139, 140, 141], "node01": 47, "node02": 47, "node_modul": [99, 100], "node_selector": 139, "node_typ": [23, 24, 35, 107, 127, 128, 139], "node_uri": [41, 87], "nodea": 52, "nodej": [0, 53, 59, 100, 102, 105, 106, 107, 141, 145], "nodejs010": [99, 100], "nodejs10": 104, "nodejs12": 105, "nodejs6": [71, 102], "nologin": [4, 18], "nomenclatur": 0, "non": [4, 20, 45, 62, 64, 65, 109], "none": [17, 35, 36, 62, 69, 90], "nonetheless": 144, "noreset": 61, "normal": [20, 99, 108, 139], "nosoftwareopengl": 128, "notabl": [20, 95, 96, 105, 134], "notat": 20, "note": [2, 7, 16, 20, 29, 36, 37, 39, 46, 51, 53, 58, 62, 63, 64, 71, 85, 86, 87, 90, 92, 115, 118, 124, 133, 138], "notebook": [31, 37, 41, 47, 53, 87, 108, 117, 118, 119, 121, 122, 129, 131, 138, 139], "notebookapp": [47, 138], "noth": [12, 23, 46, 101, 105], "notic": [18, 19, 20, 23, 24, 87, 98, 105, 111, 112, 118, 124, 133], "notifi": 36, "novnc": [21, 54, 86, 102, 108], "novnc_default_compress": [86, 107], "novnc_default_qu": [86, 107], "now": [16, 17, 18, 19, 20, 22, 23, 24, 27, 29, 33, 34, 36, 39, 41, 44, 45, 49, 57, 59, 62, 65, 71, 86, 89, 90, 97, 98, 99, 100, 101, 105, 106, 111, 112, 115, 116, 118, 119, 121, 124, 127, 128, 129, 133, 134, 142, 143, 144], "npm": [111, 112, 142], "nsf": [1, 55, 109], "nslookup": 57, "nsswitch": 139, "ntask": 139, "nuccitheboss": 107, "null": [4, 5, 11, 19, 24, 36, 61, 62, 64, 65, 85, 86, 87, 89, 101, 138, 139, 143], "num": 35, "num_cor": [35, 37, 45, 90, 127, 139], "number": [20, 23, 24, 35, 36, 37, 41, 44, 45, 47, 49, 52, 53, 65, 79, 81, 85, 86, 87, 89, 90, 101, 104, 107, 108, 121, 127, 129], "number_field": [35, 36, 37, 127], "number_of_hour": 45, "nvidia": [35, 127], "nvm": 112, "o": [2, 5, 8, 18, 20, 47, 52, 59, 62, 64, 65, 68, 71, 86, 87, 104, 106, 107, 136, 139, 142, 143, 144], "oak": 71, "oaklei": [7, 12, 22, 35, 56, 64, 107], "oauth": 7, "oauth2": 16, "obatchmod": 62, "object": [17, 20, 27, 31, 36, 47, 85, 86, 87, 90, 127], "objectclass": 4, "objectlabel": 64, "observ": 66, "obsolet": 84, "obtain": 57, "occass": 128, "occur": [49, 61, 84, 96, 107], "oci": 0, "odd": 17, "odic": 64, "oe": 71, "off": [15, 17, 18, 19, 20, 45, 46, 49, 58, 60, 87, 89, 91, 102, 106, 128], "offer": [61, 65, 83, 84, 127], "offici": [103, 108, 130, 145], "often": [63, 138], "ohio": [98, 139], "ohiosupercomput": [5, 138], "oidc": [1, 4, 8, 11, 17, 19, 87, 103, 107], "oidc_access_token": 87, "oidc_claim": 19, "oidc_claim_email": 87, "oidc_claim_preferred_usernam": 87, "oidc_client_id": [7, 8, 87], "oidc_client_secret": [7, 8, 87], "oidc_cookie_same_sit": 87, "oidc_discover_root": 87, "oidc_discover_uri": 87, "oidc_provider_metadata_url": [7, 8, 87], "oidc_remote_user_claim": [7, 8, 12, 87], "oidc_scop": [7, 8, 87], "oidc_session_inactivity_timeout": [7, 8, 87], "oidc_session_max_dur": [7, 8, 87], "oidc_set": [7, 8, 87], "oidc_state_max_number_of_cooki": [7, 8, 87], "oidc_uri": [7, 8, 19, 87], "oidcauthrequestparam": 7, "oidcclientid": [10, 19, 87], "oidcclientsecret": [19, 87], "oidccookiesamesit": 87, "oidccryptopassphras": 19, "oidcpassclaimsa": [7, 8, 19], "oidcpassidtokena": [7, 8, 87], "oidcpassrefreshtoken": [7, 8, 87], "oidcprovidermetadataurl": [19, 87], "oidcredirecturi": 19, "oidcremoteuserclaim": [19, 87], "oidcresponsetyp": 8, "oidcscop": 87, "oidcsessioninactivitytimeout": [19, 87], "oidcsessionmaxdur": [19, 87], "oidcstatemaxnumberofcooki": 87, "oidcstripcooki": [7, 8, 10, 19], "ok": [20, 107, 143], "old": [86, 100, 102, 104, 107], "olddisplai": 61, "older": [86, 102, 103, 105, 106, 107], "omit": [14, 20, 27, 86, 101], "onc": [7, 17, 20, 32, 34, 36, 39, 47, 64, 98, 100, 111], "ondemand": [0, 1, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 22, 25, 28, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 54, 55, 56, 58, 59, 60, 61, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 81, 82, 84, 85, 87, 89, 90, 92, 93, 96, 97, 98, 99, 105, 106, 107, 108, 109, 110, 111, 112, 115, 116, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145], "ondemand_config": 138, "ondemand_export": 52, "ondemand_manage_user_home_dir": 60, "ondemand_manage_vmblock": 60, "ondemand_port": 85, "ondemand_titl": 85, "ondemand_tmux": 65, "ondemand_use_kerbero": 60, "ondemand_use_kubernet": [60, 105], "ondemand_use_ldap": 60, "ondemand_use_nf": 60, "ondemand_use_shell_app": 105, "ondemand_use_slurm": 60, "ondemand_use_smtp": 60, "ondemand_use_ssh": [60, 105], "ondemand_use_sssd": 60, "ondemand_use_torqu": 60, "ondemand_usernam": 64, "ondemand_version_path": 85, "ondemandopen": 103, "one": [0, 7, 19, 20, 30, 35, 36, 44, 45, 51, 56, 58, 64, 65, 87, 89, 90, 93, 98, 99, 101, 102, 103, 104, 105, 110, 118, 124, 133, 139, 140, 142, 143], "ones": [20, 79, 101, 127], "onfailur": [138, 139], "ongo": 109, "onli": [0, 1, 4, 8, 12, 14, 16, 18, 20, 24, 25, 27, 29, 32, 34, 35, 36, 37, 43, 44, 45, 46, 47, 52, 55, 56, 60, 63, 64, 65, 68, 72, 74, 78, 79, 82, 85, 86, 87, 89, 91, 95, 96, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 112, 118, 121, 122, 124, 129, 131, 133, 137, 142, 143, 145], "onlin": 29, "onsubmit": 34, "onto": 85, "ood": [1, 4, 8, 10, 11, 12, 13, 14, 16, 18, 22, 23, 24, 26, 29, 30, 36, 41, 42, 44, 45, 47, 51, 52, 53, 55, 56, 57, 58, 60, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 85, 86, 87, 88, 89, 91, 93, 96, 97, 98, 99, 100, 101, 104, 105, 106, 107, 112, 115, 118, 119, 120, 121, 124, 125, 127, 129, 133, 134, 135, 138, 142, 143, 144], "ood_": [86, 87], "ood_allowlist_path": [20, 105, 107], "ood_app_catalog_url": 29, "ood_app_shar": [29, 104], "ood_auth_map": [8, 12, 95, 96, 97, 98], "ood_balance_path": 20, "ood_balance_threshold": 20, "ood_batch_connect_cache_attr_valu": 36, "ood_bc_ssh_to_compute_nod": [20, 58, 102], "ood_brand_bg_color": [85, 86, 111], "ood_brand_link_active_bg_color": 85, "ood_config_d_directori": [86, 111], "ood_cor": [58, 62, 90, 121, 129], "ood_dashboard_dev_docs_url": 20, "ood_dashboard_docs_url": 20, "ood_dashboard_help_custom_url": [16, 20], "ood_dashboard_logo": 20, "ood_dashboard_logo_height": 103, "ood_dashboard_passwd_url": 20, "ood_dashboard_support_email": 29, "ood_dashboard_support_url": 20, "ood_dashboard_titl": 85, "ood_default_sshhost": 20, "ood_dev_ssh_host": 30, "ood_download_dir_max": 20, "ood_hide_job_arrai": 20, "ood_job_name_illegal_char": [20, 102], "ood_local": [20, 103], "ood_locales_root": 20, "ood_max_script_size_kb": [20, 102], "ood_mod_proxi": 87, "ood_native_vnc_login_host": 47, "ood_oidc_access_token": 87, "ood_port": [2, 4, 7, 8, 10, 11, 13, 19, 20, 41, 53, 73, 84, 98, 101, 102, 103, 104, 105, 106], "ood_portal_exampl": 87, "ood_pun_socket_root": [85, 100], "ood_pun_t": 60, "ood_quota_path": [20, 99], "ood_quota_threshold": 20, "ood_shel": [101, 104], "ood_shell_inactive_timeout_m": 20, "ood_shell_max_duration_m": 20, "ood_shell_origin_check": 20, "ood_shell_ping_pong": 20, "ood_show_job_options_account_field": 98, "ood_ssh_port": 20, "ood_ssh_wrapp": 20, "ood_sshhost_allowlist": 20, "ood_support": [30, 58], "ood_upcase_account": 36, "ood_xdmod_host": 20, "oodappkit": 115, "oodcor": [36, 115, 116, 121, 129], "oodfilesapp": [20, 105, 107], "oodsupport": [30, 138, 139], "opaque_remote_usernam": 12, "open": [1, 4, 6, 7, 9, 10, 12, 13, 14, 17, 20, 22, 30, 31, 35, 37, 38, 39, 40, 41, 42, 44, 45, 47, 48, 49, 51, 54, 55, 56, 59, 60, 61, 62, 65, 66, 69, 70, 72, 73, 84, 85, 86, 87, 89, 97, 99, 103, 105, 106, 107, 109, 110, 111, 118, 119, 124, 127, 133, 142, 143, 145], "open_sess": 65, "open_timeout": 20, "openid": [1, 7, 11, 12, 16, 17, 18, 19, 20, 55, 64, 100], "openjdk": [18, 131], "openldap": [4, 17], "openondemand": [2, 20, 49, 64, 101, 109], "openssl": [2, 18, 19, 122], "oper": [24, 45, 46, 53, 59, 104, 106, 109, 136, 145], "opt": [5, 8, 10, 12, 13, 15, 18, 19, 20, 23, 29, 41, 58, 62, 63, 64, 65, 67, 71, 84, 85, 87, 89, 90, 91, 92, 93, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 130, 134, 138, 139], "optim": [20, 36, 130, 139], "optimis": 54, "option": [1, 2, 4, 10, 12, 22, 23, 24, 28, 31, 33, 36, 37, 38, 41, 42, 44, 46, 47, 52, 55, 57, 58, 63, 64, 65, 66, 67, 68, 69, 72, 75, 76, 80, 83, 86, 100, 102, 103, 104, 107, 109, 114, 115, 116, 118, 121, 122, 124, 126, 127, 129, 130, 131, 133, 137, 138, 140, 142, 143, 144], "options_account_help": 20, "oracl": 130, "order": [10, 13, 16, 20, 24, 27, 36, 47, 51, 53, 54, 58, 64, 65, 93, 105, 107, 130, 134, 140], "oregon": 53, "org": [2, 4, 7, 12, 15, 16, 18, 20, 57, 64, 99, 101, 109, 136, 144], "org_nam": 20, "org_rol": 20, "organ": [2, 20, 105], "organiz": 2, "orgid": [20, 58], "origin": [20, 47, 62, 86, 102, 104, 109, 142, 143, 144], "orin": 98, "os": 106, "osc": [4, 5, 12, 14, 15, 16, 17, 18, 19, 20, 22, 27, 30, 41, 47, 52, 54, 55, 56, 58, 59, 61, 62, 64, 65, 71, 86, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 118, 124, 126, 127, 128, 131, 133, 136, 139, 145], "osc_test": 20, "osu": 58, "osvers": 136, "other": [1, 2, 10, 12, 13, 15, 17, 20, 23, 24, 28, 29, 31, 32, 36, 44, 45, 47, 51, 52, 53, 55, 58, 59, 61, 63, 64, 65, 68, 83, 85, 86, 87, 89, 91, 92, 97, 98, 100, 101, 102, 104, 105, 107, 108, 110, 111, 117, 122, 123, 131, 137, 138, 139, 143, 145], "other_main": 89, "other_users_of_the_clust": 58, "otherwis": [4, 12, 36, 38, 42, 46, 64, 65, 139, 142, 144], "ou": [4, 17], "our": [7, 10, 17, 20, 23, 24, 27, 30, 41, 53, 71, 87, 95, 96, 98, 99, 100, 105, 107, 108, 109, 111, 115, 116, 118, 119, 121, 124, 129, 133, 138, 140], "ourselv": [27, 140], "out": [2, 6, 7, 11, 12, 13, 16, 18, 19, 20, 27, 35, 36, 44, 45, 46, 52, 58, 62, 64, 65, 85, 86, 87, 103, 105, 108, 109, 111, 112, 115, 116, 118, 124, 133], "outag": [69, 102], "outcom": 18, "outlin": [20, 47, 98, 109, 114], "outliv": 20, "output": [12, 46, 47, 49, 50, 51, 58, 62, 63, 71, 86, 89, 90, 99, 101, 115, 119], "output_cluster1_2018": 71, "output_path": [65, 90], "outsid": [0, 8, 10, 13, 20, 23, 64, 70, 100, 102, 139, 145], "over": [17, 20, 38, 57, 59, 86, 87, 98, 108, 109, 118, 124, 133, 143], "overal": 107, "overid": 86, "overidden": 90, "overlai": 128, "overrid": [23, 24, 36, 37, 38, 41, 44, 47, 53, 58, 65, 72, 86, 89, 90, 93, 99, 121, 128, 129, 134], "overridden": [24, 38, 89, 91], "overried": 44, "overview": [1, 28, 51, 53, 55, 88, 109], "overwrit": 98, "overwritten": 65, "owen": [12, 24, 29, 36, 44, 46, 58, 65, 101, 127, 139], "owens_login": [24, 65], "owens_login_desktop": 24, "own": [12, 13, 15, 20, 28, 29, 31, 36, 45, 47, 49, 51, 64, 65, 83, 86, 87, 99, 104, 105, 106, 111, 140], "owner": [30, 85, 104, 118, 124, 133], "ownership": [18, 51, 107], "p": [4, 20, 22, 29, 30, 56, 60, 71, 86, 89, 98, 101, 102, 118, 124, 128, 133], "p100": 127, "p18": 139, "p20": 139, "pack": 64, "packag": [1, 5, 20, 30, 55, 59, 60, 100, 102, 103, 104, 107, 136, 139, 142, 145], "page": [1, 6, 11, 15, 16, 18, 19, 24, 27, 29, 34, 35, 36, 39, 45, 47, 48, 49, 51, 53, 56, 59, 61, 65, 86, 87, 88, 101, 102, 103, 106, 107, 111, 115, 116, 118, 124, 133, 138, 139, 141, 142, 143], "page_cod": 20, "pagepath": 27, "pagin": 27, "pair": [20, 38, 86, 93, 99, 115, 116], "pam": [6, 65], "pam_exec": 65, "pam_keyinit": 65, "pam_limit": 65, "pam_mkhomedir": [20, 99], "pam_servic": 65, "pam_sss": 65, "pam_succeed_if": 65, "pam_systemd": 65, "pam_uid": 65, "pam_unix": 65, "pam_us": 65, "pane": 95, "panel": [20, 31, 39, 58, 104, 128], "panelid": 20, "parallel": 45, "param": [19, 62, 66], "paramet": [17, 20, 22, 28, 31, 36, 85, 89, 91, 104, 105, 113, 117, 119, 123], "paraview": [54, 95], "parent": [44, 65, 99, 100], "parlanc": [138, 139], "pars": [12, 20, 27, 46, 58, 62, 71, 87, 101], "parse_uri": 27, "part": [0, 7, 12, 26, 27, 36, 48, 54, 102, 111, 130], "parti": [41, 58], "partial": [20, 95, 107], "particip": 53, "particular": [0, 22, 23, 36, 51, 104, 118, 124, 133], "particularli": [55, 59, 107, 109], "partit": [36, 53, 85, 108, 113, 115, 116, 139], "pass": [4, 10, 12, 19, 20, 34, 35, 36, 62, 64, 69, 71, 85, 87, 89, 90, 91, 92, 93, 104, 127], "passeng": [28, 38, 52, 53, 81, 82, 85, 98, 102, 103, 104, 105, 106, 107, 108, 142, 143], "passenger40": [99, 100], "passenger_": 85, "passenger_base_uri": 142, "passenger_log_fil": 85, "passenger_max_preloader_idle_tim": 85, "passenger_nodej": 85, "passenger_opt": 85, "passenger_pool_idle_tim": 85, "passenger_python": 85, "passenger_root": 85, "passenger_rubi": 85, "passenger_statu": 52, "passenger_wsgi": 143, "passengerag": 52, "passwd": [46, 91, 138], "passwd_from_secret": 138, "password": [4, 5, 18, 19, 20, 31, 46, 62, 63, 64, 65, 71, 89, 91, 122, 138], "password_field": 36, "password_fil": 46, "password_s": 89, "password_sha1": 138, "passwordless": 65, "passwordplacehold": 20, "past": [20, 64, 101, 108], "patch": 53, "path": [4, 12, 13, 18, 20, 23, 29, 37, 41, 42, 47, 52, 58, 60, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 75, 76, 77, 82, 85, 86, 87, 89, 90, 91, 92, 93, 99, 100, 102, 104, 105, 107, 111, 134, 136, 138, 139, 144], "path_selector": [37, 106], "pathnam": [20, 46, 86], "pattern": [20, 36, 87, 104], "paw0003": 20, "pb": [21, 53, 56, 72, 90, 102, 117, 123], "pbs_default": 71, "pbspro": [45, 53, 67, 95, 100], "pcp_dir": 93, "pdf": [97, 101], "peer": 28, "pem": [57, 87], "pencil": 39, "peopl": [4, 17], "per": [0, 12, 18, 20, 26, 36, 65, 74, 77, 78, 79, 80, 81, 82, 85, 91, 93, 98, 99, 103, 104, 108, 109, 119, 121, 127, 129, 139], "percentag": 108, "perfect": 126, "perform": [16, 24, 45, 46, 48, 53, 58, 60, 64, 65, 84, 101, 102, 103, 127, 128, 130, 140], "perhap": 44, "period": [20, 105, 108, 145], "perl": 104, "perl5lib": 93, "perman": [4, 60], "permiss": [4, 8, 10, 18, 19, 20, 27, 46, 58, 62, 85, 99, 109, 115, 118, 124, 133, 142, 143, 144], "permit": [58, 126, 145], "persist": [20, 128, 138], "person": 29, "personel": 26, "perspect": 59, "pfx": 2, "pgrep": 140, "phish": 41, "phusion": 141, "phusion_passeng": 85, "physic": 26, "pick": [45, 111], "picker": 126, "pid": [12, 65, 68, 82, 85, 140], "piec": [65, 111], "pin": [29, 53, 86, 111], "ping": [53, 71, 106], "pinned_app": [20, 29, 86, 104, 111], "pinned_apps_group_bi": [20, 29, 86, 104, 111], "pinned_apps_menu_length": [20, 86, 111], "pip": [92, 143], "pip3": [62, 92], "pipe": 139, "pirat": 128, "pittsburgh": 53, "pitzer": [58, 99, 101, 139], "pitzer_01_login": 58, "pixel": 86, "pizzazz": 47, "pkcs12": 2, "pkg_config_path": 93, "pki": [18, 57, 64], "place": [10, 14, 20, 29, 44, 46, 47, 57, 58, 62, 64, 93, 98, 111, 131], "plai": [39, 111], "plain": [20, 47, 55, 59, 104, 143], "plan": [60, 109], "plantuml": 0, "platform": [20, 28, 38, 47, 49, 53, 105, 107, 109], "pleas": [4, 14, 17, 20, 23, 36, 47, 53, 54, 57, 60, 71, 87, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 115, 116], "plessing": 103, "plu": [134, 136], "plugin": [28, 29, 31, 36, 65, 95, 98, 118, 124, 133], "pm": 98, "pn": 41, "pn001": 41, "pn500": 41, "png": [15, 20, 38, 46, 86], "pod": [64, 138, 139], "point": [15, 16, 20, 23, 36, 41, 46, 57, 64, 71, 83, 84, 87, 111, 112, 118, 143, 144], "polici": [5, 18, 20, 53, 55, 60, 87, 107], "polish": 29, "poll": [65, 86], "pom": 5, "pong": [53, 106], "pool": 70, "popul": [27, 34, 36, 46, 64, 99, 103, 105], "port": [4, 14, 18, 19, 41, 46, 47, 51, 52, 53, 60, 87, 89, 91, 105, 138, 139, 142], "port_cfg": 138, "portabl": 45, "portal": [4, 8, 9, 11, 12, 13, 14, 20, 30, 41, 53, 55, 73, 85, 87, 96, 97, 98, 100, 101, 104, 105, 106, 107], "portal_set": 20, "portion": [20, 27, 47, 87, 100], "posit": [36, 65, 71], "posix": [20, 68], "posixaccount": [4, 17], "posixgroup": 4, "possibl": [20, 24, 29, 32, 41, 45, 46, 47, 53, 57, 62, 64, 65, 72, 78, 89, 90, 99, 102, 107, 109, 112, 121, 129, 134, 145], "possibli": [18, 111], "post": [16, 31, 34, 53, 54, 60, 92, 99, 100], "postur": 20, "potenti": [65, 86, 101, 109], "power": 108, "powerpoint": 0, "powertool": [59, 104], "ppc64le": [107, 108], "ppn": [23, 121, 129], "practic": 109, "pre": [20, 64, 87, 98, 103, 118, 124, 133, 136], "preced": [20, 36, 64, 87], "precis": 68, "predefin": [27, 31, 45, 47, 105], "prefer": [4, 20, 36, 47, 62, 128, 131, 140], "preferred_usernam": [8, 19, 87], "preferredusernameattr": 4, "prefix": [20, 36, 64, 85, 86, 87], "prehook": 64, "prepar": [1, 89, 109], "prepend": [20, 24, 86, 104], "prerequisit": [8, 13, 27], "present": [20, 22, 24, 27, 30, 36, 44, 51, 102, 104, 105, 107, 118, 124, 133, 139], "preserv": 93, "preset": [18, 44], "press": [17, 39, 107], "prevent": [19, 20, 29, 65, 85, 102, 137, 140, 145], "preview": 104, "previou": [20, 24, 36, 97, 98, 99, 100, 102, 103, 107, 143, 145], "previous": [20, 98, 99, 100, 103, 104], "previx": 36, "prevwindow": 128, "prevworkspac": 128, "primari": [0, 29, 36, 47, 65, 98, 109], "print": [7, 41, 62, 64, 65, 84, 89, 121, 129], "prior": [12, 20, 35, 36, 93, 99, 100, 102, 104, 105, 107, 130, 145], "prioriti": 90, "privaci": 10, "privat": [13, 18, 19, 57, 109, 139], "privileg": [20, 22, 64, 65, 83, 87, 109], "privkei": 87, "privleg": 100, "pro": [44, 67], "probabl": [14, 17], "problem": [17, 20, 62, 71, 99, 108, 109, 130], "problemat": [102, 106], "proc": 140, "procedur": [9, 109], "proceed": 59, "process": [0, 23, 30, 45, 46, 47, 48, 65, 68, 74, 78, 79, 80, 81, 82, 83, 85, 87, 92, 93, 98, 101, 104, 107, 108, 109, 115, 116, 121, 129, 140, 141, 142], "process_nam": 52, "processor": [23, 24, 36, 121, 127, 129], "prod": 64, "produc": 5, "product": [14, 18, 20, 29, 52, 56, 58, 64, 71, 85, 87, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 118, 124, 133, 139, 142, 143, 144, 145], "production_profil": 20, "profession": [21, 53, 56, 117, 123], "profil": [7, 8, 16, 53, 85, 87, 93, 99, 100, 139], "profile_link": [20, 86], "profile_nam": 20, "profiles_guid": 20, "program": [7, 45, 64, 102], "project": [3, 24, 29, 35, 37, 53, 62, 86, 103, 105, 107, 108, 109, 118, 124, 127, 133, 134, 138, 139, 142, 143, 144], "project1": 20, "project_nam": 20, "project_typ": 20, "prolog": 61, "prometheu": [48, 53, 64], "prometheusaddress": 64, "pronunci": 128, "proot": 100, "propag": [0, 69, 134, 136], "proper": [18, 20, 56, 64, 65, 87], "properli": [2, 13, 18, 41, 58, 87, 95, 96, 98, 99, 100, 115], "properti": [15, 18, 20, 27, 36, 65, 87, 105, 106, 107], "protect": [20, 87], "proto": [18, 20], "protocol": [17, 18, 20, 27, 57, 64, 109], "proven": 60, "provid": [1, 2, 4, 5, 7, 8, 12, 14, 17, 18, 19, 20, 29, 30, 31, 35, 36, 37, 42, 44, 45, 46, 47, 51, 52, 53, 54, 56, 57, 58, 60, 63, 64, 65, 68, 71, 84, 87, 89, 92, 93, 98, 99, 102, 103, 105, 106, 107, 109, 117, 123, 126, 127, 131, 132, 136, 138, 142, 144, 145], "provis": 14, "proxi": [0, 1, 10, 12, 14, 18, 19, 31, 40, 53, 74, 77, 85, 108], "proxy_serv": 87, "proxy_temp": 82, "proxy_us": 85, "proxypass": 18, "proxypassrevers": 18, "proxypreservehost": 18, "proxyrequest": 18, "psc": 53, "pstree": 65, "ptrace": 134, "pub": 99, "public": [4, 16, 20, 57, 59, 60, 86, 93], "public_root": 87, "public_uri": 87, "public_url": [20, 86], "publicli": 93, "publish": [7, 141], "pull": [64, 102, 109, 111, 112, 136, 145], "pun": [0, 11, 12, 19, 20, 26, 27, 29, 51, 52, 53, 60, 62, 64, 69, 73, 74, 77, 79, 80, 81, 83, 85, 87, 97, 98, 102, 104, 105, 106, 108, 109, 111, 112, 118, 119, 124, 133, 142], "pun_access_log_path": 85, "pun_app_config": 85, "pun_config_path": 85, "pun_custom_env": [20, 85, 86, 93, 99, 101, 102, 103], "pun_custom_env_declar": [85, 93, 99], "pun_error_log_path": 85, "pun_log_format": 85, "pun_max_retri": 87, "pun_pid_path": 85, "pun_pre_hook_export": 87, "pun_pre_hook_root_cmd": 87, "pun_secret_key_base_path": 85, "pun_sendfile_root": 85, "pun_sendfile_uri": 85, "pun_socket_path": 85, "pun_socket_root": 87, "pun_stage_cmd": 87, "pun_tmp_root": 85, "pun_uri": 87, "punctuat": 101, "puppet": [56, 98], "purdu": 101, "pure": [58, 112], "purg": [41, 42, 46, 122, 131, 137], "purpos": [20, 29, 47, 65, 86, 103, 128, 138, 139, 145], "push": [142, 143, 144], "put": [18, 20, 23, 64, 98, 102, 140], "pwd": [5, 29, 46, 128, 143], "pwd_cfg": 138, "py": [138, 143], "python": [28, 46, 53, 85, 104, 105, 115, 116, 119, 121, 122, 129, 131, 138, 141], "python3": [92, 143], "python36": 62, "python_hello_world": 143, "python_vers": 36, "pythonpath": 93, "pzs0001": 45, "pzs0002": 20, "pzs0562": [142, 143, 144], "pzs0714": [29, 65], "q": [103, 115], "qdel": [67, 68], "qgi": 54, "qhold": [67, 68], "qo": 36, "qrl": [67, 68], "qselect": 67, "qstat": [67, 68, 103], "qsub": [23, 45, 51, 58, 67, 68, 71, 72, 101, 102, 121, 129], "qsub_wrapp": 68, "qualiti": [36, 86, 103], "quantifi": 108, "quantit": 107, "queri": [7, 19, 20, 48, 64, 100, 104], "question": [6, 65, 98, 99, 100], "queu": [50, 68, 71], "queue": [20, 23, 24, 36, 45, 53, 65, 71, 90, 96, 101, 113, 115, 116], "queue1": [115, 116], "queue2": [115, 116], "queue_nam": [36, 45, 90, 115, 116], "quick": [31, 58, 69, 83, 84, 98], "quiet": 65, "quit": [6, 64, 78, 85], "quot": [86, 101], "quota": [53, 142, 143, 144], "quota1": 20, "quota2": 20, "quota_additional_messag": 20, "quota_reload_messag": 20, "r": [4, 18, 20, 29, 33, 74, 82, 84, 87, 98, 103, 120, 125, 134, 135, 137, 143], "r2015b": 127, "r2016b": 127, "r2017a": 127, "r2018a": 127, "r2018b": 127, "r_version": 33, "rack": [28, 141], "radio": 37, "radio_button": [36, 37], "rail": [20, 30, 71, 93, 99, 100, 102, 105, 107, 141], "rails_env": 71, "rais": [20, 71], "rake": [56, 59, 71, 98], "ram": [65, 108, 127], "ran": [20, 65, 92], "rand": [18, 19], "random": [19, 46], "randomli": 4, "rang": [20, 46, 86, 108, 114], "range_field": 36, "rational": 104, "raw": 64, "rb": [20, 30, 62, 93, 98, 105, 107, 141], "rc": [54, 128], "rc8": 145, "rclone": [20, 86, 105], "rdynam": 65, "re": [12, 14, 18, 20, 23, 27, 32, 35, 36, 42, 44, 49, 50, 52, 57, 59, 62, 63, 64, 65, 87, 90, 92, 99, 100, 101, 105, 109, 138, 139, 142, 143, 145], "reach": [17, 32, 64, 103, 105, 108, 145], "read": [4, 7, 12, 18, 20, 22, 30, 36, 41, 46, 57, 62, 64, 65, 68, 69, 83, 86, 87, 90, 91, 100, 102, 104, 105, 115, 116, 121, 129, 138], "read_onli": 17, "read_timeout": 20, "readabl": [4, 8, 19, 20, 29, 64], "reader": [6, 55, 59, 144], "readi": [29, 111], "readm": [54, 99], "readonli": 20, "real": [62, 85, 90, 145], "realiz": 29, "realli": [6, 24, 44, 65, 105], "realm": [5, 14, 15, 16, 18, 19, 20, 64], "reapaft": 64, "reaper": 64, "reapnamespac": 64, "rearrang": [20, 86], "reason": [20, 29, 56, 65], "rebuild": [65, 99, 100, 111, 112], "rebuilt": [99, 104, 105, 106, 107], "recalcul": 49, "receipt": 109, "receiv": [16, 20, 24, 41, 109], "recent": 20, "recently_used_app": [20, 105], "recip": 65, "recogn": [20, 36, 142, 143, 144], "recom": 66, "recommend": [4, 8, 14, 18, 20, 22, 23, 29, 30, 42, 45, 46, 47, 57, 58, 64, 83, 84, 85, 86, 87, 97, 100, 102, 103, 106, 109, 111, 119, 121, 122, 129, 131, 137], "reconfigur": [20, 28, 31, 55, 63, 106], "record": 101, "red": [20, 36], "redcarpet": 101, "redefin": 24, "redhat": [55, 59, 102, 104, 107, 108], "redir": 82, "redirect": [4, 11, 13, 14, 16, 17, 18, 19, 57, 62, 82, 104], "redirecturi": 4, "rediscov": 65, "reduc": 127, "reeki": 107, "ref": 90, "refer": [1, 12, 20, 27, 35, 45, 47, 58, 64, 83, 84, 86, 87, 88, 90, 95, 96, 105, 106, 128, 130, 138, 139], "referenc": [20, 35, 36, 58, 64, 105], "reflect": [20, 102], "refrain": 45, "refresh": [24, 64, 111, 115, 116], "regard": [3, 11, 20, 36], "regardless": [20, 32, 35, 36, 86], "regener": [11, 20], "regex": [8, 12, 36, 63], "regist": [7, 14, 87], "register_root": 87, "register_uri": 87, "registr": [1, 16], "registri": 139, "registry_docker_config_json": 64, "registry_password": 64, "registry_us": 64, "regular": [9, 10, 13, 20, 30, 36, 41, 63, 69, 85, 87, 102, 104, 107, 145], "regularis": 54, "regularli": [44, 109], "reinforc": 109, "reinstal": [99, 100], "rel": [20, 23, 47, 85, 86, 87], "relat": [3, 20, 51, 103, 104, 105, 107, 130, 145], "releas": [52, 53, 59, 64, 67, 92, 109, 145], "relev": [20, 36, 51, 53, 64, 81, 104, 145], "reli": [12, 47, 58, 64, 87, 99, 100, 102, 104, 105, 107], "reliabl": [101, 128], "relion": 54, "reload": [4, 18, 20, 52, 60, 78, 85, 142, 143, 144], "reloc": 107, "remain": [93, 102, 103], "remedi": [63, 140], "rememb": [13, 15, 17, 20, 24, 99], "remot": [9, 53, 57, 60, 62, 65, 86, 118, 124, 133, 142, 143, 144], "remote_addr": 85, "remote_files_en": 86, "remote_files_valid": 86, "remote_us": [12, 19, 85, 87], "remov": [10, 14, 15, 20, 21, 29, 42, 62, 65, 68, 69, 75, 79, 86, 90, 92, 93, 96, 99, 100, 102, 103, 104, 105, 115, 116, 145], "renam": [36, 46, 96, 115, 142], "render": [20, 28, 29, 31, 34, 36, 45, 47, 51, 58, 61, 64, 84, 86, 103, 104, 139], "render_template_notes_as_markdown": 101, "reopen": [78, 85], "repackag": 100, "repeat": [20, 36], "replac": [10, 15, 16, 18, 19, 20, 28, 30, 36, 49, 52, 56, 57, 58, 62, 63, 64, 66, 67, 68, 69, 71, 72, 84, 87, 93, 100, 103, 104, 105, 106, 107, 114, 115, 116, 118, 119, 121, 124, 127, 128, 129, 133, 134], "repli": 20, "replic": 0, "repo": [19, 29, 59, 99, 104, 105, 107, 111, 112, 118, 124, 133, 142, 143, 144], "report": [20, 27, 68, 86, 101, 103, 107, 108], "repositori": [4, 5, 8, 29, 44, 54, 55, 98, 99, 100, 107, 108, 145], "repres": 37, "req": [10, 13, 142], "request": [10, 12, 14, 18, 19, 20, 23, 27, 35, 36, 41, 44, 45, 46, 47, 49, 53, 61, 74, 77, 82, 85, 86, 87, 90, 98, 100, 104, 105, 107, 109, 113, 121, 126, 127, 128, 129, 142, 143, 145], "requesthead": [10, 13, 18, 19], "requir": [2, 4, 5, 8, 10, 12, 13, 19, 20, 21, 22, 24, 29, 31, 35, 36, 37, 38, 40, 46, 52, 53, 56, 57, 58, 60, 62, 63, 64, 65, 66, 69, 71, 83, 85, 87, 89, 92, 102, 103, 106, 111, 113, 115, 117, 118, 119, 123, 124, 126, 127, 128, 132, 133, 134, 136, 139, 140, 142, 143, 144], "require_rel": 144, "requiresess": [10, 13], "requri": 143, "rerun": 65, "rerunn": 90, "research": [7, 53, 103], "reserv": [65, 90], "reservation_id": 90, "reset": [104, 105, 106, 107, 142, 143, 144], "resid": [10, 44, 56, 71, 85, 87], "resiz": [103, 113, 130], "resolut": [36, 37, 127], "resolution_field": [36, 37], "resolv": [20, 57, 65, 99, 105, 107], "resourc": [0, 5, 7, 15, 18, 20, 22, 23, 26, 36, 45, 49, 52, 53, 55, 56, 58, 63, 64, 66, 67, 68, 69, 70, 71, 72, 86, 87, 98, 101, 102, 105, 109, 113, 115, 116, 117, 123, 132, 139], "resource_id": 20, "resource_mgr": 20, "respawn": 128, "respect": [20, 23, 31, 45, 82, 105, 107], "respond": [35, 86, 87], "respons": [12, 20, 24, 27, 47, 49, 58, 59, 96, 100, 109, 119, 121, 127, 129, 134, 143], "rest": [18, 30, 65], "restart": [2, 4, 10, 18, 19, 20, 29, 41, 48, 52, 55, 74, 98, 103, 104, 105, 106, 107, 111, 115, 142, 143, 144], "restart_polici": [138, 139], "restor": [20, 58, 100, 128], "restrict": [10, 12, 18, 20, 29, 30, 64, 85, 87, 99, 114], "restructur": 105, "result": [20, 27, 29, 36, 45, 51, 62, 65, 71, 87, 98, 99, 100, 102, 105], "retain": [35, 47, 99], "retriev": [2, 100], "return": [2, 7, 11, 12, 13, 20, 24, 36, 41, 45, 46, 58, 62, 68, 74, 76, 77, 82, 107, 121, 129, 142, 143, 144], "reus": [18, 20, 86], "reusabl": 138, "revers": [0, 1, 31, 40, 53, 74, 77], "revert": [30, 99, 100], "review": [50, 55, 59, 109], "revisit": 71, "revok": 65, "rewrit": 87, "rewriteengin": 87, "rewritten": [102, 104], "rex": 12, "rf": [62, 92, 100], "rh": [10, 18, 19, 71, 98, 99, 100, 102, 104, 105], "rhel": [8, 49, 52, 55, 57, 59, 65, 84, 99, 100, 104, 105, 106, 107, 139], "rhel7": [1, 55, 100, 139], "rice": 102, "rid": 107, "right": [17, 20, 29, 36, 37, 39, 42, 46, 62, 71, 86, 104, 111, 115, 116, 118, 124, 133, 136], "risk": [41, 87], "rm": [5, 62, 92, 100], "rnode": [41, 47, 54, 87], "rnode_uri": [41, 87], "road": 51, "robin": [65, 107], "robinkar": 105, "robust": [20, 109, 134], "rocki": [8, 49, 52, 59, 104, 105, 106, 107, 108], "rockylinux": [55, 59, 92], "role": [27, 38, 56, 64, 139], "rolebind": 64, "room": 107, "root": [4, 8, 10, 17, 18, 19, 20, 22, 23, 29, 35, 36, 38, 45, 46, 47, 51, 52, 59, 64, 65, 68, 71, 74, 82, 83, 85, 86, 87, 92, 93, 98, 100, 102, 109, 111, 119, 120, 121, 125, 127, 128, 129, 134, 135, 142, 144], "root_uri": 87, "rotat": 64, "round": 65, "roundrobin": 65, "rout": [49, 142, 143, 144], "router": [20, 142], "row": [20, 27, 103, 104], "rpm": [8, 48, 59, 67, 84, 87, 92, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 137, 145], "rpmsave": 100, "rserver": [134, 136], "rss": [20, 86], "rstudio": [20, 41, 47, 51, 53, 54, 56, 87, 90, 95, 98, 108, 113, 134, 136, 137], "rstudio_contain": 134, "rstudio_group": 20, "rstudio_guid": 20, "rstudio_launcher_centos7": 134, "rstudio_server_imag": 134, "ru": [20, 141], "rubi": [0, 20, 23, 24, 27, 28, 30, 32, 35, 36, 45, 46, 47, 52, 53, 59, 85, 90, 93, 98, 100, 101, 102, 105, 106, 107, 115, 121, 129, 139, 141, 145], "rubular": 36, "ruby22": [99, 100], "ruby24": [71, 102], "ruby25": 104, "ruby27": [104, 105], "rubydoc": [121, 129], "rubygem": 144, "rubylib": 93, "rule": [13, 18, 36, 65, 87], "run": [0, 3, 4, 5, 7, 12, 14, 17, 18, 20, 21, 23, 25, 26, 28, 29, 30, 33, 34, 36, 40, 41, 42, 43, 46, 47, 51, 52, 57, 58, 59, 60, 61, 63, 64, 65, 66, 68, 69, 71, 78, 80, 81, 82, 83, 84, 85, 87, 89, 91, 92, 93, 100, 103, 108, 109, 111, 112, 117, 118, 119, 121, 122, 124, 127, 129, 130, 131, 132, 133, 136, 137, 138, 139, 143, 144], "run_as_group": 138, "run_as_us": 138, "run_fil": 89, "run_owens_script": 46, "run_remote_sbatch": 62, "run_script": 89, "runasgroup": 64, "runasnonroot": 64, "runasus": 64, "runscript": 136, "runtim": [34, 127, 131, 134, 136, 143], "rw": 82, "ryanbcox": 107, "sacrific": 101, "safari": 108, "safe": [47, 100, 103], "safer": 58, "safeti": 20, "sai": [20, 35, 44], "salt": 138, "same": [14, 18, 20, 27, 29, 31, 36, 44, 47, 58, 64, 65, 66, 69, 98, 100, 102, 104, 105, 111, 128, 136, 138, 139], "saml": [1, 7, 55], "sampl": 20, "sandbox": [29, 36, 45, 46, 47, 97, 111, 112, 115, 116, 118, 119, 120, 124, 125, 133, 135, 142, 143], "sanit": [9, 126], "satisfi": [8, 13], "saumyabhushan": 105, "save": [4, 5, 16, 17, 18, 20, 28, 31, 60, 64, 86], "save_passwd_as_secret": 138, "sbatch": [23, 45, 51, 58, 62, 69, 102, 121, 129], "sbatch_wrapp": 58, "sbin": [4, 10, 13, 18, 19, 20, 41, 49, 52, 84, 85, 87, 93, 101, 102, 103, 104, 105, 106, 107], "scan": 12, "scancel": [58, 69], "scenario": [45, 85, 105], "scgi_temp": 82, "schedul": [20, 24, 26, 32, 36, 51, 56, 58, 62, 63, 64, 65, 70, 86, 90, 98, 102, 139], "schema": [20, 53, 56], "scheme": [20, 36, 44, 86, 102, 145], "scienc": [7, 105, 107], "scipi": 138, "scl": [30, 85, 93, 99, 102, 107], "scl_sourc": 100, "scontrol": [58, 69], "scontrol_wrapp": 58, "scope": [8, 13, 16, 18], "scrape": 52, "scrape_interv": 52, "scrape_timeout": 52, "scratch": [20, 37, 138, 139], "screen": [29, 96], "screen0": 128, "screenshot": 20, "script": [23, 29, 31, 36, 42, 44, 53, 56, 58, 64, 65, 68, 69, 84, 85, 86, 88, 89, 91, 93, 99, 100, 101, 103, 104, 107, 111, 113, 115, 116, 119, 121, 123, 126, 127, 129, 130, 134, 136, 137, 138, 139, 140, 142, 143], "script_dir": 143, "script_fil": [45, 89], "script_pid": 68, "script_wrapp": [41, 42, 58, 68, 69, 89], "scroll": 17, "scrub": 89, "seamless": 145, "search": [7, 10, 20, 51, 85, 104], "search_field": 36, "second": [20, 36, 45, 46, 64, 65, 71, 85, 86, 89, 90, 91, 101, 106, 107, 115, 116, 127], "secondari": [130, 140], "secondli": [20, 27], "secret": [4, 10, 16, 17, 19, 64, 85, 138], "secret_key_bas": 85, "section": [1, 9, 20, 23, 24, 36, 39, 44, 64, 90, 98, 100, 103, 105, 109, 115, 116, 119, 121, 129, 138, 139, 143], "secur": [2, 5, 7, 8, 12, 17, 20, 41, 46, 53, 55, 59, 64, 65, 87, 92, 94, 107, 145], "security_csp_frame_ancestor": 87, "security_strict_transport": 87, "securitycontext": 64, "see": [0, 2, 3, 4, 7, 11, 12, 15, 18, 19, 20, 22, 23, 24, 27, 29, 30, 35, 36, 39, 41, 44, 47, 49, 50, 51, 54, 55, 57, 58, 59, 60, 63, 64, 65, 86, 87, 88, 89, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 111, 112, 115, 116, 118, 119, 120, 121, 124, 125, 127, 128, 129, 133, 135, 138, 142, 143], "seen": [20, 36, 39, 51, 64, 65, 103, 107, 145], "segment": 20, "select": [5, 15, 16, 17, 23, 24, 29, 31, 33, 36, 37, 62, 64, 65, 86, 90, 97, 98, 103, 104, 107, 114, 115, 116, 121, 126, 127, 128, 129, 139, 140], "selector": 37, "self": [5, 18, 20], "selinux": [53, 55, 59, 94, 104, 106], "send": [20, 23, 27, 41, 59, 60, 62, 78, 85, 87, 90, 91, 142], "send_256_colors_to_remot": 128, "sendenv": 20, "sendfil": 85, "sens": [35, 52, 121, 127, 129], "sensit": [18, 36], "sent": [12, 13, 16, 20, 36, 47, 62, 85], "sentenc": 20, "sep": 18, "separ": [11, 12, 14, 20, 24, 35, 98, 101, 104, 106], "seper": [87, 92, 106], "septemb": 20, "sequenc": [0, 93, 99], "seri": [20, 105, 107], "serial": [7, 8, 36, 87], "serivc": 64, "serv": [0, 1, 18, 20, 29, 49, 59, 85, 87, 98, 102, 104, 108, 139, 142, 143], "server": [0, 1, 4, 8, 10, 11, 12, 13, 14, 19, 20, 23, 26, 28, 31, 35, 36, 41, 42, 43, 46, 47, 54, 55, 56, 57, 59, 60, 63, 64, 67, 69, 71, 72, 74, 77, 82, 84, 85, 87, 88, 95, 98, 99, 109, 111, 115, 117, 119, 121, 122, 126, 127, 129, 131, 132, 134, 136, 137, 138, 139, 141, 142, 143, 144], "server_alias": 87, "server_develop": 15, "serveralia": 87, "serverdir": 66, "serverlimit": 49, "servernam": [4, 8, 18, 49, 52, 57, 59, 87], "serverroot": 87, "servic": [1, 3, 7, 18, 20, 27, 36, 41, 48, 52, 53, 55, 64, 65, 84, 102, 103, 104, 105, 106, 107, 109, 137], "serviceaccount": 64, "serviv": 19, "sescur": 64, "session": [9, 13, 19, 21, 22, 28, 31, 34, 41, 48, 50, 53, 58, 61, 65, 69, 74, 81, 86, 87, 95, 101, 103, 104, 106, 119, 128, 142, 143, 144], "session_context": [118, 124, 133], "session_descript": 20, "session_id": [20, 46, 104], "set": [1, 4, 5, 7, 11, 12, 13, 15, 17, 18, 19, 21, 22, 24, 27, 28, 29, 30, 31, 33, 36, 37, 40, 42, 44, 46, 53, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 72, 85, 86, 87, 89, 90, 91, 93, 98, 100, 103, 104, 105, 109, 110, 112, 115, 127, 128, 130, 134, 138, 140, 142, 145], "set_host": [41, 89, 121, 129], "setenv": [87, 100, 134], "setsebool": [60, 102], "setsid": 61, "setup": [1, 5, 16, 17, 20, 21, 27, 31, 41, 53, 55, 59, 64, 65, 69, 87, 111, 112, 113, 114, 117, 123, 132, 139, 142, 143], "setup_env": 134, "sever": [3, 20, 36, 60, 64, 65, 85, 100, 102, 104, 105, 109, 110], "sge": [53, 68, 103], "sge_root": 68, "sh": [2, 12, 18, 20, 31, 34, 36, 45, 46, 62, 64, 65, 68, 87, 89, 91, 102, 119, 126, 128, 130, 134, 137, 138, 139, 140], "sh_jupyt": 54, "sh_ood": 54, "sh_rstudio": 54, "sh_tensorboard": 54, "sha1": 138, "shade": 86, "shanghai": [54, 103], "shape": [35, 109], "share": [4, 20, 28, 53, 57, 85, 128, 139], "shawn": 102, "shebang": [62, 89, 102], "shelf": 65, "shell": [26, 28, 29, 30, 45, 53, 56, 58, 60, 63, 65, 69, 83, 85, 86, 87, 89, 90, 96, 97, 100, 108, 110, 111, 142, 143, 144], "shell_path": 90, "shib": 13, "shibboleth": [1, 10, 11, 55, 87], "shibcompatvalidus": 13, "shibrequestset": [10, 13], "shibsess": 10, "shift": 64, "shini": 54, "shinyusr": 29, "ship": [4, 44, 64, 104, 105, 106], "short": [70, 102, 108], "shortcut": [53, 102, 104, 105, 107], "shorter": 86, "should": [7, 10, 12, 16, 18, 19, 20, 21, 22, 23, 24, 29, 35, 36, 38, 47, 48, 49, 51, 52, 54, 55, 57, 58, 59, 60, 62, 63, 64, 65, 67, 69, 74, 77, 85, 86, 87, 89, 90, 91, 93, 98, 99, 100, 102, 103, 104, 105, 107, 111, 112, 115, 118, 119, 124, 126, 127, 128, 133, 139, 142, 143, 145], "shouldn": 89, "show": [14, 18, 20, 24, 29, 30, 33, 35, 36, 37, 48, 51, 58, 62, 81, 84, 85, 86, 95, 96, 100, 104, 105, 107, 112, 126, 138], "show_all_apps_link": [20, 86], "show_fil": 37, "show_hidden": 37, "shown": [20, 35, 36, 37, 38, 86, 101, 105, 107, 121, 129], "shub": 136, "shut": 64, "side": [20, 86, 87, 99, 126, 127], "sidebar": 107, "sif": [23, 65, 89, 92], "sign": [1, 18, 20, 55, 57], "signal": [78, 85, 87], "significantli": [18, 29, 112], "signingkei": 4, "simg": [134, 136], "similar": [20, 29, 30, 49, 52, 61, 65, 68, 98, 100, 103, 107, 109, 138], "similarli": [55, 104, 121, 129], "simon": 107, "simpl": [12, 19, 20, 36, 41, 42, 46, 47, 86, 103, 138, 142], "simplehttpserv": 46, "simpler": [12, 20, 35, 36, 58, 87], "simplest": [12, 18, 20, 24, 36, 45, 47, 56, 64, 116, 121, 129, 144], "simpli": [20, 24, 36, 39, 44, 58, 63, 65, 102, 103, 105, 111, 142, 143], "simplic": 136, "simplifi": [14, 20, 41], "simul": 20, "simultan": 49, "sinatra": 141, "sinc": [7, 12, 17, 18, 19, 20, 23, 24, 36, 41, 58, 64, 79, 87, 93, 98, 99, 100, 106, 108, 121, 129], "singl": [1, 16, 20, 23, 36, 37, 47, 65, 68, 71, 86, 87, 103, 104, 121, 129, 138, 139], "singuarl": 136, "singular": [0, 65, 89, 92, 100, 113, 132, 134, 137], "singularity_bin": 65, "singularity_bindpath": [23, 65, 134], "singularity_contain": [23, 65], "singularity_imag": 65, "singularityenv_ld_library_path": 134, "singularityenv_path": 134, "singulartity_bind_path": 90, "sinit": 65, "sit": [4, 105], "site": [0, 4, 7, 12, 14, 20, 22, 26, 29, 35, 36, 41, 44, 47, 52, 53, 54, 55, 57, 58, 64, 65, 69, 70, 87, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 127, 131, 138, 139, 145], "site_mapp": 87, "site_timeout": 65, "size": [24, 35, 36, 46, 53, 85, 91, 104, 107, 108], "sjtu": [54, 103], "skip": [20, 74, 78, 79, 82, 84, 138, 139], "sleep": [61, 128, 140], "slightli": [29, 86, 104], "slower": 20, "slurm": [20, 21, 36, 45, 53, 55, 56, 58, 60, 61, 62, 90, 102, 107, 113, 115, 116, 117, 123], "slurm_arg": 139, "slurm_export_env": 69, "slurm_job_gr": 61, "slurm_localid": 61, "sm": 128, "small": [27, 35, 45, 47, 104], "small_clust": 45, "smaller": [20, 96], "smallest": 89, "smtp": [20, 60], "so": [7, 10, 12, 17, 18, 20, 23, 24, 27, 29, 30, 32, 34, 35, 36, 41, 42, 44, 45, 46, 47, 49, 51, 60, 61, 62, 63, 64, 65, 68, 71, 72, 83, 85, 87, 89, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 121, 124, 129, 133, 138, 139, 142, 143, 144], "social": 107, "sock": [81, 82, 85], "socket": [0, 18, 41, 81, 85, 87, 101, 139, 141], "soft": 138, "softar": 100, "softwar": [0, 2, 4, 18, 21, 29, 30, 40, 53, 55, 93, 98, 99, 100, 105, 106, 113, 117, 119, 123, 127, 132, 134], "solid": 128, "solut": [17, 47, 85, 130], "solv": [62, 130], "some": [0, 1, 8, 18, 20, 22, 23, 24, 30, 32, 33, 35, 36, 43, 44, 45, 46, 47, 50, 52, 57, 60, 61, 64, 68, 85, 86, 87, 90, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 109, 110, 111, 121, 127, 129, 138, 139, 140, 143], "someelementid": 104, "someth": [12, 20, 23, 24, 27, 64, 65, 71, 89, 91, 111, 121, 127, 129, 138, 142], "sometim": 112, "son": 68, "soon": [65, 90, 98, 109], "sophist": [20, 104], "sort": [27, 48], "sortabl": 104, "sourc": [1, 24, 29, 46, 48, 53, 54, 57, 68, 71, 87, 89, 93, 100, 101, 138, 143, 144], "space": [20, 58, 105, 107, 111, 112, 138], "spam": 20, "spark": 54, "spassword": 91, "spawn": 139, "spec": [20, 55, 58, 59, 113], "special": [20, 23, 36, 37, 38, 44, 45, 65, 83, 94, 100, 118, 124, 133], "specif": [0, 4, 7, 10, 17, 20, 24, 27, 29, 30, 36, 40, 44, 45, 46, 52, 54, 58, 60, 64, 85, 86, 87, 90, 91, 93, 98, 99, 100, 105, 106, 109, 115, 116, 127, 138, 139], "specifc": 128, "specifi": [19, 20, 23, 24, 27, 28, 29, 31, 35, 36, 38, 39, 41, 46, 47, 52, 54, 58, 63, 64, 65, 78, 82, 83, 85, 86, 87, 90, 91, 93, 98, 100, 103, 104, 105, 121, 129, 138, 139, 142, 143, 144], "speed": [98, 101], "sperat": 44, "spi": [1, 17, 18], "spider": 86, "spin": 111, "split": [102, 104], "sprintf": 58, "sqlite": 4, "squeue": [58, 69, 99, 101], "squeue_wrapp": 58, "src": [4, 5, 65, 98], "srun": [69, 102], "srv": [20, 23, 63, 65, 134], "srw": 82, "ss": 101, "ssh": [30, 41, 46, 47, 53, 56, 58, 60, 62, 64, 65, 66, 67, 68, 69, 72, 101, 103, 104], "ssh_allow": [20, 58, 64], "ssh_host": [65, 104], "sshd": 65, "ssl": [2, 4, 14, 18, 55, 57, 87], "ssl_protocol": 87, "sslcacertificatepath": 18, "sslcertificatechainfil": [18, 57, 87], "sslcertificatefil": [18, 57, 87], "sslcertificatekeyfil": [18, 57, 87], "sslengin": 18, "sso": [11, 13, 20], "sss": 139, "sssd": [60, 100, 139], "stabil": 145, "stabl": [98, 145], "stack": 65, "staff": [20, 51, 102], "stage": [20, 46, 53, 73, 82, 85, 87, 97], "staged_root": [46, 128, 139], "stale": 75, "standalon": [5, 18], "standard": [12, 18, 20, 35, 46, 58, 64, 85, 90, 109, 134, 139], "stanford": 54, "stanza": 58, "start": [0, 1, 4, 7, 14, 15, 20, 22, 23, 34, 36, 41, 45, 46, 50, 51, 52, 55, 57, 61, 63, 64, 65, 69, 78, 85, 86, 87, 90, 91, 92, 93, 95, 96, 98, 99, 102, 103, 104, 107, 111, 112, 115, 116, 119, 127, 128, 130, 137, 138, 140, 141, 142, 143], "start_dat": 27, "start_index": 27, "start_respons": 143, "start_tim": 90, "starter": [53, 88, 103, 141], "startserv": 49, "startup": [28, 86, 91, 130, 141], "stata": [54, 140], "stata_pid": 140, "state": [16, 32, 53, 102, 111], "statement": [23, 30, 58, 89, 121, 129, 139], "static": [1, 4, 20, 46, 102, 113, 114], "static_config": 52, "staticcli": 4, "staticmaxag": 18, "statu": [18, 20, 27, 52, 55, 68, 71, 82, 85, 86, 96, 98, 103], "status_poll_delai": [86, 107], "stderr": [51, 62, 71, 101], "stdin": 62, "stdout": [12, 51, 62], "step": [5, 14, 20, 30, 36, 37, 40, 97, 98, 100, 102, 111, 112, 120, 125, 127, 135, 142, 143, 144], "step_siz": 27, "stick": 18, "still": [15, 20, 24, 29, 30, 35, 37, 57, 58, 60, 92, 96, 99, 100, 102, 104, 105, 109, 111, 144], "stop": [18, 19, 20, 46, 78, 85, 90, 137], "storag": [4, 64, 86, 138], "storage_fil": 4, "store": [2, 4, 20, 47, 57, 85, 86, 87, 93, 96, 103, 104], "str": 62, "strategi": [11, 65, 104, 109], "stream": 100, "streamlin": 139, "strict": [65, 87], "strict_host_check": 65, "stricthostkeycheck": 65, "strictli": 140, "string": [4, 10, 11, 12, 20, 23, 24, 35, 36, 41, 45, 46, 58, 65, 71, 83, 85, 86, 87, 89, 90, 91, 92, 98, 99, 100, 104, 115, 116, 142], "strip": [10, 13, 19, 46, 87], "structur": [20, 31, 82, 98, 139], "student": 104, "studio": 54, "style": 20, "styleoverlai": 128, "stylesheet": 20, "stylist": 47, "styliz": 31, "su": 71, "sub": [7, 19, 28, 31, 47, 74, 77, 87], "sub_capt": 20, "sub_request": 74, "sub_uri": [74, 77], "subapp": [44, 99], "subcategori": [20, 38, 142, 143, 144], "subdirectori": [20, 143], "subject": 20, "submenu": 20, "submiss": [21, 22, 24, 28, 31, 34, 36, 51, 53, 58, 62, 63, 66, 67, 68, 69, 71, 72, 88, 119, 121, 129], "submission_nod": 62, "submit": [0, 20, 22, 23, 24, 26, 28, 29, 31, 32, 34, 39, 42, 43, 44, 46, 47, 53, 54, 55, 56, 58, 62, 64, 65, 71, 72, 73, 86, 90, 97, 98, 99, 100, 101, 103, 104, 109, 113, 114, 115, 116, 117, 118, 119, 123, 124, 126, 127, 133], "submit_arg": 71, "submit_as_hold": 90, "submit_host": [65, 66, 67, 68, 69, 72], "submit_script": [121, 129], "submodul": 5, "subscript": [59, 104], "subsequ": [36, 63, 65, 74, 82, 105], "subset": [20, 29, 102, 104], "subshel": 128, "substitut": [23, 45, 47, 51, 68, 115, 121, 129], "subsystem": 18, "subtitl": 20, "success": [18, 20, 24, 51, 53, 62, 63, 65, 84, 98, 107, 109], "successfulli": [3, 12, 22, 98], "sudo": [4, 5, 8, 10, 13, 18, 19, 20, 29, 30, 41, 49, 52, 56, 57, 59, 60, 65, 71, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 87, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 118, 120, 125, 135, 136, 142, 143, 144], "sudoer": 52, "suffici": [14, 64, 104, 134], "suffix": 20, "suggest": [20, 49, 105, 107, 109], "suit": [104, 134], "sum": 65, "summari": [8, 29], "sun": [68, 99], "supercomput": [53, 58, 65, 98, 139], "supercomputing_support": 20, "superior": 131, "supplement": [29, 64], "supplementalgroup": 64, "suppli": [1, 4, 12, 20, 23, 35, 36, 44, 45, 46, 64, 71, 85, 86, 87, 90, 105, 106, 107, 115, 116], "support": [1, 4, 6, 10, 13, 14, 19, 25, 29, 35, 36, 40, 43, 45, 53, 55, 58, 59, 63, 65, 66, 67, 68, 69, 85, 87, 95, 96, 104, 107, 109, 126, 127, 139], "support_ticket": [20, 86], "support_url": 20, "suppos": [51, 58, 86, 111], "supremm": 103, "sure": [12, 16, 19, 20, 46, 54, 59, 65, 85, 111, 115, 119, 127, 134], "svc_acct_fil": 64, "svg": [20, 38], "swap": 136, "swester": 105, "switch": [102, 103, 113, 128], "sy": [11, 19, 20, 24, 27, 29, 30, 44, 46, 51, 62, 71, 74, 85, 86, 87, 93, 96, 98, 99, 100, 102, 105, 111, 112, 118, 120, 124, 125, 133, 135, 142, 143, 144], "symbol": 20, "symlink": [20, 29, 30, 85, 99, 100, 111, 112, 118, 134], "syntax": [36, 68, 121, 129], "sysconfig": [4, 60], "syslog": 12, "system": [2, 4, 7, 8, 12, 13, 18, 23, 28, 35, 36, 44, 45, 46, 47, 48, 52, 53, 55, 56, 57, 59, 60, 65, 74, 75, 78, 84, 85, 86, 87, 90, 95, 96, 97, 98, 99, 100, 102, 104, 105, 106, 109, 111, 115, 118, 120, 121, 124, 125, 127, 129, 133, 134, 135, 136, 143, 145], "systemat": 12, "systemctl": [2, 4, 18, 19, 20, 49, 52, 59, 65, 102, 103, 104, 105, 106, 107, 137], "systemd": [4, 18, 52, 53, 56, 84, 102], "systemtrai": 128, "t": [12, 14, 18, 19, 20, 23, 24, 27, 30, 35, 36, 41, 42, 46, 47, 54, 55, 56, 59, 64, 65, 71, 75, 82, 84, 85, 86, 87, 89, 92, 95, 96, 98, 99, 102, 104, 111, 115, 116, 121, 128, 129, 138, 143, 144], "tab": [5, 17, 19, 20, 58, 64, 86, 97, 104, 111, 118, 124, 133, 142, 143], "tabl": [7, 64, 74, 95, 96, 97, 98, 99, 100, 101, 103, 104], "tag": [18, 20, 53, 86, 98, 99, 112, 115], "taglin": 100, "tai": 128, "tail": [68, 140], "take": [1, 10, 12, 18, 20, 23, 24, 29, 36, 41, 45, 47, 55, 65, 84, 97, 98, 99, 100, 104, 111, 115, 116, 117, 123, 132], "taken": [24, 45, 100], "tandi": 53, "tap": [20, 105, 107], "tar": [18, 52], "target": [5, 18, 27, 34, 52], "task": [56, 71, 98, 102, 127, 140], "tcl": 107, "tcp": [0, 4, 60], "te": 60, "team": [20, 29, 87, 99, 102, 103, 105, 109, 140, 145], "team1": [20, 86], "technic": 0, "techniqu": 34, "technologi": 53, "technot": 130, "techsquareinc": 54, "tee": 65, "telephone_field": 36, "tell": [12, 20, 35, 59, 64, 65, 115, 116, 144], "templat": [5, 23, 28, 31, 34, 36, 47, 53, 58, 65, 77, 84, 85, 88, 89, 90, 91, 92, 98, 115, 116, 121, 127, 128, 129, 130, 134, 139, 140], "template_root": 85, "temporari": [46, 99], "temporarili": 89, "ten": [20, 41, 58], "tensorboard": 54, "term": [20, 26, 44, 98, 107], "termin": [20, 63, 86, 104, 112, 123, 128, 131], "terribl": 62, "tesla": 127, "test": [5, 12, 20, 24, 30, 37, 41, 48, 53, 56, 58, 59, 64, 87, 92, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 119, 145], "test_checkbox": 37, "test_hidden_field": 37, "test_job": 71, "test_jobs_cluster1": 71, "test_resolution_field": 37, "test_text_area": 37, "test_text_field": 37, "texa": 53, "text": [15, 16, 24, 29, 36, 37, 38, 53, 55, 65, 86, 90, 101, 104, 115, 116, 142, 143], "text_area": [20, 36, 37], "text_field": [36, 37], "textarea": 37, "than": [8, 12, 17, 20, 24, 36, 45, 49, 51, 69, 85, 86, 87, 97, 102, 103, 104, 112], "thank": [94, 99, 101, 107], "the_answ": 62, "the_connect_api": [89, 91], "the_quest": 62, "thegamer1002": 107, "thei": [6, 7, 12, 16, 20, 24, 27, 29, 30, 32, 35, 36, 39, 44, 45, 51, 56, 60, 64, 65, 86, 87, 89, 91, 92, 93, 99, 100, 102, 103, 104, 105, 107, 118, 124, 126, 127, 133, 138, 139, 145], "them": [5, 10, 20, 24, 29, 30, 32, 36, 37, 44, 47, 56, 58, 63, 64, 86, 103, 104, 105, 107, 118, 124, 133], "theme": [1, 4, 5, 14, 18, 53, 86, 107], "themselv": [20, 29, 36, 64, 107, 118, 124, 133, 137, 140], "theori": 111, "therebi": 109, "therefor": [83, 107], "thi": [0, 2, 3, 4, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 27, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 136, 138, 139, 142, 143, 144, 145], "thing": [14, 20, 27, 29, 36, 48, 51, 58, 64, 87, 99, 100, 104, 109, 110, 139, 144], "think": [23, 109], "thirteen": 104, "this_remote_username_does_not_exist": 12, "those": [6, 17, 20, 29, 30, 36, 39, 64, 65, 86, 93, 100, 102, 105, 107, 111, 134, 143], "though": [69, 87, 104, 107, 111, 138, 144, 145], "thought": 62, "thread": 18, "threadlimit": 49, "threadsperchild": 49, "three": [9, 18, 20, 36, 45, 47, 93], "threshold": [20, 99, 102], "through": [0, 1, 4, 12, 19, 20, 21, 24, 27, 29, 34, 36, 37, 40, 41, 47, 63, 64, 65, 85, 86, 87, 89, 93, 95, 98, 101, 102, 103, 104, 105, 106, 108, 109, 111, 114, 115, 117, 119, 123, 127, 132, 134, 138, 139, 144], "throughout": [18, 38, 53, 90], "throw": [101, 113, 130], "thu": [20, 29, 98], "thumb": 36, "ticket": [53, 55, 59, 86, 109], "tid": 12, "tie": 86, "tile": 20, "till": 20, "time": [1, 12, 16, 18, 20, 27, 29, 32, 35, 36, 45, 46, 49, 53, 59, 64, 65, 85, 86, 87, 89, 90, 98, 101, 103, 104, 105, 106, 107, 108, 109, 119, 127, 128, 134, 136, 142, 143, 144], "time_loc": 85, "timeout": [20, 46, 65, 89, 91], "timeoutstartsec": 18, "timeoutstopsec": 18, "timer": 70, "timestamp": [20, 27, 64], "tip": [48, 53], "titl": [20, 22, 23, 24, 41, 42, 56, 58, 63, 64, 65, 66, 67, 68, 69, 72, 85, 86, 100, 101, 115], "tl": [4, 18, 57, 64], "tls_cert": 4, "tls_kei": 4, "tlscert": 4, "tlsclientca": 4, "tlskei": 4, "tmp": [4, 52, 59, 62, 65, 82, 85, 90, 99, 100, 104, 106, 107, 108, 134], "tmux": 65, "tmux_bin": 65, "to_": 89, "to_i": [23, 24, 45, 46, 121, 129, 138, 139], "todo": 64, "togeth": [44, 65], "toggl": [20, 35, 38, 105], "token": [16, 20, 51, 68, 85, 87], "tong": [54, 103], "too": [65, 89], "tool": [24, 31, 45, 47, 64, 65, 84, 108, 110, 122, 128, 131, 137], "toolbar": 128, "top": [17, 20, 22, 36, 39, 58, 90, 102, 103, 115, 118, 124, 133, 142, 143], "topic": [3, 6, 109], "torqu": [20, 21, 36, 45, 53, 55, 56, 58, 60, 71, 90, 115, 116, 117, 123], "total": [20, 29, 35, 102, 103], "total_block_usag": 20, "total_file_usag": 20, "touch": [20, 111, 143], "toward": 97, "toyota": [36, 115, 116], "tr": [12, 61], "track": [71, 87, 99, 100], "tradit": [24, 65, 138, 139], "traffic": [12, 20, 49, 55, 105, 109], "transfer": 86, "transit": 109, "translat": [20, 103], "transport": [20, 59, 87], "tre": 99, "treat": [20, 30], "tree": [34, 55, 59, 98, 104, 128], "trigger": [20, 100], "trivial": 136, "troubl": [51, 98, 119], "troubleshoot": [20, 48, 49, 51, 53, 59, 113], "true": [4, 7, 8, 18, 20, 24, 30, 33, 35, 36, 37, 38, 39, 45, 47, 58, 62, 64, 65, 69, 85, 86, 87, 90, 107, 127, 138, 144], "trust": [2, 17, 18, 29, 41, 57, 99, 109], "trustedci": 101, "truststor": [17, 18], "truststore_hostname_verification_polici": 18, "truststore_password": 18, "truststorespi": 17, "truthi": 101, "try": [6, 49, 51, 57, 58, 62, 63, 87, 89, 102, 103, 104, 105, 106, 107, 111, 119, 144], "tue": 12, "tuesdai": 98, "tuft": 53, "tune": 48, "tunnel": [46, 47], "turbovnc": [41, 42, 43, 91, 92, 108], "turbovncserv": 92, "turn": [13, 20, 32, 60, 64, 65, 66, 105, 140], "tutori": [1, 17, 18, 19, 54, 59, 64, 100, 111, 114, 117, 118, 123, 124, 132, 133, 138, 139], "tweak": 87, "twice": 108, "two": [1, 8, 14, 15, 17, 20, 24, 29, 35, 36, 46, 51, 55, 58, 64, 65, 86, 95, 96, 98, 99, 100, 102, 103, 104, 105, 106, 107, 118, 124, 133, 134, 142, 143, 144, 145], "txt": [7, 20, 85, 86, 143], "txt_erb": 20, "type": [4, 17, 18, 20, 23, 24, 31, 35, 36, 37, 47, 51, 52, 58, 64, 65, 74, 85, 86, 98, 104, 107, 118, 121, 124, 126, 127, 128, 129, 133, 136, 138, 139, 143, 145], "typic": [23, 24, 30, 31, 47, 51, 60, 85, 87, 99, 104, 118, 124, 133, 145], "u": [14, 17, 18, 24, 65, 71, 74, 78, 81, 82, 98, 102, 103, 105, 108, 111, 115, 138, 140], "ubuntu": [2, 49, 55, 57, 59, 104, 106, 107, 108], "ucla": [53, 99], "ug": 68, "ui": [15, 16, 17, 20, 36, 64], "uid": [4, 12, 20, 30, 58, 64, 65, 85, 86, 104, 107, 138, 139], "ultim": 20, "umask": [46, 128], "un": [29, 35], "unabl": [20, 24, 27, 46, 65, 68, 71], "unauthor": 53, "unavail": [20, 104], "unchang": [99, 100], "uncheck": [35, 37], "unchecked_valu": 37, "uncom": 18, "under": [4, 10, 19, 20, 22, 24, 29, 36, 41, 45, 46, 47, 56, 60, 71, 74, 78, 82, 83, 85, 87, 88, 89, 93, 97, 99, 100, 106, 109, 114, 115, 116, 118, 119, 121, 124, 127, 129, 133, 134, 142, 143, 144], "undergradu": 104, "underli": [121, 129], "underneath": [20, 22, 23, 24, 98, 115, 116], "underscor": [20, 35, 36], "understand": [45, 87, 138, 139], "undertow": 18, "underwai": [102, 109], "undesir": 103, "unencrypt": 109, "unexpect": 68, "unicod": 101, "uninstal": [104, 105], "unintend": [20, 85], "uniqu": [7, 20, 46, 85, 99, 107, 108, 118, 124, 133], "unit": [4, 18, 20, 138], "univa": [68, 99], "univers": [53, 54, 103, 107, 127], "unix": [0, 2, 20, 36, 81, 85, 86, 87, 91, 141], "unknown": [57, 65], "unless": [20, 23, 45, 84, 85, 93, 127], "unlik": [12, 58, 111], "unnecessari": 87, "unpack": 18, "unprivileg": [20, 30, 65], "unread": 20, "unsaf": 86, "unset": [10, 13, 19, 20, 138], "unshar": 65, "unsupport": 58, "unsuspect": 41, "untest": 122, "until": [16, 20, 34, 46, 65, 71, 98, 99, 100, 107, 128], "untouch": 47, "unus": [64, 102], "uofu": 54, "up": [1, 11, 13, 20, 21, 22, 24, 28, 33, 36, 40, 41, 45, 46, 57, 58, 64, 65, 73, 75, 87, 95, 96, 97, 98, 100, 104, 105, 107, 108, 110, 111, 115, 118, 124, 128, 133, 137, 138, 139, 140, 142, 143], "updat": [4, 5, 16, 19, 20, 27, 29, 39, 41, 44, 53, 55, 59, 64, 65, 77, 84, 85, 86, 92, 94, 95, 96, 97, 98, 99, 101, 103, 109, 119, 121, 129, 136, 138, 142, 143, 144], "update_ood_port": [4, 10, 13, 19, 20, 41, 84, 100, 101, 102, 103, 104, 105, 106, 107], "upgrad": [10, 20, 41, 71, 94, 109, 145], "upload": [53, 85, 86, 104, 107], "upload_en": [20, 86], "upon": [24, 109], "upper": [5, 12, 16, 111], "uppercas": [36, 107], "uppi": 104, "upstream": 20, "upto": 20, "uri": [4, 11, 17, 19, 20, 47, 74, 77, 85, 87, 142], "url": [2, 11, 12, 16, 17, 19, 29, 38, 41, 47, 53, 54, 58, 65, 74, 82, 83, 85, 86, 87, 99, 104, 111, 112, 118, 120, 124, 125, 133, 135, 142, 144], "url_field": 36, "urldecod": 12, "us": [0, 1, 2, 3, 4, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 68, 69, 70, 71, 72, 77, 84, 85, 86, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 101, 102, 106, 107, 108, 111, 112, 113, 114, 117, 118, 119, 121, 122, 123, 124, 126, 127, 129, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144], "usabl": [16, 104], "usag": [20, 27, 29, 58, 64, 66, 84, 87, 99, 101, 107], "use_job_pod_reap": 64, "use_mainten": [20, 87], "use_nfs_home_dir": 60, "use_rewrit": [20, 87, 101], "use_uid": 65, "useabl": 58, "useless": 86, "user": [1, 2, 4, 5, 6, 8, 9, 10, 11, 13, 14, 17, 18, 19, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 35, 37, 39, 41, 42, 44, 45, 46, 47, 51, 53, 55, 56, 58, 59, 60, 62, 68, 71, 74, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 89, 90, 91, 93, 95, 97, 98, 99, 100, 101, 103, 104, 105, 108, 109, 114, 115, 116, 117, 118, 119, 121, 123, 124, 126, 127, 128, 129, 130, 132, 133, 134, 136, 138, 139, 140, 142, 143, 144], "user1": 20, "user_defined_context": 119, "user_env": [12, 87], "user_map": 12, "user_map_cmd": [7, 8, 12, 87, 104], "user_map_match": [12, 13, 87, 104], "user_nam": 20, "user_path": 136, "user_regex": 85, "user_set": 86, "user_settings_fil": 86, "useradd": [4, 18], "userattr": 4, "userinfo": [7, 16], "userknownhostsfil": 65, "usermatch": 4, "usermod": 29, "usernam": [4, 5, 7, 12, 20, 27, 52, 58, 63, 64, 85, 87, 91, 104, 105, 107, 118, 138], "username_prefix": 64, "usernameplacehold": 20, "usersearch": 4, "usr": [2, 4, 20, 23, 29, 30, 41, 42, 52, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 82, 85, 91, 92, 104, 134, 138, 139, 143], "usual": [20, 62, 108, 111], "utah": [53, 54], "utf": [62, 92], "util": [7, 29, 45, 65, 89, 95, 96, 97, 105, 107, 108, 127, 138, 142, 143, 144, 145], "utility_img": 138, "uuid": [32, 65], "uuid_s": 65, "uuid_tmux": 65, "uuidgen": 65, "uwsgi_temp": 82, "v": [5, 52, 64, 84, 87, 90, 102], "v0": 134, "v1": [16, 28, 53, 62, 64, 94, 138], "v2": [15, 20, 41, 42, 45, 53, 56, 63, 64, 65, 66, 67, 68, 69, 72, 88, 94, 115], "v3": [53, 94, 145], "v4": [53, 94], "v8314": [99, 100], "vagrant": 60, "valid": [2, 8, 10, 13, 17, 19, 20, 22, 62, 63, 64, 72, 85, 86, 87, 101, 102, 107, 119, 121, 126, 127, 129, 134], "valu": [4, 5, 12, 16, 17, 18, 20, 21, 31, 34, 36, 37, 38, 39, 41, 42, 44, 45, 47, 49, 58, 60, 62, 64, 65, 66, 67, 68, 86, 87, 89, 93, 101, 103, 107, 115, 116, 118, 119, 121, 124, 126, 127, 129, 133, 134], "var": [4, 12, 18, 20, 23, 24, 29, 30, 44, 51, 60, 62, 65, 68, 71, 74, 81, 82, 85, 87, 92, 93, 96, 97, 98, 99, 100, 102, 103, 104, 118, 119, 120, 124, 125, 133, 134, 135, 139, 142, 143, 144], "varaibl": 64, "vari": [17, 20, 36, 49, 87, 145], "variabl": [12, 20, 23, 29, 30, 32, 34, 36, 42, 45, 46, 47, 62, 64, 71, 85, 86, 87, 89, 90, 91, 93, 99, 101, 102, 103, 104, 105, 107, 111, 115, 121, 129, 134, 138, 139], "variant": [20, 35, 44], "variat": [12, 36], "varieti": 29, "variou": [4, 20, 36, 47, 55, 56, 59, 85, 86, 87, 103, 109], "vdi": [20, 98], "ve": [20, 36, 37, 58, 61, 64, 65, 68, 92, 103, 104, 105, 106, 107, 120, 142], "vector": 62, "vendor": [17, 18, 99, 100, 144], "vendor_rubi": 85, "venv": 143, "verbatim": 127, "verbos": 87, "verheyd": 102, "veri": [1, 24, 36, 41, 51, 63, 69, 86, 89, 105, 107, 118, 124, 133], "verif": 18, "verifi": [5, 14, 17, 18, 19, 20, 40, 55, 56, 64, 98, 99, 100, 102, 103, 104, 106], "version": [1, 4, 5, 12, 15, 20, 27, 33, 35, 36, 37, 44, 49, 51, 52, 53, 58, 64, 65, 84, 85, 86, 94, 102, 103, 104, 106, 107, 108, 109, 122, 127, 128, 134, 136, 142, 143, 144], "vglrun": 128, "vi": [2, 20, 61, 127, 128], "via": [0, 2, 4, 7, 15, 18, 19, 20, 29, 48, 58, 60, 62, 93, 95, 100, 109, 127], "view": [17, 20, 28, 29, 31, 34, 56, 64, 89, 96, 97, 104, 105, 109, 118, 119, 121, 124, 129, 133, 142, 143, 144], "viewer": 20, "vigil": 109, "vim": 111, "virtual": [87, 106, 141], "virtualbox": 60, "virtualgl": [128, 131], "virtualhost": [18, 48, 59], "virut": 87, "visibl": [35, 103, 104], "visit": [20, 47, 107, 109], "visual": [0, 54, 104, 127, 128], "vm": [108, 111], "vmd": 54, "vnc": [28, 31, 36, 37, 41, 42, 43, 46, 49, 58, 65, 68, 87, 88, 89, 95, 127, 128, 129, 140], "vnc_arg": 91, "vnc_clean": 91, "vnc_contain": [45, 92], "vnc_passwd": 91, "vncserver": 91, "volum": 20, "volume2": 20, "volvo": [36, 115, 116], "vpn": 102, "vuej": 126, "vulner": [20, 53, 105], "w": [5, 27, 30, 41, 64, 85, 87], "wa": [20, 32, 35, 36, 46, 51, 52, 63, 65, 86, 87, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 118, 124, 133, 134, 139], "wai": [12, 20, 30, 36, 44, 45, 47, 59, 64, 65, 71, 98, 99, 100, 102, 103, 104, 105, 107, 111, 134, 138, 139], "wait": [46, 62, 86, 91, 100, 119, 127, 140], "walk": [1, 21, 27, 40, 114, 115, 117, 119, 123, 127, 132, 134, 138, 139, 144], "walkthrough": 97, "wall": [45, 46, 90], "wall_tim": [36, 45, 90, 138, 139], "walltim": [65, 71, 103], "want": [18, 19, 20, 22, 23, 24, 27, 30, 32, 33, 35, 36, 37, 41, 44, 45, 46, 47, 49, 51, 56, 58, 59, 64, 85, 90, 98, 99, 100, 101, 102, 103, 104, 107, 109, 111, 115, 116, 118, 121, 124, 127, 128, 129, 133, 138, 139, 142], "wantedbi": 18, "warn": [29, 41, 51, 53, 58, 71, 87, 98, 101, 104, 105, 118, 124, 133], "wd": 101, "we": [1, 8, 10, 12, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 29, 30, 34, 35, 36, 41, 42, 44, 45, 46, 47, 49, 53, 54, 55, 56, 57, 58, 59, 61, 62, 64, 65, 71, 86, 87, 89, 92, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 114, 115, 116, 118, 119, 121, 124, 127, 128, 129, 131, 133, 134, 136, 138, 139, 140, 142, 143, 144, 145], "weak": 101, "web": [0, 4, 10, 13, 15, 16, 17, 19, 20, 26, 27, 28, 29, 36, 42, 45, 46, 47, 49, 51, 52, 59, 60, 62, 65, 74, 75, 76, 85, 86, 87, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 115, 116, 119, 121, 129, 141, 143, 144], "web_2": 104, "web_3": 106, "web_4": [59, 107], "webdev07": 18, "webframework": 103, "webinar": 53, "webpack": 126, "webpag": [35, 49], "webserv": 18, "websit": [3, 53, 87], "websocket": [53, 91, 108, 142, 143, 144], "websockfii": 91, "websockfiy_cmd": 91, "websockifi": [41, 42, 43, 91, 92, 105, 108], "websockify_cmd": [41, 42, 91], "websockify_heartbeat_second": 91, "wed": 12, "week": [47, 145], "welcom": [29, 86, 145], "welcome_html": 20, "well": [4, 7, 8, 12, 19, 20, 24, 45, 47, 48, 49, 51, 54, 59, 64, 78, 83, 85, 86, 87, 97, 98, 99, 100, 103, 105, 114, 123, 127, 139], "went": 98, "were": [12, 18, 20, 27, 36, 53, 75, 84, 86, 98, 99, 100, 101, 102, 103, 104], "westersund": 107, "wget": [2, 18, 52, 59, 64, 104, 106, 107], "what": [7, 8, 12, 17, 20, 35, 36, 39, 41, 45, 51, 54, 55, 58, 59, 64, 65, 68, 85, 86, 87, 91, 92, 102, 104, 105, 109, 111, 115, 116, 127, 138, 144], "whatev": [20, 22, 49, 99, 111, 127, 128], "whati": 134, "when": [1, 4, 11, 12, 13, 16, 18, 19, 20, 22, 23, 24, 26, 29, 32, 34, 35, 36, 37, 38, 39, 45, 46, 47, 49, 51, 57, 58, 60, 62, 63, 64, 65, 66, 69, 82, 84, 85, 86, 87, 89, 90, 93, 96, 97, 98, 99, 100, 102, 103, 105, 106, 107, 108, 111, 112, 113, 115, 116, 118, 119, 121, 124, 127, 128, 129, 130, 133, 134, 138, 139, 142, 143], "whenev": [24, 98, 101], "where": [10, 12, 18, 20, 26, 29, 30, 35, 36, 37, 39, 46, 47, 51, 56, 57, 64, 65, 68, 81, 85, 86, 87, 90, 99, 101, 102, 103, 105, 107, 108, 115, 116, 118, 119, 121, 124, 127, 129, 133, 134, 136, 138, 139, 141, 142, 143, 144, 145], "whether": [18, 36, 51, 58, 65, 86, 90, 98, 101, 118, 124, 126, 133], "which": [4, 7, 11, 14, 15, 18, 19, 20, 22, 23, 24, 27, 30, 31, 34, 35, 45, 49, 51, 54, 58, 60, 62, 64, 65, 86, 90, 93, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 115, 116, 121, 127, 128, 129, 134, 136, 137, 138, 139, 140, 142, 143, 144, 145], "whichev": 20, "while": [5, 20, 35, 49, 54, 86, 102, 103, 107, 109, 111, 119, 140, 142], "white": 20, "whitelist": 100, "whitelist_path": [99, 105, 107], "who": [30, 53, 79, 101, 103, 105, 106, 107], "whoami": 64, "whoever": 29, "whole": [86, 103, 111, 127, 139], "whom": 29, "whorka": 105, "whose": [20, 36, 99], "why": [27, 29, 130], "wide": [36, 64, 98], "widest": 108, "widet": 106, "widget": [20, 28, 31, 33, 36, 86, 90, 115, 116, 127], "width": 20, "widthperc": 128, "wildcard": [20, 85, 87], "wildfli": 18, "willing": [103, 108], "window": [20, 38, 47, 113, 123, 130, 131], "wipe": 10, "wish": [20, 27, 29, 36, 47, 64, 86, 92, 103, 105, 106, 107], "wisniewski": 107, "within": [10, 12, 20, 21, 25, 34, 36, 38, 43, 46, 47, 65, 85, 86, 87, 106, 107, 109, 110, 115, 116, 117, 119, 121, 122, 123, 129, 130, 131, 132, 137, 142, 143, 144, 145], "without": [1, 5, 20, 36, 44, 48, 53, 56, 58, 59, 62, 65, 85, 86, 87, 98, 99, 100, 102, 103, 104, 105, 123, 134, 136], "won": [19, 36, 56, 82, 87, 104, 115, 116, 143, 144], "word": [35, 101, 111, 112], "work": [1, 4, 9, 14, 18, 20, 22, 27, 29, 30, 34, 36, 39, 40, 44, 45, 47, 51, 52, 53, 54, 56, 58, 59, 61, 64, 65, 85, 87, 89, 90, 98, 99, 100, 101, 102, 103, 104, 106, 110, 111, 112, 114, 118, 119, 122, 124, 127, 128, 130, 133, 134, 136, 138, 139, 140, 142, 144], "work_dir": 89, "workaround": 69, "workbench": 54, "workdir": 90, "worker": [58, 64, 139], "workflow": [20, 46, 104], "working_dir": 138, "workspac": 46, "workspacenam": 128, "world": [19, 87, 142, 143, 144], "worth": 12, "would": [1, 10, 12, 18, 19, 20, 22, 23, 24, 27, 29, 35, 36, 41, 44, 45, 46, 51, 53, 54, 55, 59, 60, 64, 78, 86, 101, 102, 104, 121, 129, 139, 140, 145], "wouldn": [121, 129], "wrap": [36, 42, 45, 62, 89, 101, 105, 107, 139], "wrapper": [45, 53, 56, 58, 62, 63, 65, 66, 67, 68, 69, 72, 85, 89, 104, 107, 141, 143], "writabl": 71, "write": [12, 18, 27, 36, 51, 58, 83, 85, 104, 105, 106, 138, 139, 141], "written": [4, 24, 34, 36, 65, 89, 91, 99, 101, 102, 105, 107, 144], "wrong": [49, 111], "wrote": 105, "wsgi": [28, 141, 143], "wss": 20, "www": [15, 18, 20, 24, 29, 30, 44, 58, 65, 71, 74, 85, 87, 93, 96, 98, 102, 118, 120, 121, 124, 125, 127, 129, 130, 133, 135, 142, 143, 144], "x": [4, 12, 18, 20, 29, 61, 64, 82, 87, 99, 102, 103, 104, 105, 106, 107, 127, 128, 134, 137, 143], "x11": [61, 91, 92], "x86_64": [59, 92, 102, 104, 108], "x_scl": [85, 93], "xalt": 128, "xauth": 92, "xdg_cache_hom": 128, "xdg_config_hom": [106, 128], "xdg_data_dir": 93, "xdg_data_hom": 128, "xdmod": 53, "xdmod_url_warning_messag": 20, "xdmod_url_warning_message_seconds_after_job_complet": 20, "xdmod_widget_job": 20, "xdmod_widget_job_effici": 20, "xf": 52, "xfce": [21, 25, 65, 92, 123, 131, 140], "xfce4": 128, "xfsettingsd": 128, "xfwm4": 128, "xhr": 100, "xml": [2, 5, 7, 17, 18, 103], "xorg": 92, "xr": [29, 82], "xrender": 130, "xsede": 7, "xsetroot": 128, "xstartup": 91, "xstata": 140, "xxx": 145, "xxxx": 86, "xxxxxxxxxxxx": 86, "xy": 41, "xy001": 41, "xy125": 41, "xzf": 18, "y": [5, 66, 92, 99, 100, 101, 102, 103, 104, 105, 106, 107], "yaml": [4, 10, 19, 20, 22, 23, 24, 35, 36, 41, 45, 56, 58, 63, 64, 65, 66, 67, 68, 69, 72, 84, 85, 86, 93, 97, 98, 102, 115, 121, 129, 139], "ye": [36, 37, 54, 62], "yet": [54, 144], "yml": [2, 4, 7, 8, 10, 11, 13, 16, 19, 20, 22, 23, 24, 28, 29, 30, 31, 33, 34, 41, 42, 44, 46, 53, 56, 58, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 84, 89, 90, 93, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 113, 115, 116, 119, 121, 126, 127, 129, 134, 142, 143, 144], "you": [1, 4, 5, 6, 7, 10, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 63, 64, 65, 66, 68, 69, 71, 78, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 131, 132, 133, 134, 135, 137, 138, 139, 140, 142, 143, 144], "your": [1, 2, 4, 5, 7, 10, 13, 14, 15, 17, 20, 21, 22, 23, 24, 27, 28, 29, 31, 36, 37, 40, 41, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 59, 63, 64, 65, 68, 69, 70, 71, 86, 87, 88, 93, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 112, 114, 115, 117, 118, 119, 120, 121, 123, 124, 125, 127, 128, 129, 132, 133, 134, 135, 138, 139, 142, 143, 144], "yum": [2, 4, 5, 18, 19, 52, 57, 59, 60, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 136], "yyi": 145, "z": [10, 13, 36, 41], "za": 36, "zh": 103, "zip": 29, "zone": [4, 60], "zoolei": 102, "zzz": 145}, "titles": ["Architecture", "2. Authentication", "SAML Authentication with Active Directory Federated Services (ADFS) and mod_auth_mellon", "CAS", "OpenID Connect with Dex", "Two Factor Auth using Duo with Keycloak", "Other Insecure Options", "NSF ACCESS", "OpenID Connect", "Overview", "1. Configure Apache Authentication", "3. Configure Logout", "2. Setup User Mapping", "Shibboleth", "OpenID Connect with KeyCloak on RHEL7", "4. Add Custom Theme", "5. Configure Keycloak with CILogon", "2. Configure Keycloak", "1. Install Keycloak", "3. Configure OnDemand to authenticate with Keycloak", "Customizations", "Enable Interactive Desktop", "2. Add a Cluster", "4. Custom Job Submission", "3. Modify Form Attributes", "1. Software Requirements", "Glossary", "Adding Google Analytics", "App Development", "App Sharing", "Enabling App Development", "Interactive Apps", "Adding Additional Information to the session cards", "Advanced Interactive Application Configurations", "Connection Parameters conn_params", "Dynamic Form Widgets", "User Form (form.yml.erb)", "Form Widgets", "Manifest yml files", "Saving interactive application settings", "Setup Interactive Apps", "3. Enable Reverse Proxy", "2. Modify Cluster Configuration", "1. Software Requirements", "Sub-Apps and Reconfiguring existing apps", "Job Submission (submit.yml.erb)", "Render Template", "Connection View", "Debugging and Monitoring", "Apache httpd tips", "Debugging Interactive Apps", "Logging", "Prometheus Monitoring", "Open OnDemand", "Install Other Interactive Apps", "Installation", "Cluster Configuration", "3. Secure Apache httpd", "Cluster Config Schema v2", "1. Install Software", "4. Add SELinux", "Advanced Resource Manager Configurations", "A Working Example of a bin_overrides Script", "Cloudy Cluster", "Kubernetes", "LinuxHost", "LSF", "PBS Professional", "Grid Engine", "Slurm", "Systemd", "Test Configuration", "Torque", "Configuration Reference", "nginx_stage app", "nginx_stage app_clean", "nginx_stage app_list", "nginx_stage app_reset", "nginx_stage nginx", "nginx_stage nginx_clean", "nginx_stage nginx_list", "nginx_stage nginx_show", "nginx_stage pun", "Usage", "ood-portal-generator", "nginx_stage.yml", "ondemand.d/*.yml files", "ood_portal.yml", "submit.yml.erb", "Basic Batch Connect Options", "Batch Connect Script Options", "Batch Connect VNC Options", "Batch Connect VNC Container Options", "PUN environment", "Release Notes", "v1.0 Release Notes", "v1.1 Release Notes", "v1.2 Release Notes", "v1.3 Release Notes", "v1.4 Release Notes", "v1.5 Release Notes", "v1.6 Release Notes", "v1.7 Release Notes", "v1.8 Release Notes", "v2.0 Release Notes", "v3.0 Release Notes", "v3.1 Release Notes", "v4.0 Release Notes", "Requirements", "Security", "Developing The OOD Dashboard", "Developing the Dashboard App", "Developing the Shell App", "Tutorials: Interactive Apps", "Add Custom Queues/Partitions", "Use a Global Static List", "Use a Local Static List", "Add a Jupyter App", "2. Copy Jupyter App", "3. Customize Attributes", "5. Deploy Jupyter App", "4. Modify Submit Parameters", "1. Software Requirements", "Add a MATLAB App", "2. Copy MATLAB App", "7. Deploy MATLAB App", "6. Edit Form.js", "3. Customize Attributes", "4. Edit Launch Script", "5. Modify Submit Parameters", "8. Known Issues", "1. Software Requirements", "Add an RStudio App", "1. Copy RStudio App", "4. Customize Attributes", "5. Deploy RStudio App", "3. Setup Singularity", "2. Software Requirements", "Add a Jupyter App on a Kubernetes Cluster", "Add a Jupyter App on a Kubernetes Cluster that behaves like HPC compute", "Troubleshooting Interactive Apps", "Tutorials: Passenger Apps", "Starter NodeJS Application", "Starter Python Application", "Starter Ruby Application", "Versioning Policy"], "titleterms": {"": [20, 99], "0": [95, 96, 104, 105, 107], "04": 105, "1": [57, 59, 65, 95, 96, 97, 106], "11": 103, "12": [95, 106], "14": 104, "15": [95, 96], "17": 96, "18": [99, 105], "2": [57, 59, 65, 95, 96, 97, 98, 99], "2023": 106, "22": 105, "29": 104, "2fa": 102, "3": [30, 57, 59, 95, 98, 99, 100], "30": 102, "4": [30, 59, 95, 99, 100, 106], "5": [30, 95, 96, 99, 100, 101, 102], "6": [30, 96, 99, 101, 102, 103], "7": [102, 103, 106], "8": [103, 104], "A": [58, 62], "If": 130, "No": 104, "The": [29, 65, 110, 136, 139, 140], "To": 111, "Tos": 53, "aarch64": 106, "abil": [99, 101, 102, 103], "abl": 50, "accept": 107, "access": [0, 7, 20, 29], "account": [98, 102], "acknowledg": 107, "acl": 58, "activ": [2, 95, 96, 98, 100, 102, 104], "activejob": [102, 104], "ad": [27, 32, 47, 95, 101, 102, 103, 104, 106], "adapt": [0, 23, 101, 102], "add": [10, 15, 16, 17, 19, 20, 22, 24, 59, 60, 99, 100, 101, 102, 103, 111, 114, 115, 116, 117, 123, 132, 138, 139, 142], "addit": [32, 103], "adf": 2, "administr": [105, 106], "advanc": [12, 33, 61, 66, 106], "advantag": 109, "after": [46, 60, 101], "alert": 102, "all": [99, 104], "allow": 20, "allowlist": [20, 103], "altern": 136, "alwai": 101, "amazon": 106, "an": [31, 58, 102, 104, 132], "analyt": [27, 106], "ani": 65, "announc": [20, 98, 107], "apach": [4, 10, 18, 19, 41, 49, 57, 101, 102, 104, 105, 106], "app": [0, 20, 28, 29, 30, 31, 40, 44, 50, 54, 64, 74, 95, 96, 98, 99, 100, 102, 103, 104, 105, 107, 111, 112, 113, 117, 118, 120, 123, 124, 125, 132, 133, 135, 138, 139, 140, 141, 142, 143, 144], "app_clean": 75, "app_list": 76, "app_reset": 77, "applic": [20, 33, 39, 65, 95, 96, 97, 98, 99, 100, 101, 107, 142, 143, 144], "approach": 65, "ar": [103, 105, 107], "architectur": [0, 108], "arm64": 106, "arrai": [20, 100, 101], "asset": 87, "attribut": [24, 36, 104, 115, 116, 119, 127, 134], "audienc": 64, "audit": [101, 109], "auth": 5, "authent": [0, 1, 2, 9, 10, 19, 64, 103], "auto": 20, "autogener": 99, "autoload": [105, 107], "automat": [12, 20, 36, 105], "avail": 104, "background": 140, "backport": 145, "balanc": [20, 102], "bar": 20, "base": [20, 35, 98, 99], "basic": [89, 100, 143], "batch": [20, 36, 45, 88, 89, 90, 91, 92, 99, 102, 103, 107], "batch_connect": 58, "batchconnect": 101, "becaus": 140, "been": [105, 107], "befor": 46, "behav": 139, "behind": [4, 103, 105], "being": 50, "beta": 103, "better": [98, 99, 103], "between": [104, 139], "bin_overrid": [58, 62], "blacklist": [105, 107], "block": 20, "boot": [142, 143], "bootstrap": 64, "brand": [20, 102], "break": [58, 104, 105, 106, 107], "broker": 102, "browser": 108, "bu": 65, "bug": 101, "build": [55, 59, 112, 136], "bundler": 104, "button": 101, "ca": [3, 57], "cach": [36, 103], "can": [29, 107], "cancel": 20, "cannot": 140, "card": [20, 32, 33, 36, 102, 104], "categori": 20, "ccq": 103, "cento": 106, "cgroup": 65, "chang": [20, 24, 45, 57, 95, 96, 98, 99, 100, 101, 104, 105, 106, 107], "charact": 20, "checkbox": 106, "chines": 103, "choic": 33, "chrome": 103, "cilogon": [16, 102], "clean": 107, "cleanup": 46, "client": [7, 17], "cloudi": 63, "cluster": [22, 36, 42, 56, 58, 63, 64, 65, 98, 102, 103, 115, 138, 139], "code": [24, 29, 36], "collect": 107, "command": [12, 20, 73, 83, 98], "comment": 109, "common": [63, 68], "commun": [53, 64], "complet": [32, 50, 103, 106], "compon": [95, 96, 97, 98], "compos": [20, 96, 98, 101, 102], "compress": [101, 107], "comput": [101, 102, 139], "conf": 102, "config": [19, 56, 58, 98, 101, 102, 105, 144], "configmap": 138, "configur": [2, 4, 5, 10, 11, 12, 16, 17, 19, 20, 27, 33, 36, 42, 45, 52, 56, 61, 64, 65, 71, 73, 85, 86, 87, 98, 103, 104, 105, 107, 111, 115], "conn_param": 34, "connect": [4, 8, 14, 20, 34, 36, 45, 47, 50, 87, 88, 89, 90, 91, 92, 99, 102, 103, 106, 107], "consider": 109, "contain": [0, 65, 92, 138, 139], "content": 107, "context": [0, 46, 105], "contribut": 53, "control": [29, 101, 104, 109], "copi": [99, 103, 118, 124, 133], "core": 99, "creat": [20, 111, 112, 143], "css": 20, "custom": [4, 15, 20, 23, 36, 58, 100, 104, 105, 106, 114, 115, 116, 119, 127, 134], "customiz": 99, "d": [65, 86, 104], "dai": [20, 104], "dashboard": [0, 20, 29, 52, 95, 96, 98, 99, 101, 102, 103, 104, 110, 111], "data": [51, 107], "debian": 106, "debug": [12, 48, 50, 98, 103], "dedic": 30, "def": 92, "default": [20, 24, 30, 74, 82, 99, 103, 105, 107], "defin": 36, "delai": 107, "delet": [39, 105, 107], "demonstr": 39, "depend": [59, 102, 104, 105, 106, 107, 144, 145], "deploi": [64, 120, 125, 135], "deprec": [105, 106, 107], "desktop": [0, 21, 24, 95, 98, 140], "detail": [20, 98, 99, 100, 101, 102, 103, 104, 105, 106], "dev": [111, 112], "develop": [28, 30, 99, 110, 111, 112], "dex": [4, 12, 20, 57, 103, 105], "diagram": 0, "differ": 18, "dir": 99, "direct": [104, 105, 106, 107], "directori": [2, 20, 98, 99, 104, 105, 111], "disabl": [20, 99, 101, 102, 103, 105, 106, 107], "disclosur": 109, "discover": 99, "disk": 20, "dismiss": 107, "displai": [33, 36, 98, 105], "document": [100, 102, 105], "down": 58, "download": [20, 106, 136], "drop": [102, 103, 105], "duo": [5, 100, 102], "dure": [105, 107], "dynam": [35, 45, 106], "easier": 100, "edit": [39, 57, 107, 126, 128, 142], "editor": 107, "effect": 57, "effici": 107, "el6": 102, "el8": 102, "el9": 105, "element": 35, "embed": 98, "enabl": [20, 21, 29, 30, 39, 41, 59, 98, 99, 101], "enforc": [64, 65], "engin": [68, 101], "enhanc": [99, 104, 107], "entir": 35, "entri": 102, "env": 111, "environ": [68, 93, 99, 143], "erb": [32, 36, 45, 46, 88, 104, 106], "error": [20, 65, 99, 101, 112, 130, 140], "etc": 98, "everi": 102, "everyon": 30, "exampl": [12, 29, 34, 36, 45, 47, 58, 62, 74, 75, 76, 77, 78, 79, 80, 81, 82, 88], "exchang": 64, "execut": [29, 45], "exist": [44, 65], "experiment": 99, "export": 52, "express": 12, "extend": 103, "factor": 5, "fals": 107, "featur": [105, 106, 107], "feder": 2, "fetch": 101, "field": [24, 98, 103], "file": [12, 20, 29, 38, 46, 57, 73, 86, 92, 95, 101, 102, 103, 104, 105, 106, 107, 111, 143, 144], "fileset": 20, "finish": 140, "firefox": 99, "firewal": 4, "firewalld": 60, "first": 58, "fix": [20, 99, 101, 105], "flask": 143, "flow": 0, "fluxbox": 128, "form": [20, 24, 35, 36, 37, 101, 105, 107, 115, 116, 126], "format": 104, "formerli": 96, "framework": 142, "from": [4, 52, 55, 59, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104], "front": 18, "full": [138, 139], "fulli": 20, "gem": [102, 103, 104], "gener": [19, 20, 54, 74, 77, 78, 79, 82, 84, 87, 95, 102, 103], "get": [53, 130], "gke": 64, "global": [36, 45, 88, 107, 115], "globu": 106, "glossari": 26, "googl": [27, 106], "grafana": [20, 52, 102], "grid": [68, 101], "gridengin": 103, "guid": [21, 28, 40, 117, 123, 132], "ha": [104, 105, 107], "handl": [103, 115, 116], "hard": [24, 36], "hardwar": 108, "have": [98, 105, 107], "header": 107, "help": [20, 24, 98, 105], "hide": [20, 35, 98, 107], "home": [20, 99, 100], "hook": [46, 64], "host": [0, 2, 18, 20, 30, 65, 99, 102, 103], "how": 53, "hpc": 139, "html": [32, 98, 101, 106], "httpd": [49, 57, 106], "i": [98, 99, 101, 103, 105, 107, 140], "icon": 104, "ident": [16, 102], "identifi": 107, "ie": 103, "ignor": 98, "illeg": 20, "imag": [64, 136], "improv": [99, 100, 101, 102, 106], "includ": 99, "incommon": 7, "individu": 20, "info": [27, 32, 103], "inform": [10, 32, 47], "infrastructur": [95, 96, 97, 98, 99, 100, 101], "init": 138, "initi": [18, 105, 107, 142], "input": 63, "insecur": 6, "instal": [2, 4, 5, 18, 19, 29, 52, 54, 55, 59, 74, 82, 98, 102, 144], "instanc": 16, "instantli": 140, "instead": 98, "instruct": [47, 107], "integr": [20, 103, 104, 106], "interact": [20, 21, 31, 33, 39, 40, 50, 54, 98, 104, 105, 107, 113, 140], "interfac": [104, 107], "introduct": 109, "invalid": 68, "invok": 128, "issu": [63, 68, 99, 112, 130], "item": [20, 36, 98, 107], "itself": 140, "j": [35, 126, 142], "java": [130, 140], "javascript": [99, 106], "job": [0, 20, 23, 45, 58, 65, 68, 95, 96, 98, 100, 101, 102, 103, 104, 115, 116, 140], "json": 105, "jupyt": [34, 117, 118, 120, 138, 139], "just": 65, "kei": [20, 99], "keycloak": [5, 14, 16, 17, 18, 19, 64, 100, 102], "know": 111, "known": 130, "kuberenet": 64, "kubernet": [64, 138, 139], "kyverno": 64, "label": [24, 35, 107], "land": 104, "larg": 104, "launch": [20, 44, 65, 104, 105, 128], "layout": [20, 104], "ldap": [4, 17], "level": 98, "libcgroup": 65, "librari": 65, "like": 139, "limit": [20, 65, 109], "link": [20, 98, 102, 104], "linux": [0, 102, 106], "linuxhost": [23, 24, 65], "list": [98, 115, 116], "load": 65, "local": [20, 101, 103, 111, 116], "locat": [49, 50, 105], "log": [49, 50, 51, 98], "login": 58, "logo": 103, "logout": [11, 87], "longer": [98, 104], "lowercas": 107, "lsf": [66, 101], "made": 33, "main": [19, 45, 46], "mainten": [20, 102], "major": [104, 145], "make": [30, 98], "malform": 102, "manag": [4, 61, 64, 104, 109, 121, 128, 129], "mani": 101, "manifest": [20, 38, 101, 104], "manual": 20, "map": [7, 12, 16, 74, 107], "mapfil": 12, "markdown": 101, "match": 102, "mate": 128, "matlab": [123, 124, 125, 128, 140], "max": [35, 103], "maxim": 140, "md": [32, 106], "memcach": 104, "menu": [20, 102], "messag": [20, 24, 104], "meta": 58, "metadata": 104, "min": 35, "minim": 24, "minor": 145, "miss": [20, 99], "mod_auth_mellon": 2, "mod_auth_openidc": [19, 103], "mod_ood_proxi": 95, "mode": [20, 99, 102], "modifi": [24, 42, 115, 121, 129], "modul": [9, 10], "monitor": [48, 52], "more": 27, "motd": 20, "mount": [138, 139], "move": 140, "multipl": [98, 101, 103], "my": [95, 96], "name": [20, 68, 98, 102], "nativ": [47, 103], "navbar": [99, 105], "navconfig": [105, 107], "navig": 20, "new": [17, 98, 102, 103, 104, 105, 106, 107], "nginx": [78, 87, 100], "nginx_clean": [79, 102, 107], "nginx_list": 80, "nginx_show": 81, "nginx_stag": [74, 75, 76, 77, 78, 79, 80, 81, 82, 85], "ngnix_stag": 101, "nightli": 145, "node": [61, 64, 98, 101, 102, 142], "nodej": [99, 104, 142], "none": 99, "note": [94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "notebook": 34, "novnc": [103, 107], "now": [102, 103, 104, 107], "nsf": 7, "number": 145, "object": 46, "offer": 101, "oidc": [7, 64], "old": [105, 112], "ondemand": [4, 10, 17, 19, 20, 27, 30, 53, 57, 64, 86, 100, 101, 102, 103, 104], "onli": [57, 58], "ood": [2, 19, 20, 84, 95, 102, 103, 110, 111], "ood_auth_map": 104, "ood_port": [57, 87], "ood_ssh_host": 101, "open": [27, 53, 57, 64, 98, 101, 104], "openid": [4, 8, 14, 87], "oper": 108, "option": [6, 20, 30, 35, 45, 74, 77, 78, 79, 81, 82, 84, 85, 87, 88, 89, 90, 91, 92, 98, 99, 101, 105, 106], "other": [0, 6, 35, 54, 103, 121, 129], "overrid": 20, "overview": [0, 9, 20, 29, 73], "own": [35, 107], "packag": [4, 105, 106], "page": [20, 99, 100, 104, 105], "panel": [47, 103], "paramet": [34, 45, 121, 129], "partit": 114, "pass": 101, "passeng": [0, 99, 100, 141], "password": 47, "past": [99, 103], "patch": 145, "path": 106, "pb": [23, 67, 121, 129], "pbspro": 101, "peer": [29, 100], "per": [64, 87], "percent": 102, "perform": [49, 66, 100], "period": 98, "permiss": 29, "pid": 101, "pin": [20, 104], "ping": 20, "place": 18, "polici": [64, 109, 145], "poll": 107, "poll_delai": 107, "pong": 20, "port": 20, "portal": [10, 19, 57, 84, 95, 102, 103], "possibl": 114, "post": 47, "ppc64le": 106, "predefin": [20, 36], "prepar": 2, "privat": 64, "process": 52, "profession": [23, 67, 121, 129], "profil": [20, 86, 105], "project": [20, 102], "prometheu": 52, "prompt": 63, "properti": 86, "protect": 103, "provid": [16, 104], "proxi": [4, 41, 47, 87, 105], "public": 87, "publish": [142, 143, 144], "pun": [82, 93, 99, 107], "python": 143, "qo": 103, "qualiti": [101, 107], "queri": 27, "queue": 114, "quick": [21, 40, 44, 105, 117, 123, 132], "quota": [20, 99, 101], "r": 100, "rail": 144, "rais": 101, "rb": 144, "re": 19, "realm": 17, "rebuild": 98, "recent": 105, "reconfigur": 44, "redhat": 106, "redirect": 87, "reduc": 102, "refer": [4, 53, 73, 109], "regener": 102, "regex": 104, "regist": 16, "registr": [7, 87], "registri": 64, "regular": 12, "releas": [94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "relev": 109, "remot": [12, 20, 105], "remov": [16, 24, 101, 107], "render": [46, 101], "report": 109, "repositori": 59, "request": [0, 138], "requir": [25, 41, 43, 74, 78, 81, 82, 98, 99, 104, 107, 108, 122, 131, 137], "resiz": 140, "resourc": [61, 65, 121, 129, 138], "respond": 107, "restart": [49, 57, 102], "retain": 103, "revers": [4, 41, 47, 87, 105], "rewriteengin": 101, "rhel7": 14, "root": 107, "rpm": [52, 98], "rstudio": [0, 100, 132, 133, 135], "ru": 144, "rubi": [99, 103, 104, 144], "run": [98, 101, 102, 105], "runtim": 107, "saml": 2, "sanit": [10, 102], "save": [39, 107], "schedul": 103, "schema": 58, "scl": [100, 104], "script": [12, 20, 45, 46, 62, 90, 98, 102, 128], "secret": 99, "secur": [57, 99, 101, 105, 109], "select": [20, 35], "selector": 106, "selinux": [60, 102, 105, 107], "separ": 18, "server": [18, 45], "servic": [2, 4, 49, 57, 59], "session": [0, 10, 20, 32, 33, 36, 46, 47, 51, 98, 102, 105, 107], "set": [20, 35, 39, 45, 66, 88, 99, 101, 102, 106, 107, 111], "setup": [9, 12, 40, 136], "sever": 99, "sge": [99, 100], "share": [0, 29, 65, 100, 102, 104], "shell": [0, 20, 68, 95, 98, 99, 101, 102, 103, 104, 106, 112], "shibboleth": [7, 13], "shortcut": 20, "show": [49, 102], "signific": 105, "simpl": 88, "sinatra": [103, 144], "singular": 136, "size": [20, 102], "slice": 65, "slurm": [23, 69, 99, 100, 101, 103, 121, 129, 139], "softwar": [25, 43, 59, 65, 107, 108, 122, 131, 137], "solut": 114, "sourc": [4, 52, 55, 59], "spec": [138, 139], "special": [53, 102, 103], "specif": [65, 102], "specifi": [30, 45], "spi": 5, "ssh": [20, 99, 102], "stage": 31, "stale": 101, "start": [18, 21, 40, 53, 59, 117, 123, 132], "starter": [92, 142, 143, 144], "state": 65, "static": [115, 116], "statu": 107, "step": [18, 41], "store": 98, "streamlin": 103, "string": 101, "styliz": 47, "sub": 44, "submiss": [23, 45, 101, 115, 116], "submit": [36, 45, 88, 105, 121, 129, 138, 139], "suggest": 102, "support": [16, 20, 86, 98, 99, 100, 101, 102, 103, 105, 106, 108, 145], "svg": 103, "switch": 139, "system": [0, 20, 29, 51, 107, 108], "systemd": [65, 70], "tabl": 107, "tag": 145, "taglin": 20, "take": 57, "target": 65, "templat": [20, 45, 46, 54, 101], "termin": 101, "test": [52, 71], "text": [20, 100, 107], "thank": [53, 102, 103, 105], "thei": 98, "theme": [15, 20, 104], "thing": 111, "throw": 140, "ticket": [20, 105], "tighter": 104, "time": 145, "tip": 49, "titl": 102, "token": 64, "top": 98, "torqu": [23, 72, 100, 103, 121, 129], "troubleshoot": [65, 140], "tune": 49, "tutori": [14, 53, 110, 113, 141], "two": 5, "type": 45, "ubuntu": 105, "ug": 99, "unauthor": 20, "under": 98, "understand": 20, "undetermin": 65, "updat": [57, 60, 100, 102, 104, 105, 106, 107, 145], "upgrad": [95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "upload": [20, 103, 106], "url": [20, 101], "us": [5, 19, 20, 29, 39, 64, 100, 103, 104, 105, 115, 116, 128, 143], "usag": 83, "user": [0, 7, 12, 16, 20, 36, 57, 64, 65, 87, 102, 106, 107], "v0": 95, "v1": [30, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104], "v2": [58, 95, 96, 104], "v3": [105, 106], "v4": 107, "valu": [24, 35], "vari": 100, "verif": 98, "verifi": [41, 59], "version": [95, 96, 97, 98, 99, 100, 101, 105, 112, 145], "via": [52, 103], "view": [47, 103], "virtual": 143, "virtualhost": 49, "visual": 61, "vnc": [0, 45, 47, 91, 92, 101, 103], "vulner": 109, "walltim": 64, "warn": [20, 99, 102], "web": [64, 142], "websocket": 20, "when": [101, 140], "whether": 104, "which": 36, "while": 65, "whitelist": [99, 105, 107], "who": 29, "widget": [35, 37, 104, 105, 106, 107], "window": [98, 104, 128, 140], "without": [50, 128], "work": [41, 62], "wrapper": [20, 102, 142, 144], "write": 144, "xdmod": [20, 103, 107], "xfce": [24, 98, 128], "yml": [36, 38, 45, 57, 85, 86, 87, 88, 138, 139], "you": 130, "your": [16, 35]}}) \ No newline at end of file +Search.setIndex({"alltitles": {"1. Edit the Open OnDemand Portal ood_portal.yml file": [[57, "edit-the-open-ondemand-portal-ood-portal-generator-configuration-file"]], "1. Enable Dependencies": [[59, "enable-dependencies"]], "2. Add repository and install": [[59, "add-repository-and-install"]], "2. Update CA (Dex Users only)": [[57, "update-ca-dex-users-only"]], "3. Restart the Apache service for the changes take effect.": [[57, "restart-the-apache-service-for-the-changes-take-effect"]], "3. Start services": [[59, "start-services"]], "4. Verify installation": [[59, "verify-installation"]], "A Break Down": [[58, "a-break-down"]], "A Working Example of a bin_overrides Script": [[62, null]], "Ability to add additional info to batch connect app": [[103, "ability-to-add-additional-info-to-batch-connect-app"]], "Accessing Remote File Systems": [[20, "accessing-remote-file-systems"]], "Acknowledgments": [[107, "acknowledgments"]], "Active Jobs App (from v1.4.4 to v1.5.0)": [[95, "active-jobs-app-from-v1-4-4-to-v1-5-0"]], "Active Jobs App (from v1.5.0 to v1.5.1)": [[96, "active-jobs-app-from-v1-5-0-to-v1-5-1"]], "Active Jobs: display list of nodes that a job is running on": [[98, "active-jobs-display-list-of-nodes-that-a-job-is-running-on"]], "ActiveJobs configuration changes": [[104, "activejobs-configuration-changes"]], "Add .env.local File": [[111, "add-env-local-file"]], "Add Custom Attribute to Form": [[115, "add-custom-attribute-to-form"], [116, "add-custom-attribute-to-form"]], "Add Custom Queues/Partitions": [[114, null]], "Add Custom Theme": [[15, null]], "Add Dev Configurations": [[111, "add-dev-configurations"]], "Add Grafana support for ActiveJobs app": [[102, "add-grafana-support-for-activejobs-app"]], "Add Help Message to Field": [[24, "add-help-message-to-field"]], "Add Keycloak config to OnDemand Apache for mod_auth_openidc": [[19, "add-keycloak-config-to-ondemand-apache-for-mod-auth-openidc"]], "Add OnDemand as a client": [[17, "add-ondemand-as-a-client"]], "Add SELinux": [[60, null]], "Add Shortcuts to Files Menu": [[20, "add-shortcuts-to-files-menu"]], "Add URLs to Help Menu": [[20, "add-urls-to-help-menu"]], "Add Web Framework": [[142, "add-web-framework"]], "Add a Cluster": [[22, null]], "Add a Jupyter App": [[117, null]], "Add a Jupyter App on a Kubernetes Cluster": [[138, null]], "Add a Jupyter App on a Kubernetes Cluster that behaves like HPC compute": [[139, null]], "Add a MATLAB App": [[123, null]], "Add a new realm": [[17, "add-a-new-realm"]], "Add ability to disable RewriteEngine in Apache configuration": [[101, "add-ability-to-disable-rewriteengine-in-apache-configuration"]], "Add ability to disable SSH to compute node link in batch connect session card": [[102, "add-ability-to-disable-ssh-to-compute-node-link-in-batch-connect-session-card"]], "Add ability to include Javascript in Batch Connect apps": [[99, "add-ability-to-include-javascript-in-batch-connect-apps"]], "Add an RStudio App": [[132, null]], "Add an ssh wrapper to the shell app": [[102, "add-an-ssh-wrapper-to-the-shell-app"]], "Add and edit app.js": [[142, "add-and-edit-app-js"]], "Add ondemand SCL and use SCL nginx and passenger": [[100, "add-ondemand-scl-and-use-scl-nginx-and-passenger"]], "Add the CILogon Identity Provider": [[16, "add-the-cilogon-identity-provider"]], "Add to OnDemand Portal": [[10, "add-to-ondemand-portal"]], "Added Sinatra Ruby Gems into ondemand-gems for other apps to use": [[103, "added-sinatra-ruby-gems-into-ondemand-gems-for-other-apps-to-use"]], "Added VNC quality and compression controls": [[101, "added-vnc-quality-and-compression-controls"]], "Added job array support for LSF and PBSPro adapters": [[101, "added-job-array-support-for-lsf-and-pbspro-adapters"]], "Added localization options to the Dashboard and Job Composer": [[101, "added-localization-options-to-the-dashboard-and-job-composer"]], "Added rendering of HTML or Markdown in Job Composer template manifests": [[101, "added-rendering-of-html-or-markdown-in-job-composer-template-manifests"]], "Added support for fetching quota from a URL": [[101, "added-support-for-fetching-quota-from-a-url"]], "Added the Linux Host Adapter": [[102, "added-the-linux-host-adapter"]], "Added version strings to Dashboard": [[101, "added-version-strings-to-dashboard"]], "Adding Additional Information to the session cards": [[32, null]], "Adding Google Analytics": [[27, null]], "Adding Native VNC instructions to the panel": [[47, "adding-native-vnc-instructions-to-the-panel"]], "Adding metadata to app manifests": [[104, "adding-metadata-to-app-manifests"]], "Administrative changes": [[105, "administrative-changes"], [106, "administrative-changes"]], "Advanced Interactive Application Configurations": [[33, null]], "Advanced LSF settings": [[66, "advanced-lsf-settings"]], "Advanced Resource Manager Configurations": [[61, null]], "Advanced httpd support": [[106, "advanced-httpd-support"]], "Advantages": [[109, "advantages"]], "After Hook": [[46, "after-hook"]], "Alternatively, Build The Singularity Image": [[136, "alternatively-build-the-singularity-image"]], "Amazon Linux 2023 packages": [[106, "amazon-linux-2023-packages"]], "Announcement configuration keys.": [[20, "id24"]], "Announcements": [[20, "announcements"]], "Announcements Are Dismissible by Default.": [[107, "announcements-are-dismissible-by-default"]], "Apache httpd tips": [[49, null]], "App Changes": [[95, "app-changes"], [96, "app-changes"]], "App Development": [[28, null]], "App Development Guide": [[28, null]], "App Sharing": [[29, null]], "App completes without being able to connect to it.": [[50, "app-completes-without-being-able-to-connect-to-it"]], "App sharing landing page": [[104, "app-sharing-landing-page"]], "Application Version Changes": [[98, "application-version-changes"], [99, "application-version-changes"], [100, "application-version-changes"], [101, "application-version-changes"]], "Application Versions": [[95, "id6"], [96, "id5"], [97, "id3"], [98, "id3"], [99, "id4"], [100, "id2"], [101, "id2"]], "Application using Flask and a virtual environment": [[143, "application-using-flask-and-a-virtual-environment"]], "Applications": [[95, "applications"], [96, "applications"], [97, "applications"]], "Approach #1: Systemd user slices": [[65, "approach-1-systemd-user-slices"]], "Approach #2: libcgroup cgroups": [[65, "approach-2-libcgroup-cgroups"]], "Architecture": [[0, null]], "Attributes": [[36, "attributes"]], "Authentication": [[0, "authentication"], [1, null], [64, "authentication"]], "Auto-loading during initialization is deprecated.": [[105, "auto-loading-during-initialization-is-deprecated"]], "Autoloading During Initialization Has Been Removed.": [[107, "autoloading-during-initialization-has-been-removed"]], "Automatic Form Options": [[105, "automatic-form-options"]], "Automatic Predefined Attributes": [[36, "automatic-predefined-attributes"]], "Automatic Profile Selection": [[20, "automatic-profile-selection"]], "Backporting and Support": [[145, "backporting-and-support"]], "Balance Warnings on Dashboard": [[20, "balance-warnings-on-dashboard"]], "Basic Batch Connect Options": [[89, null]], "Basic application": [[143, "basic-application"]], "Basic job array support for Slurm, Torque, and SGE": [[100, "basic-job-array-support-for-slurm-torque-and-sge"]], "Batch Connect Form Identifiers Are Now Lowercase.": [[107, "batch-connect-form-identifiers-are-now-lowercase"]], "Batch Connect Script Options": [[90, null]], "Batch Connect Sessions Poll Delay": [[107, "batch-connect-sessions-poll-delay"]], "Batch Connect Template types": [[45, "batch-connect-template-types"]], "Batch Connect VNC Container Options": [[92, null]], "Batch Connect VNC Options": [[91, null]], "Batch Connect apps now support disabling caching on fields": [[103, "batch-connect-apps-now-support-disabling-caching-on-fields"]], "Batch Connect apps now support multiple clusters": [[103, "batch-connect-apps-now-support-multiple-clusters"]], "Before Hook": [[46, "before-hook"]], "Beta CCQ Scheduler support": [[103, "beta-ccq-scheduler-support"]], "Beta XDMoD integration in the dashboard": [[103, "beta-xdmod-integration-in-the-dashboard"]], "Better debugging of Interactive Apps by logging shell commands": [[98, "better-debugging-of-interactive-apps-by-logging-shell-commands"]], "Better environment setting": [[99, "better-environment-setting"]], "Better max file upload support": [[103, "better-max-file-upload-support"]], "Block or Allow Directory Access": [[20, "block-or-allow-directory-access"]], "Boot the application": [[142, "boot-the-application"], [143, "boot-the-application"]], "Bootstrapping OnDemand web node to communicate with Kubernetes": [[64, "bootstrapping-ondemand-web-node-to-communicate-with-kubernetes"]], "Bootstrapping the Kuberenetes cluster": [[64, "bootstrapping-the-kuberenetes-cluster"]], "Branding": [[20, "branding"], [20, "id26"]], "Breaking Changes": [[104, "breaking-changes"], [105, "breaking-changes"], [106, "breaking-changes"], [107, "breaking-changes"]], "Browser Requirements": [[108, "browser-requirements"]], "Build Old Version of Shell": [[112, "build-old-version-of-shell"]], "Building From Source": [[55, "building-from-source"], [59, "building-from-source"]], "CAS": [[3, null]], "Caching form items": [[36, "caching-form-items"]], "Cancel Interactive Sessions": [[20, "cancel-interactive-sessions"]], "Change Executable for Main Script": [[45, "change-executable-for-main-script"]], "Change Field Default Value": [[24, "change-field-default-value"]], "Change a Label": [[24, "change-a-label"]], "Change quota messages in the Dashboard": [[20, "change-quota-messages-in-the-dashboard"]], "Change the Dashboard Tagline": [[20, "change-the-dashboard-tagline"]], "Change to XFCE Desktop": [[24, "change-to-xfce-desktop"]], "Changed nginx_stage to always remove stale PID files": [[101, "changed-nginx-stage-to-always-remove-stale-pid-files"]], "Changed \u2018Open in Terminal\u2019 button to offer multiple options when OOD_SSH_HOSTS is set": [[101, "changed-open-in-terminal-button-to-offer-multiple-options-when-ood-ssh-hosts-is-set"]], "Changes in All Apps page layout": [[104, "changes-in-all-apps-page-layout"]], "Changes to the interactive cards": [[104, "changes-to-the-interactive-cards"]], "Changing the Navigation bar": [[20, "changing-the-navigation-bar"]], "Chinese localization": [[103, "chinese-localization"]], "Cleanup Hook": [[46, "cleanup-hook"]], "Cloudy Cluster": [[63, null]], "Cluster Config": [[56, null]], "Cluster Config Schema v2": [[58, null]], "Cluster Configuration": [[56, null], [65, "cluster-configuration"]], "Cluster config verification script": [[98, "cluster-config-verification-script"]], "Code Sharing": [[29, "code-sharing"]], "Commands": [[73, null], [83, null]], "Comments on Policy": [[109, "comments-on-policy"]], "Common Issues": [[63, "common-issues"], [68, "common-issues"]], "Community contributions": [[53, "community-contributions"]], "Components": [[95, "components"], [96, "components"]], "Config changes no longer require app rebuilds": [[98, "config-changes-no-longer-require-app-rebuilds"]], "Configuration": [[20, "configuration"], [36, "configuration"], [45, "configuration"]], "Configuration Options": [[85, "configuration-options"]], "Configuration Profiles": [[20, "configuration-profiles"]], "Configuration Properties": [[86, "configuration-properties"]], "Configuration Properties with profile support": [[86, "configuration-properties-with-profile-support"]], "Configuration Reference": [[73, null]], "Configurations in an ondemand.d directory": [[104, "configurations-in-an-ondemand-d-directory"]], "Configurations whitelist and blacklist Have Been Removed.": [[107, "configurations-whitelist-and-blacklist-have-been-removed"]], "Configure Apache Authentication": [[10, null]], "Configure Authentication Module": [[10, "configure-authentication-module"]], "Configure Duo SPI": [[5, "configure-duo-spi"]], "Configure General Options": [[87, "configure-general-options"]], "Configure Keycloak": [[17, null]], "Configure Keycloak with CILogon": [[16, null]], "Configure LDAP": [[17, "configure-ldap"]], "Configure Logout": [[11, null]], "Configure Logout Redirect": [[87, "configure-logout-redirect"]], "Configure OOD": [[2, "configure-ood"]], "Configure OnDemand to authenticate with Keycloak": [[19, null]], "Configure Open OnDemand": [[27, "configure-open-ondemand"]], "Configure OpenID Connect": [[87, "configure-openid-connect"]], "Configure Public Assets": [[87, "configure-public-assets"]], "Configure Reverse Proxy": [[87, "configure-reverse-proxy"]], "Configure Script": [[45, "configure-script"]], "Configure User Registration": [[87, "configure-user-registration"]], "Configure mod_auth_mellon": [[2, "configure-mod-auth-mellon"]], "Configure per-user NGINX": [[87, "configure-per-user-nginx"]], "Configuring OnDemand Dex": [[4, "configuring-ondemand-dex"]], "Configuring OnDemand Dex for LDAP": [[4, "configuring-ondemand-dex-for-ldap"]], "Configuring which cluster to submit to": [[36, "configuring-which-cluster-to-submit-to"]], "Connection Parameters conn_params": [[34, null]], "Connection View": [[47, null]], "Considerations": [[109, "considerations"]], "Container context": [[0, "container-context"]], "Context": [[46, "context"]], "Control whether an app link opens in a new window using manifest attribute": [[104, "control-whether-an-app-link-opens-in-a-new-window-using-manifest-attribute"]], "Controlling Who Can Share and Access Apps": [[29, "controlling-who-can-share-and-access-apps"]], "Controls": [[109, "controls"]], "Copy Jupyter App": [[118, null]], "Copy MATLAB App": [[124, null]], "Copy RStudio App": [[133, null]], "Create a Dev Dashboard": [[111, "create-a-dev-dashboard"]], "Create a Dev Shell": [[112, "create-a-dev-shell"]], "Create the python files": [[143, "create-the-python-files"]], "Create the virtual environment": [[143, "create-the-virtual-environment"]], "Custom CSS files": [[20, "custom-css-files"]], "Custom Error Page for Missing Home Directory on Launch": [[20, "custom-error-page-for-missing-home-directory-on-launch"]], "Custom Javascript files": [[106, "custom-javascript-files"]], "Custom Job Composer Templates": [[20, "custom-job-composer-templates"]], "Custom Job Submission": [[23, null]], "Custom Pages": [[20, "custom-pages"]], "Custom dashboard widgets and layout": [[104, "custom-dashboard-widgets-and-layout"]], "Custom layouts in the dashboard": [[20, "custom-layouts-in-the-dashboard"]], "Customizable error pages for missing home dirs": [[99, "customizable-error-pages-for-missing-home-dirs"]], "Customizations": [[20, null], [20, "id22"]], "Customize Attributes": [[119, null], [127, null], [134, null]], "Customize Dex Theme": [[20, "customize-dex-theme"]], "Customize Text in OnDemand": [[20, "customize-text-in-ondemand"]], "Customize Text in the Job Composer\u2019s options form": [[20, "customize-text-in-the-job-composer-s-options-form"]], "Customize User-defined Attributes": [[36, "customize-user-defined-attributes"]], "Customizing Attributes": [[36, "customizing-attributes"]], "Customizing OnDemand Dex": [[4, "customizing-ondemand-dex"]], "D-Bus errors": [[65, "d-bus-errors"]], "Dashboard Access": [[0, "dashboard-access"]], "Dashboard App (from v1.12.0 to v1.15.2)": [[95, "dashboard-app-from-v1-12-0-to-v1-15-2"]], "Dashboard App (from v1.15.2 to v1.17.0)": [[96, "dashboard-app-from-v1-15-2-to-v1-17-0"]], "Dashboard URLs": [[20, "id28"]], "Dashboard now alerts on malformed cluster configs": [[102, "dashboard-now-alerts-on-malformed-cluster-configs"]], "Debian 12 packages": [[106, "debian-12-packages"]], "Debugging Interactive Apps": [[50, null]], "Debugging User Mapping": [[12, "debugging-user-mapping"]], "Debugging and Monitoring": [[48, null]], "Default Installation": [[74, "default-installation"], [82, "default-installation"]], "Default authentication is now handled by Dex": [[103, "default-authentication-is-now-handled-by-dex"]], "Deleting old interactive app directories": [[105, "deleting-old-interactive-app-directories"]], "Demonstration": [[39, "demonstration"]], "Dependency Updates": [[107, "dependency-updates"], [145, "dependency-updates"]], "Dependency updates": [[104, "dependency-updates"], [105, "dependency-updates"], [106, "dependency-updates"]], "Deploy Hooks to bootstrap users Kubernetes configuration": [[64, "deploy-hooks-to-bootstrap-users-kubernetes-configuration"]], "Deploy Jupyter App": [[120, null]], "Deploy MATLAB App": [[125, null]], "Deploy RStudio App": [[135, null]], "Deprecations": [[105, "deprecations"], [106, "deprecations"], [107, "deprecations"]], "Desktops App (added v0.1.1)": [[95, "desktops-app-added-v0-1-1"]], "Details": [[98, "details"], [99, "details"], [100, "details"], [101, "details"], [102, "details"], [103, "details"], [104, "details"]], "Details of administrative changes": [[105, "details-of-administrative-changes"], [106, "details-of-administrative-changes"]], "Details of new features": [[105, "details-of-new-features"], [106, "details-of-new-features"]], "Develop OOD in OOD": [[111, "develop-ood-in-ood"]], "Develop the Shell": [[112, "develop-the-shell"]], "Developing The OOD Dashboard": [[110, null]], "Developing the Dashboard App": [[111, null]], "Developing the Shell App": [[112, null]], "Dex Automatic Configuration": [[12, "dex-automatic-configuration"]], "Dex Firewall": [[4, "dex-firewall"]], "Dex behind Apache reverse proxy by default": [[105, "dex-behind-apache-reverse-proxy-by-default"]], "Differences if installing Keycloak on separate host": [[18, "differences-if-installing-keycloak-on-separate-host"]], "Disable Host Link in Batch Connect Session Card": [[20, "disable-host-link-in-batch-connect-session-card"]], "Disable uploads or downloads": [[20, "disable-uploads-or-downloads"]], "Disabling Users": [[20, "disabling-users"]], "Disabling applications": [[20, "disabling-applications"]], "Disabling interactive app versions": [[105, "disabling-interactive-app-versions"]], "Disabling uploads and downloads": [[106, "disabling-uploads-and-downloads"]], "Disclosure Policy": [[109, "disclosure-policy"]], "Disk Quota Warnings on Dashboard": [[20, "disk-quota-warnings-on-dashboard"]], "Displaying Form options": [[105, "displaying-form-options"]], "Displaying choices made in Session Card": [[33, "displaying-choices-made-in-session-card"]], "Displaying form items in the session card": [[36, "displaying-form-items-in-the-session-card"]], "Documentation changes": [[105, "documentation-changes"]], "Documentation for Keycloak as identity broker with CILogon and Keycloak with Duo 2FA": [[102, "documentation-for-keycloak-as-identity-broker-with-cilogon-and-keycloak-with-duo-2fa"]], "Documentation update for Keycloak and Duo": [[100, "documentation-update-for-keycloak-and-duo"]], "Download The Singularity Image": [[136, "download-the-singularity-image"]], "Drop EL6 and add EL8 support": [[102, "drop-el6-and-add-el8-support"]], "Drop IE 11 support": [[103, "drop-ie-11-support"]], "Dynamic Checkboxes": [[106, "dynamic-checkboxes"]], "Dynamic Element Labels": [[35, "dynamic-element-labels"]], "Dynamic Form Widgets": [[35, null]], "Dynamic Min and Maxes": [[35, "dynamic-min-and-maxes"]], "Dynamically Set Submission Parameters": [[45, "dynamically-set-submission-parameters"]], "EL9 and Ubuntu 22.04 packages": [[105, "el9-and-ubuntu-22-04-packages"]], "ERB Objects": [[46, "erb-objects"]], "ERB formats for Message of the day": [[104, "erb-formats-for-message-of-the-day"]], "Easier customization of home page text": [[100, "easier-customization-of-home-page-text"]], "Edit Form.js": [[126, null]], "Edit Launch Script": [[128, null]], "Edit and Delete Interactive Application Saved Settings": [[107, "edit-and-delete-interactive-application-saved-settings"]], "Editing and deleting settings": [[39, "editing-and-deleting-settings"]], "Enable BatchConnect applications to raise errors after form submission": [[101, "enable-batchconnect-applications-to-raise-errors-after-form-submission"]], "Enable Interactive Desktop": [[21, null]], "Enable Reverse Proxy": [[41, null]], "Enable and configure Shell Ping Pong": [[20, "enable-and-configure-shell-ping-pong"]], "Enable in OnDemand v1.3:": [[30, "enable-in-ondemand-v1-3"]], "Enable in OnDemand v1.4 & v1.5:": [[30, "enable-in-ondemand-v1-4-v1-5"]], "Enable in OnDemand v1.6+:": [[30, "enable-in-ondemand-v1-6"]], "Enable multiple Dashboard announcements with embedded HTML": [[98, "enable-multiple-dashboard-announcements-with-embedded-html"]], "Enabling": [[39, "enabling"]], "Enabling App Development": [[30, null]], "Enabling The App Sharing Dashboard": [[29, "enabling-the-app-sharing-dashboard"]], "Enforce resource limits on the target host": [[65, "enforce-resource-limits-on-the-target-host"]], "Enforcing Walltimes": [[64, "enforcing-walltimes"]], "Example Using File Permissions": [[29, "example-using-file-permissions"]], "Example of Executable Sharing": [[29, "example-of-executable-sharing"]], "Examples": [[36, "examples"], [45, "examples"], [47, "examples"], [74, "examples"], [75, "examples"], [76, "examples"], [77, "examples"], [78, "examples"], [79, "examples"], [80, "examples"], [81, "examples"], [82, "examples"]], "Examples for the MapFile script": [[12, "examples-for-the-mapfile-script"]], "Experimental SGE/UGE support": [[99, "experimental-sge-uge-support"]], "Extended view support for GridEngine clusters": [[103, "extended-view-support-for-gridengine-clusters"]], "File Editor Interface Update": [[107, "file-editor-interface-update"]], "File User Mapping": [[12, "file-user-mapping"]], "Files": [[73, null]], "Files App (from v1.3.3 to v1.3.5)": [[95, "files-app-from-v1-3-3-to-v1-3-5"]], "Files app configuration changes": [[104, "files-app-configuration-changes"]], "First an example:": [[58, "first-an-example"]], "Fix Unauthorized WebSocket Connection in Shell App": [[20, "fix-unauthorized-websocket-connection-in-shell-app"]], "Fixed copy and paste issues in the Shell app for Firefox": [[99, "fixed-copy-and-paste-issues-in-the-shell-app-for-firefox"]], "Form Widgets": [[37, null]], "Fully customizing the navigation bar": [[20, "fully-customizing-the-navigation-bar"]], "GKE Authentication": [[64, "gke-authentication"]], "General Options": [[74, "general-options"], [77, "general-options"], [78, "general-options"], [79, "general-options"], [82, "general-options"]], "Generic Interactive App Templates": [[54, "id1"]], "Getting Started": [[53, null]], "Global Batch Connect Form Items": [[36, "global-batch-connect-form-items"]], "Global Batch Connect Items": [[107, "global-batch-connect-items"]], "Globus integration": [[106, "globus-integration"]], "Glossary": [[26, null]], "Google Analytics 4 support": [[106, "google-analytics-4-support"]], "Grafana Dashboard": [[52, "id1"]], "Grafana support": [[20, "grafana-support"]], "Grid Engine": [[68, null]], "Handle Custom Attribute in Job Submission": [[115, "handle-custom-attribute-in-job-submission"], [116, "handle-custom-attribute-in-job-submission"]], "Hard-code a Form Field": [[24, "hard-code-a-form-field"]], "Hard-coded Attributes": [[36, "hard-coded-attributes"]], "Hardware Requirements": [[108, "hardware-requirements"]], "Hiding Job Arrays": [[20, "hiding-job-arrays"]], "Hiding entire elements": [[35, "hiding-entire-elements"]], "Hiding select options": [[35, "hiding-select-options"]], "How-Tos": [[53, null]], "If you get Java errors": [[130, "if-you-get-java-errors"]], "Ignore apps if they have a period in directory name": [[98, "ignore-apps-if-they-have-a-period-in-directory-name"]], "Improve default discoverability of apps in the Dashboard\u2019s navbar": [[99, "improve-default-discoverability-of-apps-in-the-dashboard-s-navbar"]], "Improved Slurm and Grid Engine adapters": [[101, "improved-slurm-and-grid-engine-adapters"]], "Improved shell connections": [[106, "improved-shell-connections"]], "Improvements to ood-portal-generator": [[102, "improvements-to-ood-portal-generator"]], "Individual Fileset Quota": [[20, "individual-fileset-quota"]], "Individual User Quota": [[20, "individual-user-quota"]], "Infrastructure": [[95, "infrastructure"], [96, "infrastructure"], [97, "infrastructure"]], "Infrastructure Changes": [[95, "infrastructure-changes"], [96, "infrastructure-changes"], [101, "infrastructure-changes"]], "Infrastructure Component Versions": [[95, "id5"], [96, "id4"], [97, "id2"], [98, "id2"]], "Infrastructure Version Changes": [[98, "infrastructure-version-changes"], [99, "infrastructure-version-changes"], [100, "infrastructure-version-changes"]], "Initial Installation Steps": [[18, "initial-installation-steps"]], "Initialize the application": [[142, "initialize-the-application"]], "Install Keycloak": [[18, null]], "Install Keycloak Duo SPI": [[5, "install-keycloak-duo-spi"]], "Install Other Interactive Apps": [[54, null]], "Install Software": [[59, null]], "Install dependencies": [[144, "install-dependencies"]], "Install from Source": [[52, "install-from-source"]], "Install mod_auth_mellon": [[2, "install-mod-auth-mellon"]], "Install mod_auth_openidc": [[19, "install-mod-auth-openidc"]], "Install via RPM": [[52, "install-via-rpm"]], "Installation": [[55, null]], "Installing OnDemand Dex from source": [[4, "installing-ondemand-dex-from-source"]], "Installing OnDemand Dex package": [[4, "installing-ondemand-dex-package"]], "Interactive App": [[54, "id2"]], "Interactive Apps": [[31, null]], "Interactive Apps Can Have a Text Header.": [[107, "interactive-apps-can-have-a-text-header"]], "Interactive Apps Menu": [[20, "interactive-apps-menu"]], "Introduction": [[109, "introduction"]], "Invalid Job name": [[68, "invalid-job-name"]], "Invoking MATLAB without a Window Manager": [[128, "invoking-matlab-without-a-window-manager"]], "Issues and Errors": [[112, "issues-and-errors"]], "Job Composer (formerly My Jobs) App (from v2.5.0 to v2.6.0)": [[96, "job-composer-formerly-my-jobs-app-from-v2-5-0-to-v2-6-0"]], "Job Composer Script Size Limit": [[20, "job-composer-script-size-limit"]], "Job Composer and Active Jobs match Dashboard Branding": [[102, "job-composer-and-active-jobs-match-dashboard-branding"]], "Job Composer: Optionally hide Account field in Job Options": [[98, "job-composer-optionally-hide-account-field-in-job-options"]], "Job Submission (submit.yml.erb)": [[45, null]], "Job Template Details": [[20, "job-template-details"]], "Job Templates Overview": [[20, "job-templates-overview"]], "Job composer now shows suggested scripts": [[102, "job-composer-now-shows-suggested-scripts"]], "Job finishes instantly because, desktop app backgrounds itself": [[140, "job-finishes-instantly-because-desktop-app-backgrounds-itself"]], "Jupyter Notebook Example": [[34, "jupyter-notebook-example"]], "Keycloak": [[64, "keycloak"], [64, "id1"]], "Known Issues": [[130, null]], "Kubernetes": [[64, null]], "Kyverno Policies": [[64, "kyverno-policies"]], "LSF": [[66, null]], "Launch any software on target host": [[65, "launch-any-software-on-target-host"]], "Launch specific application containers": [[65, "launch-specific-application-containers"]], "Limit auto generated menu bars": [[20, "limit-auto-generated-menu-bars"]], "Limitations": [[109, "limitations"]], "Linux Host Adapter": [[0, "linux-host-adapter"]], "LinuxHost": [[65, null]], "LinuxHost Adapter": [[23, "linuxhost-adapter"]], "Log location": [[50, "log-location"]], "Log locations": [[49, "log-locations"]], "Logging": [[51, null]], "Login Cluster Only": [[58, "login-cluster-only"]], "MATLAB throws Java errors when the window is resized": [[140, "matlab-throws-java-errors-when-the-window-is-resized"]], "Main Script": [[46, "main-script"]], "Maintenance Mode": [[20, "maintenance-mode"]], "Maintenance mode": [[102, "maintenance-mode"]], "Major Changes": [[104, "major-changes"]], "Major Versions": [[145, "major-versions"]], "Make everyone a developer by default (optional)": [[30, "make-everyone-a-developer-by-default-optional"]], "Make \u201cInteractive Sessions\u201d link top level item": [[98, "make-interactive-sessions-link-top-level-item"]], "Managed Authentication": [[64, "managed-authentication"]], "Managing the OnDemand Dex service": [[4, "managing-the-ondemand-dex-service"]], "Manifest yml files": [[38, null]], "Manual Profile Selection": [[20, "manual-profile-selection"]], "Many bug fixes": [[101, "many-bug-fixes"]], "Mapping Users": [[7, "mapping-users"]], "Mapping of apps for a default installation": [[74, "id2"]], "Memcached Ruby gem available for use in apps": [[104, "memcached-ruby-gem-available-for-use-in-apps"]], "Menus based on applications": [[20, "menus-based-on-applications"]], "Menus based on links": [[20, "menus-based-on-links"]], "Menus by Application category": [[20, "menus-by-application-category"]], "Menus for URLs": [[20, "menus-for-urls"]], "Menus for custom pages": [[20, "menus-for-custom-pages"]], "Menus for profile links": [[20, "menus-for-profile-links"]], "Message of the Day (MOTD)": [[20, "message-of-the-day-motd"]], "Minimal LinuxHost Form": [[24, "minimal-linuxhost-form"]], "Minor Versions": [[145, "minor-versions"]], "Modify Cluster Configuration": [[42, null], [115, "modify-cluster-configuration"]], "Modify Form Attributes": [[24, null]], "Modify Submit Parameters": [[121, null], [129, null]], "More Info": [[27, "more-info"]], "My Jobs App (from v2.4.1 to v2.5.0)": [[95, "my-jobs-app-from-v2-4-1-to-v2-5-0"]], "NSF ACCESS": [[7, null]], "NavConfig Has Been Removed.": [[107, "navconfig-has-been-removed"]], "NavConfig is deprecated": [[105, "navconfig-is-deprecated"]], "New Features": [[105, "new-features"], [106, "new-features"]], "New Features and Enhancements": [[107, "new-features-and-enhancements"]], "New File Manager app": [[104, "new-file-manager-app"]], "New data-label Directive": [[107, "new-data-label-directive"]], "New shared OnDemand gem sets": [[102, "new-shared-ondemand-gem-sets"]], "Nightly Versions": [[145, "nightly-versions"]], "No longer providing ood_auth_map.regex": [[104, "no-longer-providing-ood-auth-map-regex"]], "Node Wrapper": [[142, "node-wrapper"]], "OIDC Audience": [[64, "oidc-audience"]], "OIDC Authentication": [[64, "oidc-authentication"]], "OIDC Client Registration": [[7, "oidc-client-registration"]], "OIDC Token Exchange": [[64, "oidc-token-exchange"]], "OnDemand Dex behind Apache reverse proxy": [[4, "ondemand-dex-behind-apache-reverse-proxy"]], "OnDemand Dex configuration reference": [[4, "ondemand-dex-configuration-reference"]], "OnDemand Locale Files": [[20, "id30"]], "OnDemand passed a security audit": [[101, "ondemand-passed-a-security-audit"]], "Open OnDemand": [[53, null]], "Open OnDemand apps in a Kuberenetes cluster": [[64, "open-ondemand-apps-in-a-kuberenetes-cluster"]], "Open Shell to compute node that a VNC job is running on": [[101, "open-shell-to-compute-node-that-a-vnc-job-is-running-on"]], "Open \u201chelp\u201d links in new window": [[98, "open-help-links-in-new-window"]], "OpenID Connect": [[8, null]], "OpenID Connect with Dex": [[4, null]], "OpenID Connect with KeyCloak on RHEL7": [[14, null]], "Operating System and Architecture Support": [[108, "id3"]], "Optional Quota warnings on dashboard": [[99, "optional-quota-warnings-on-dashboard"]], "Options": [[84, "options"]], "Other Insecure Options": [[6, null]], "Other Request Flow Diagrams": [[0, "other-request-flow-diagrams"]], "Other Resource Manager": [[121, "other-resource-manager"], [129, "other-resource-manager"]], "Overriding Pages": [[20, "overriding-pages"]], "Overview": [[0, "overview"], [9, null], [29, "overview"]], "Overviews": [[73, null]], "PBS Professional": [[23, "pbs-professional"], [67, null], [121, "pbs-professional"], [129, "pbs-professional"]], "POLL_DELAY is Deprecated.": [[107, "poll-delay-is-deprecated"]], "POST Password": [[47, "post-password"]], "PUN environment": [[93, null]], "Passenger App": [[0, "passenger-app"]], "Patch Versions": [[145, "patch-versions"]], "Path Selector widget": [[106, "path-selector-widget"]], "Peer to Peer Executable Sharing": [[29, "peer-to-peer-executable-sharing"]], "Peer to peer app sharing": [[100, "peer-to-peer-app-sharing"]], "Per User Kubernetes": [[64, "per-user-kubernetes"]], "Performance Settings": [[66, "performance-settings"]], "Performance Tuning": [[49, "performance-tuning"]], "Performance improvements to Active Jobs": [[100, "performance-improvements-to-active-jobs"]], "Pinned Apps customizations": [[20, "pinned-apps-customizations"]], "Pinned Apps: Enhanced app launch interface using large app icons on the dashboard": [[104, "pinned-apps-enhanced-app-launch-interface-using-large-app-icons-on-the-dashboard"]], "Pinning Applications to the Dashboard": [[20, "pinning-applications-to-the-dashboard"]], "Place Apache in front of Keycloak": [[18, "place-apache-in-front-of-keycloak"]], "Possible Solutions": [[114, null]], "Predefined Attributes": [[36, "predefined-attributes"]], "Predefined templates": [[20, "predefined-templates"]], "Prepare the Host": [[2, "prepare-the-host"]], "Process Exporter": [[52, "id2"]], "Project Balance": [[20, "project-balance"]], "Project Dependencies": [[102, "id4"]], "Prometheus Configuration": [[52, "prometheus-configuration"]], "Prometheus Monitoring": [[52, null]], "Prompted for input": [[63, "prompted-for-input"]], "Publish App": [[142, "publish-app"], [143, "publish-app"], [144, "publish-app"]], "Querying Google Analytics": [[27, "querying-google-analytics"]], "Quick Launch Apps": [[44, "quick-launch-apps"], [105, "quick-launch-apps"]], "Quick Start Guide": [[21, null], [40, null], [117, null], [123, null], [132, null]], "RPM based installation": [[98, "rpm-based-installation"]], "RStudio Job": [[0, "rstudio-job"]], "RStudio with varying versions of R": [[100, "rstudio-with-varying-versions-of-r"]], "Re-generate main config using ood-portal-generator": [[19, "re-generate-main-config-using-ood-portal-generator"]], "Recently Used Apps widget": [[105, "recently-used-apps-widget"]], "RedHat/CentOS 7 packages deprecated": [[106, "redhat-centos-7-packages-deprecated"]], "Reduced installation size by 30 percent": [[102, "reduced-installation-size-by-30-percent"]], "Reference": [[53, null]], "Regenerate ood-portal.conf with every apache restart": [[102, "regenerate-ood-portal-conf-with-every-apache-restart"]], "Register your Keycloak instance with CILogon": [[16, "register-your-keycloak-instance-with-cilogon"]], "Regular Expression User Mapping": [[12, "regular-expression-user-mapping"]], "Release Notes": [[94, null]], "Relevant References": [[109, "relevant-references"]], "Remote User": [[12, "remote-user"]], "Remove Form Field": [[24, "remove-form-field"]], "Removed Runtime Dependency on Software Collections": [[107, "removed-runtime-dependency-on-software-collections"]], "Render Template": [[46, null]], "Reporting a Vulnerability": [[109, "reporting-a-vulnerability"]], "Request Flow": [[0, "request-flow"]], "Require NodeJS 14": [[104, "require-nodejs-14"]], "Required Announcements": [[107, "required-announcements"]], "Required Options": [[74, "required-options"], [78, "required-options"], [81, "required-options"], [82, "required-options"]], "Requirements": [[41, "requirements"], [108, null]], "Restart services": [[49, "restart-services"]], "Retain completed jobs panel for debugging": [[103, "retain-completed-jobs-panel-for-debugging"]], "Reverse Proxy": [[47, "reverse-proxy"]], "Root-Owned Configuration Files": [[107, "root-owned-configuration-files"]], "Ruby Wrapper": [[144, "ruby-wrapper"]], "Ruby and bundler updates": [[104, "ruby-and-bundler-updates"]], "Running Sessions widget": [[105, "running-sessions-widget"]], "SAML Authentication with Active Directory Federated Services (ADFS) and mod_auth_mellon": [[2, null]], "SCL Ruby no longer available to apache": [[104, "scl-ruby-no-longer-available-to-apache"]], "SELinux": [[60, "selinux"]], "SELinux Changes": [[107, "selinux-changes"]], "SELinux after Updates": [[60, "selinux-after-updates"]], "SELinux changes": [[105, "selinux-changes"]], "Sanitize Session Information": [[10, "sanitize-session-information"]], "Saving Settings": [[39, "saving-settings"]], "Saving interactive application settings": [[39, null]], "Secure Apache httpd": [[57, null]], "Security": [[109, null]], "Security Audits": [[109, "security-audits"]], "Security Enhancement - PUN autogenerates secret key base if none is set": [[99, "security-enhancement-pun-autogenerates-secret-key-base-if-none-is-set"]], "Security Enhancement: App development mode is disabled by default": [[99, "security-enhancement-app-development-mode-is-disabled-by-default"]], "Security Enhancement: Enable whitelisting of directories in several core apps": [[99, "security-enhancement-enable-whitelisting-of-directories-in-several-core-apps"]], "Security Enhancement: Require SSH for all hosts in Shell app": [[99, "security-enhancement-require-ssh-for-all-hosts-in-shell-app"]], "Security Fixes": [[105, "security-fixes"]], "Session": [[46, "session"]], "Session Data": [[51, "session-data"]], "Session Information": [[47, "session-information"]], "Set Default SSH Host": [[20, "set-default-ssh-host"]], "Set Dev Configuration Directory": [[111, "set-dev-configuration-directory"]], "Set Download Limits": [[20, "set-download-limits"]], "Set Illegal Job Name Characters": [[20, "set-illegal-job-name-characters"]], "Set OOD SSH Port": [[20, "set-ood-ssh-port"]], "Set SSH Allowlist": [[20, "set-ssh-allowlist"]], "Set Upload Limits": [[20, "set-upload-limits"]], "Setting Batch Connect Options Globally": [[45, "setting-batch-connect-options-globally"], [88, "setting-batch-connect-options-globally"]], "Setting values based on other elements": [[35, "setting-values-based-on-other-elements"]], "Setup Authentication Module": [[9, null]], "Setup Interactive Apps": [[40, null]], "Setup Singularity": [[136, null]], "Setup User Mapping": [[12, null]], "Shell App (from v1.2.2 to v1.2.3)": [[95, "shell-app-from-v1-2-2-to-v1-2-3"]], "Shell App SSH Command Wrapper": [[20, "shell-app-ssh-command-wrapper"]], "Shell Session": [[0, "shell-session"]], "Shell app now has themes": [[104, "shell-app-now-has-themes"]], "Shell environments": [[68, "shell-environments"]], "Shell hosts are now protected behind allowlists": [[103, "shell-hosts-are-now-protected-behind-allowlists"]], "Shibboleth": [[13, null]], "Shibboleth and InCommon": [[7, "shibboleth-and-incommon"]], "Show VirtualHosts": [[49, "show-virtualhosts"]], "Show account balance warnings": [[102, "show-account-balance-warnings"]], "Significant changes to navbar configurations": [[105, "significant-changes-to-navbar-configurations"]], "Simple Example": [[88, "simple-example"]], "Slurm": [[23, "slurm"], [69, null], [121, "slurm"], [129, "slurm"]], "Slurm 18 Support": [[99, "slurm-18-support"]], "Software Requirements": [[25, null], [43, null], [108, "software-requirements"], [122, null], [131, null], [137, null]], "Special Thanks": [[53, "special-thanks"]], "Special thanks": [[102, "special-thanks"], [103, "special-thanks"]], "Specify Job Submission Parameters": [[45, "specify-job-submission-parameters"]], "Specify dedicated host for development (optional)": [[30, "specify-dedicated-host-for-development-optional"]], "Stages of an Interactive App": [[31, null]], "Start Keycloak Server": [[18, "start-keycloak-server"]], "Starter NodeJS Application": [[142, null]], "Starter Python Application": [[143, null]], "Starter Ruby Application": [[144, null]], "Starter def file": [[92, "starter-def-file"]], "Steps to Enable in Apache": [[41, "steps-to-enable-in-apache"]], "Store configuration under /etc instead of under app directories": [[98, "store-configuration-under-etc-instead-of-under-app-directories"]], "Streamlined copy and paste in noVNC for Chrome": [[103, "streamlined-copy-and-paste-in-novnc-for-chrome"]], "Stylizing": [[47, "stylizing"]], "Sub-Apps and Reconfiguring existing apps": [[44, null]], "Submitting Help tickets": [[105, "submitting-help-tickets"]], "Support Tickets": [[20, "support-tickets"]], "Support added for completed.{md,html}.erb": [[106, "support-added-for-completed-md-html-erb"]], "Support for Profiles": [[105, "support-for-profiles"]], "Support for SVG dashboard logos": [[103, "support-for-svg-dashboard-logos"]], "Support for Ubuntu 18.04 has been dropped.": [[105, "support-for-ubuntu-18-04-has-been-dropped"]], "Support for custom pages": [[105, "support-for-custom-pages"]], "Support for new Native VNC views": [[103, "support-for-new-native-vnc-views"]], "Support for remote files": [[105, "support-for-remote-files"]], "Support mod_auth_openidc configuration via ood-portal-generator": [[103, "support-mod-auth-openidc-configuration-via-ood-portal-generator"]], "Support running OnDemand with SELinux": [[102, "support-running-ondemand-with-selinux"]], "Support sanitizing job names": [[102, "support-sanitizing-job-names"]], "Support users removing CILogon mappings": [[16, "support-users-removing-cilogon-mappings"]], "Supported Operating Systems": [[108, "supported-operating-systems"]], "Switch between SLURM and Kubernetes": [[139, "switch-between-slurm-and-kubernetes"]], "System Installed Apps": [[29, "system-installed-apps"]], "System Logs": [[51, "system-logs"]], "System Status Application": [[107, "system-status-application"]], "System context": [[0, "system-context"]], "Systemd": [[70, null]], "Table of Contents": [[107, "table-of-contents"]], "Tagging": [[145, "tagging"]], "Template Files": [[46, "template-files"]], "Test Configuration": [[71, null]], "Test Prometheus Exporter": [[52, "test-prometheus-exporter"]], "Thanks!": [[105, "thanks"]], "The container": [[139, "the-container"]], "The job just exists with no errors.": [[65, "the-job-just-exists-with-no-errors"]], "The window cannot be resized/moved/maximized": [[140, "the-window-cannot-be-resized-moved-maximized"]], "Things To Know": [[111, "things-to-know"]], "Tighter integration between the Dashboard, Active Jobs, and Files apps": [[104, "tighter-integration-between-the-dashboard-active-jobs-and-files-apps"]], "Titles for Files menu entries": [[102, "titles-for-files-menu-entries"]], "Tokens for Bootstrapping": [[64, "tokens-for-bootstrapping"]], "Torque": [[23, "torque"], [72, null], [121, "torque"], [129, "torque"]], "Torque and Slurm schedulers now support QoS fields": [[103, "torque-and-slurm-schedulers-now-support-qos-fields"]], "Troubleshooting": [[65, "troubleshooting"]], "Troubleshooting Interactive Apps": [[140, null]], "Tutorial": [[14, null]], "Tutorials": [[53, null], [110, null], [113, null], [141, null]], "Tutorials: Interactive Apps": [[113, null]], "Tutorials: Passenger Apps": [[141, null]], "Two Factor Auth using Duo with Keycloak": [[5, null]], "Understanding the default navigation bar": [[20, "understanding-the-default-navigation-bar"]], "Undetermined state": [[65, "undetermined-state"]], "Update project dependencies": [[102, "update-project-dependencies"]], "Updated Apache options": [[106, "updated-apache-options"]], "Upgrade Instructions": [[107, "upgrade-instructions"]], "Upgrade directions": [[104, "upgrade-directions"], [104, "id2"], [105, "upgrade-directions"], [106, "upgrade-directions"]], "Upgrade to Ruby 2.4, NodeJS 6, Passenger 5": [[99, "upgrade-to-ruby-2-4-nodejs-6-passenger-5"]], "Upgrading from v1.1": [[97, "upgrading-from-v1-1"]], "Upgrading from v1.2": [[98, "upgrading-from-v1-2"]], "Upgrading from v1.3": [[99, "upgrading-from-v1-3"], [100, "upgrading-from-v1-3"]], "Upgrading from v1.4": [[100, "upgrading-from-v1-4"]], "Upgrading from v1.5": [[101, "upgrading-from-v1-5"], [102, "upgrading-from-v1-5"]], "Upgrading from v1.6": [[102, "upgrading-from-v1-6"], [103, "upgrading-from-v1-6"]], "Upgrading from v1.7": [[103, "upgrading-from-v1-7"]], "Upgrading from v1.8": [[104, "upgrading-from-v1-8"]], "Upgrading to 1.0": [[95, "upgrading-to-1-0"]], "Upgrading to 1.1": [[96, "upgrading-to-1-1"]], "Upgrading to v2.0.29": [[104, "upgrading-to-v2-0-29"]], "Usage": [[83, null]], "Use Fluxbox for the Window Manager": [[128, "use-fluxbox-for-the-window-manager"]], "Use Mate for the Window Manager": [[128, "use-mate-for-the-window-manager"]], "Use XFCE for the Window Manager": [[128, "use-xfce-for-the-window-manager"]], "Use a Global Static List": [[115, null]], "Use a Local Static List": [[116, null]], "User App Sharing": [[0, "user-app-sharing"]], "User Balance": [[20, "user-balance"]], "User Form (form.yml.erb)": [[36, null]], "User Map Command for Advanced Mappings": [[12, "user-map-command-for-advanced-mappings"]], "User Mapping Now Accepts User Identifiers.": [[107, "user-mapping-now-accepts-user-identifiers"]], "User Settings File Change": [[106, "user-settings-file-change"]], "User-defined Attributes": [[36, "user-defined-attributes"]], "Using Settings": [[39, "using-settings"]], "Using a private image registry": [[64, "using-a-private-image-registry"]], "Using manifests to create menu items": [[20, "using-manifests-to-create-menu-items"]], "Using the virtual environment": [[143, "using-the-virtual-environment"]], "VNC Desktop Job": [[0, "vnc-desktop-job"]], "VNC Server": [[45, "vnc-server"]], "Verify it Works": [[41, "verify-it-works"]], "Version Numbering": [[145, "version-numbering"]], "Version Timing": [[145, "version-timing"]], "Versioning Policy": [[145, null]], "Visualization Nodes": [[61, "visualization-nodes"]], "Vulnerability Management": [[109, "vulnerability-management"]], "Write the app.rb file": [[144, "write-the-app-rb-file"]], "XDMoD Efficiency Widget Update": [[107, "xdmod-efficiency-widget-update"]], "XDMoD Integration": [[20, "xdmod-integration"]], "Xfce support Interactive Desktops": [[98, "xfce-support-interactive-desktops"]], "Your own form.js": [[35, "your-own-form-js"]], "aarch64/arm64 and ppc64le packages": [[106, "aarch64-arm64-and-ppc64le-packages"]], "acls:": [[58, "acls"]], "batch_connect:": [[58, "batch-connect"]], "bin_overrides:": [[58, "bin-overrides"]], "completed.{md,html}.erb": [[32, "completed-md-html-erb"]], "config.ru for Ruby on Rails": [[144, "config-ru-for-ruby-on-rails"]], "config.ru for Sinatra": [[144, "config-ru-for-sinatra"]], "configmap": [[138, "configmap"]], "container spec": [[138, "container-spec"], [139, "container-spec"]], "context.json file locations have changed": [[105, "context-json-file-locations-have-changed"]], "custom:": [[58, "custom"]], "data-hide Directives Now Respond to False.": [[107, "data-hide-directives-now-respond-to-false"]], "error while loading shared libraries": [[65, "error-while-loading-shared-libraries"]], "firewalld": [[60, "firewalld"]], "info.{md,html}.erb": [[32, "info-md-html-erb"]], "init containers": [[138, "init-containers"]], "job:": [[58, "job"]], "login:": [[58, "login"]], "meta:": [[58, "meta"]], "mod_ood_proxy (from v0.2.0 to v0.3.1)": [[95, "mod-ood-proxy-from-v0-2-0-to-v0-3-1"]], "mounts": [[138, "mounts"], [139, "mounts"]], "nginx_clean Now Cleans PUNs for Disabled Users.": [[107, "nginx-clean-now-cleans-puns-for-disabled-users"]], "nginx_clean support for a specific user": [[102, "nginx-clean-support-for-a-specific-user"]], "nginx_stage app": [[74, null]], "nginx_stage app_clean": [[75, null]], "nginx_stage app_list": [[76, null]], "nginx_stage app_reset": [[77, null]], "nginx_stage nginx": [[78, null]], "nginx_stage nginx_clean": [[79, null]], "nginx_stage nginx_list": [[80, null]], "nginx_stage nginx_show": [[81, null]], "nginx_stage pun": [[82, null]], "nginx_stage.yml": [[85, null]], "noVNC Quality and Compression Defaults": [[107, "novnc-quality-and-compression-defaults"]], "ondemand.d/*.yml files": [[86, null]], "ood-portal-generator": [[84, null]], "ood-portal-generator (from v0.3.1 to v0.4.0)": [[95, "ood-portal-generator-from-v0-3-1-to-v0-4-0"]], "ood_portal.yml": [[87, null]], "resource requests": [[138, "resource-requests"]], "submit yml in full": [[138, "submit-yml-in-full"], [139, "submit-yml-in-full"]], "submit.yml.erb": [[88, null]], "v1.0 Release Notes": [[95, null]], "v1.1 Release Notes": [[96, null]], "v1.2 Release Notes": [[97, null]], "v1.3 Release Notes": [[98, null]], "v1.4 Release Notes": [[99, null]], "v1.5 Release Notes": [[100, null]], "v1.6 Release Notes": [[101, null]], "v1.7 Release Notes": [[102, null]], "v1.8 Release Notes": [[103, null]], "v2.0 Release Notes": [[104, null]], "v2:": [[58, "v2"]], "v3.0 Release Notes": [[105, null]], "v3.1 Release Notes": [[106, null]], "v4.0 Release Notes": [[107, null]], "whitelist & blacklist configurations are deprecated": [[105, "whitelist-blacklist-configurations-are-deprecated"]]}, "docnames": ["architecture", "authentication", "authentication/adfs-with-auth-mellon", "authentication/cas", "authentication/dex", "authentication/duo-2fa-with-keycloak", "authentication/insecure", "authentication/nsf-access", "authentication/oidc", "authentication/overview", "authentication/overview/configure-authentication", "authentication/overview/configure-logout", "authentication/overview/map-user", "authentication/shibboleth", "authentication/tutorial-oidc-keycloak-rhel7", "authentication/tutorial-oidc-keycloak-rhel7/add-custom-theme", "authentication/tutorial-oidc-keycloak-rhel7/configure-cilogon", "authentication/tutorial-oidc-keycloak-rhel7/configure-keycloak-webui", "authentication/tutorial-oidc-keycloak-rhel7/install-keycloak", "authentication/tutorial-oidc-keycloak-rhel7/install_mod_auth_openidc", "customizations", "enable-desktops", "enable-desktops/add-cluster", "enable-desktops/custom-job-submission", "enable-desktops/modify-form-attributes", "enable-desktops/software-requirements", "glossary", "how-tos/analytics/google-analytics", "how-tos/app-development", "how-tos/app-development/app-sharing", "how-tos/app-development/enabling-development-mode", "how-tos/app-development/interactive", "how-tos/app-development/interactive/additional-info", "how-tos/app-development/interactive/advanced", "how-tos/app-development/interactive/conn-params", "how-tos/app-development/interactive/dynamic-form-widgets", "how-tos/app-development/interactive/form", "how-tos/app-development/interactive/form-widgets", "how-tos/app-development/interactive/manifest", "how-tos/app-development/interactive/saved-settings", "how-tos/app-development/interactive/setup", "how-tos/app-development/interactive/setup/enable-reverse-proxy", "how-tos/app-development/interactive/setup/modify-cluster-configuration", "how-tos/app-development/interactive/setup/software-requirements", "how-tos/app-development/interactive/sub-apps", "how-tos/app-development/interactive/submit", "how-tos/app-development/interactive/template", "how-tos/app-development/interactive/view", "how-tos/debug", "how-tos/debug/debug-apache", "how-tos/debug/debug-interactive-apps", "how-tos/monitoring/logging", "how-tos/monitoring/prometheus", "index", "install-ihpc-apps", "installation", "installation/add-cluster-config", "installation/add-ssl", "installation/cluster-config-schema", "installation/install-software", "installation/modify-system-security", "installation/resource-manager/advanced-configs", "installation/resource-manager/bin-override-example", "installation/resource-manager/ccq", "installation/resource-manager/kubernetes", "installation/resource-manager/linuxhost", "installation/resource-manager/lsf", "installation/resource-manager/pbspro", "installation/resource-manager/sge", "installation/resource-manager/slurm", "installation/resource-manager/systemd", "installation/resource-manager/test", "installation/resource-manager/torque", "reference", "reference/commands/nginx-stage/commands/app", "reference/commands/nginx-stage/commands/app-clean", "reference/commands/nginx-stage/commands/app-list", "reference/commands/nginx-stage/commands/app-reset", "reference/commands/nginx-stage/commands/nginx", "reference/commands/nginx-stage/commands/nginx-clean", "reference/commands/nginx-stage/commands/nginx-list", "reference/commands/nginx-stage/commands/nginx-show", "reference/commands/nginx-stage/commands/pun", "reference/commands/nginx-stage/usage", "reference/commands/ood-portal-generator", "reference/files/nginx-stage-yml", "reference/files/ondemand-d-ymls", "reference/files/ood-portal-yml", "reference/files/submit-yml-erb", "reference/files/submit-yml/basic-bc-options", "reference/files/submit-yml/script", "reference/files/submit-yml/vnc-bc-options", "reference/files/submit-yml/vnc-container-bc-options", "reference/pun-environment", "release-notes", "release-notes/v1.0-release-notes", "release-notes/v1.1-release-notes", "release-notes/v1.2-release-notes", "release-notes/v1.3-release-notes", "release-notes/v1.4-release-notes", "release-notes/v1.5-release-notes", "release-notes/v1.6-release-notes", "release-notes/v1.7-release-notes", "release-notes/v1.8-release-notes", "release-notes/v2.0-release-notes", "release-notes/v3.0-release-notes", "release-notes/v3.1-release-notes", "release-notes/v4.0-release-notes", "requirements", "security", "tutorials/tutorials-dashboard-apps", "tutorials/tutorials-dashboard-apps/dashboard", "tutorials/tutorials-dashboard-apps/shell-app", "tutorials/tutorials-interactive-apps", "tutorials/tutorials-interactive-apps/add-custom-queue", "tutorials/tutorials-interactive-apps/add-custom-queue/global-static-list", "tutorials/tutorials-interactive-apps/add-custom-queue/local-static-list", "tutorials/tutorials-interactive-apps/add-jupyter", "tutorials/tutorials-interactive-apps/add-jupyter/copy-app", "tutorials/tutorials-interactive-apps/add-jupyter/customize-attributes", "tutorials/tutorials-interactive-apps/add-jupyter/deploy", "tutorials/tutorials-interactive-apps/add-jupyter/modify-submit-parameters", "tutorials/tutorials-interactive-apps/add-jupyter/software-requirements", "tutorials/tutorials-interactive-apps/add-matlab", "tutorials/tutorials-interactive-apps/add-matlab/copy-app", "tutorials/tutorials-interactive-apps/add-matlab/deploy", "tutorials/tutorials-interactive-apps/add-matlab/edit-form-js", "tutorials/tutorials-interactive-apps/add-matlab/edit-form-yml", "tutorials/tutorials-interactive-apps/add-matlab/edit-script-sh", "tutorials/tutorials-interactive-apps/add-matlab/edit-submit-yml", "tutorials/tutorials-interactive-apps/add-matlab/known-issues", "tutorials/tutorials-interactive-apps/add-matlab/software-requirements", "tutorials/tutorials-interactive-apps/add-rstudio", "tutorials/tutorials-interactive-apps/add-rstudio/copy-app", "tutorials/tutorials-interactive-apps/add-rstudio/customize-attributes", "tutorials/tutorials-interactive-apps/add-rstudio/deploy", "tutorials/tutorials-interactive-apps/add-rstudio/setup-singularity", "tutorials/tutorials-interactive-apps/add-rstudio/software-requirements", "tutorials/tutorials-interactive-apps/k8s-jupyter", "tutorials/tutorials-interactive-apps/k8s-like-hpc-jupyter", "tutorials/tutorials-interactive-apps/troubleshooting", "tutorials/tutorials-passenger-apps", "tutorials/tutorials-passenger-apps/nodejs-starter-app", "tutorials/tutorials-passenger-apps/python-starter-app", "tutorials/tutorials-passenger-apps/ruby-starter-app", "version-policy"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["architecture.rst", "authentication.rst", "authentication/adfs-with-auth-mellon.rst", "authentication/cas.rst", "authentication/dex.rst", "authentication/duo-2fa-with-keycloak.rst", "authentication/insecure.rst", "authentication/nsf-access.rst", "authentication/oidc.rst", "authentication/overview.rst", "authentication/overview/configure-authentication.rst", "authentication/overview/configure-logout.rst", "authentication/overview/map-user.rst", "authentication/shibboleth.rst", "authentication/tutorial-oidc-keycloak-rhel7.rst", "authentication/tutorial-oidc-keycloak-rhel7/add-custom-theme.rst", "authentication/tutorial-oidc-keycloak-rhel7/configure-cilogon.rst", "authentication/tutorial-oidc-keycloak-rhel7/configure-keycloak-webui.rst", "authentication/tutorial-oidc-keycloak-rhel7/install-keycloak.rst", "authentication/tutorial-oidc-keycloak-rhel7/install_mod_auth_openidc.rst", "customizations.rst", "enable-desktops.rst", "enable-desktops/add-cluster.rst", "enable-desktops/custom-job-submission.rst", "enable-desktops/modify-form-attributes.rst", "enable-desktops/software-requirements.rst", "glossary.rst", "how-tos/analytics/google-analytics.rst", "how-tos/app-development.rst", "how-tos/app-development/app-sharing.rst", "how-tos/app-development/enabling-development-mode.rst", "how-tos/app-development/interactive.rst", "how-tos/app-development/interactive/additional-info.rst", "how-tos/app-development/interactive/advanced.rst", "how-tos/app-development/interactive/conn-params.rst", "how-tos/app-development/interactive/dynamic-form-widgets.rst", "how-tos/app-development/interactive/form.rst", "how-tos/app-development/interactive/form-widgets.rst", "how-tos/app-development/interactive/manifest.rst", "how-tos/app-development/interactive/saved-settings.rst", "how-tos/app-development/interactive/setup.rst", "how-tos/app-development/interactive/setup/enable-reverse-proxy.rst", "how-tos/app-development/interactive/setup/modify-cluster-configuration.rst", "how-tos/app-development/interactive/setup/software-requirements.rst", "how-tos/app-development/interactive/sub-apps.rst", "how-tos/app-development/interactive/submit.rst", "how-tos/app-development/interactive/template.rst", "how-tos/app-development/interactive/view.rst", "how-tos/debug.rst", "how-tos/debug/debug-apache.rst", "how-tos/debug/debug-interactive-apps.rst", "how-tos/monitoring/logging.rst", "how-tos/monitoring/prometheus.rst", "index.rst", "install-ihpc-apps.rst", "installation.rst", "installation/add-cluster-config.rst", "installation/add-ssl.rst", "installation/cluster-config-schema.rst", "installation/install-software.rst", "installation/modify-system-security.rst", "installation/resource-manager/advanced-configs.rst", "installation/resource-manager/bin-override-example.rst", "installation/resource-manager/ccq.rst", "installation/resource-manager/kubernetes.rst", "installation/resource-manager/linuxhost.rst", "installation/resource-manager/lsf.rst", "installation/resource-manager/pbspro.rst", "installation/resource-manager/sge.rst", "installation/resource-manager/slurm.rst", "installation/resource-manager/systemd.rst", "installation/resource-manager/test.rst", "installation/resource-manager/torque.rst", "reference.rst", "reference/commands/nginx-stage/commands/app.rst", "reference/commands/nginx-stage/commands/app-clean.rst", "reference/commands/nginx-stage/commands/app-list.rst", "reference/commands/nginx-stage/commands/app-reset.rst", "reference/commands/nginx-stage/commands/nginx.rst", "reference/commands/nginx-stage/commands/nginx-clean.rst", "reference/commands/nginx-stage/commands/nginx-list.rst", "reference/commands/nginx-stage/commands/nginx-show.rst", "reference/commands/nginx-stage/commands/pun.rst", "reference/commands/nginx-stage/usage.rst", "reference/commands/ood-portal-generator.rst", "reference/files/nginx-stage-yml.rst", "reference/files/ondemand-d-ymls.rst", "reference/files/ood-portal-yml.rst", "reference/files/submit-yml-erb.rst", "reference/files/submit-yml/basic-bc-options.rst", "reference/files/submit-yml/script.rst", "reference/files/submit-yml/vnc-bc-options.rst", "reference/files/submit-yml/vnc-container-bc-options.rst", "reference/pun-environment.rst", "release-notes.rst", "release-notes/v1.0-release-notes.rst", "release-notes/v1.1-release-notes.rst", "release-notes/v1.2-release-notes.rst", "release-notes/v1.3-release-notes.rst", "release-notes/v1.4-release-notes.rst", "release-notes/v1.5-release-notes.rst", "release-notes/v1.6-release-notes.rst", "release-notes/v1.7-release-notes.rst", "release-notes/v1.8-release-notes.rst", "release-notes/v2.0-release-notes.rst", "release-notes/v3.0-release-notes.rst", "release-notes/v3.1-release-notes.rst", "release-notes/v4.0-release-notes.rst", "requirements.rst", "security.rst", "tutorials/tutorials-dashboard-apps.rst", "tutorials/tutorials-dashboard-apps/dashboard.rst", "tutorials/tutorials-dashboard-apps/shell-app.rst", "tutorials/tutorials-interactive-apps.rst", "tutorials/tutorials-interactive-apps/add-custom-queue.rst", "tutorials/tutorials-interactive-apps/add-custom-queue/global-static-list.rst", "tutorials/tutorials-interactive-apps/add-custom-queue/local-static-list.rst", "tutorials/tutorials-interactive-apps/add-jupyter.rst", "tutorials/tutorials-interactive-apps/add-jupyter/copy-app.rst", "tutorials/tutorials-interactive-apps/add-jupyter/customize-attributes.rst", "tutorials/tutorials-interactive-apps/add-jupyter/deploy.rst", "tutorials/tutorials-interactive-apps/add-jupyter/modify-submit-parameters.rst", "tutorials/tutorials-interactive-apps/add-jupyter/software-requirements.rst", "tutorials/tutorials-interactive-apps/add-matlab.rst", "tutorials/tutorials-interactive-apps/add-matlab/copy-app.rst", "tutorials/tutorials-interactive-apps/add-matlab/deploy.rst", "tutorials/tutorials-interactive-apps/add-matlab/edit-form-js.rst", "tutorials/tutorials-interactive-apps/add-matlab/edit-form-yml.rst", "tutorials/tutorials-interactive-apps/add-matlab/edit-script-sh.rst", "tutorials/tutorials-interactive-apps/add-matlab/edit-submit-yml.rst", "tutorials/tutorials-interactive-apps/add-matlab/known-issues.rst", "tutorials/tutorials-interactive-apps/add-matlab/software-requirements.rst", "tutorials/tutorials-interactive-apps/add-rstudio.rst", "tutorials/tutorials-interactive-apps/add-rstudio/copy-app.rst", "tutorials/tutorials-interactive-apps/add-rstudio/customize-attributes.rst", "tutorials/tutorials-interactive-apps/add-rstudio/deploy.rst", "tutorials/tutorials-interactive-apps/add-rstudio/setup-singularity.rst", "tutorials/tutorials-interactive-apps/add-rstudio/software-requirements.rst", "tutorials/tutorials-interactive-apps/k8s-jupyter.rst", "tutorials/tutorials-interactive-apps/k8s-like-hpc-jupyter.rst", "tutorials/tutorials-interactive-apps/troubleshooting.rst", "tutorials/tutorials-passenger-apps.rst", "tutorials/tutorials-passenger-apps/nodejs-starter-app.rst", "tutorials/tutorials-passenger-apps/python-starter-app.rst", "tutorials/tutorials-passenger-apps/ruby-starter-app.rst", "version-policy.rst"], "indexentries": {"--app-init-url": [[82, "cmdoption-nginx_stage-pun-a", false]], "--config": [[84, "cmdoption-ood-portal-generator-c", false]], "--detailed-exitcodes": [[84, "cmdoption-ood-portal-generator-detailed-exitcodes", false]], "--file": [[12, "cmdoption-ood_auth_map.mapfile-f", false]], "--force": [[79, "cmdoption-nginx_stage-nginx_clean-f", false], [84, "cmdoption-ood-portal-generator-f", false]], "--rpm": [[84, "cmdoption-ood-portal-generator-r", false]], "--signal": [[78, "cmdoption-nginx_stage-nginx-s", false]], "--skip-nginx": [[74, "cmdoption-nginx_stage-app-N", false], [78, "cmdoption-nginx_stage-nginx-N", false], [79, "cmdoption-nginx_stage-nginx_clean-N", false], [82, "cmdoption-nginx_stage-pun-N", false]], "--sub-request": [[74, "cmdoption-nginx_stage-app-r", false]], "--sub-uri": [[74, "cmdoption-nginx_stage-app-i", false], [77, "cmdoption-nginx_stage-app_reset-i", false]], "--template": [[84, "cmdoption-ood-portal-generator-t", false]], "--user": [[74, "cmdoption-nginx_stage-app-u", false], [78, "cmdoption-nginx_stage-nginx-u", false], [81, "cmdoption-nginx_stage-nginx_show-u", false], [82, "cmdoption-nginx_stage-pun-u", false]], "-a": [[82, "cmdoption-nginx_stage-pun-a", false]], "-c": [[84, "cmdoption-ood-portal-generator-c", false]], "-f": [[12, "cmdoption-ood_auth_map.mapfile-f", false], [79, "cmdoption-nginx_stage-nginx_clean-f", false], [84, "cmdoption-ood-portal-generator-f", false]], "-i": [[74, "cmdoption-nginx_stage-app-i", false], [77, "cmdoption-nginx_stage-app_reset-i", false]], "-n": [[74, "cmdoption-nginx_stage-app-N", false], [78, "cmdoption-nginx_stage-nginx-N", false], [79, "cmdoption-nginx_stage-nginx_clean-N", false], [82, "cmdoption-nginx_stage-pun-N", false]], "-r": [[74, "cmdoption-nginx_stage-app-r", false], [84, "cmdoption-ood-portal-generator-r", false]], "-s": [[78, "cmdoption-nginx_stage-nginx-s", false]], "-t": [[84, "cmdoption-ood-portal-generator-t", false]], "-u": [[74, "cmdoption-nginx_stage-app-u", false], [78, "cmdoption-nginx_stage-nginx-u", false], [81, "cmdoption-nginx_stage-nginx_show-u", false], [82, "cmdoption-nginx_stage-pun-u", false]], "nginx_stage-app command line option": [[74, "cmdoption-nginx_stage-app-N", false], [74, "cmdoption-nginx_stage-app-i", false], [74, "cmdoption-nginx_stage-app-r", false], [74, "cmdoption-nginx_stage-app-u", false]], "nginx_stage-app_reset command line option": [[77, "cmdoption-nginx_stage-app_reset-i", false]], "nginx_stage-nginx command line option": [[78, "cmdoption-nginx_stage-nginx-N", false], [78, "cmdoption-nginx_stage-nginx-s", false], [78, "cmdoption-nginx_stage-nginx-u", false]], "nginx_stage-nginx_clean command line option": [[79, "cmdoption-nginx_stage-nginx_clean-N", false], [79, "cmdoption-nginx_stage-nginx_clean-f", false]], "nginx_stage-nginx_show command line option": [[81, "cmdoption-nginx_stage-nginx_show-u", false]], "nginx_stage-pun command line option": [[82, "cmdoption-nginx_stage-pun-N", false], [82, "cmdoption-nginx_stage-pun-a", false], [82, "cmdoption-nginx_stage-pun-u", false]], "ood-portal-generator command line option": [[84, "cmdoption-ood-portal-generator-c", false], [84, "cmdoption-ood-portal-generator-detailed-exitcodes", false], [84, "cmdoption-ood-portal-generator-f", false], [84, "cmdoption-ood-portal-generator-r", false], [84, "cmdoption-ood-portal-generator-t", false]], "ood_auth_map.mapfile command line option": [[12, "cmdoption-ood_auth_map.mapfile-f", false]]}, "objects": {"": [[47, 0, 1, "get--node-(host)-(port)(path)", "/node/(host)/(port)(path)"], [47, 0, 1, "get--rnode-(host)-(port)(path)", "/rnode/(host)/(port)(path)"]], "nginx_stage-app": [[74, 1, 1, "cmdoption-nginx_stage-app-N", "--skip-nginx"], [74, 1, 1, "cmdoption-nginx_stage-app-r", "--sub-request"], [74, 1, 1, "cmdoption-nginx_stage-app-i", "--sub-uri"], [74, 1, 1, "cmdoption-nginx_stage-app-u", "--user"], [74, 1, 1, "cmdoption-nginx_stage-app-N", "-N"], [74, 1, 1, "cmdoption-nginx_stage-app-i", "-i"], [74, 1, 1, "cmdoption-nginx_stage-app-r", "-r"], [74, 1, 1, "cmdoption-nginx_stage-app-u", "-u"]], "nginx_stage-app_reset": [[77, 1, 1, "cmdoption-nginx_stage-app_reset-i", "--sub-uri"], [77, 1, 1, "cmdoption-nginx_stage-app_reset-i", "-i"]], "nginx_stage-nginx": [[78, 1, 1, "cmdoption-nginx_stage-nginx-s", "--signal"], [78, 1, 1, "cmdoption-nginx_stage-nginx-N", "--skip-nginx"], [78, 1, 1, "cmdoption-nginx_stage-nginx-u", "--user"], [78, 1, 1, "cmdoption-nginx_stage-nginx-N", "-N"], [78, 1, 1, "cmdoption-nginx_stage-nginx-s", "-s"], [78, 1, 1, "cmdoption-nginx_stage-nginx-u", "-u"]], "nginx_stage-nginx_clean": [[79, 1, 1, "cmdoption-nginx_stage-nginx_clean-f", "--force"], [79, 1, 1, "cmdoption-nginx_stage-nginx_clean-N", "--skip-nginx"], [79, 1, 1, "cmdoption-nginx_stage-nginx_clean-N", "-N"], [79, 1, 1, "cmdoption-nginx_stage-nginx_clean-f", "-f"]], "nginx_stage-nginx_show": [[81, 1, 1, "cmdoption-nginx_stage-nginx_show-u", "--user"], [81, 1, 1, "cmdoption-nginx_stage-nginx_show-u", "-u"]], "nginx_stage-pun": [[82, 1, 1, "cmdoption-nginx_stage-pun-a", "--app-init-url"], [82, 1, 1, "cmdoption-nginx_stage-pun-N", "--skip-nginx"], [82, 1, 1, "cmdoption-nginx_stage-pun-u", "--user"], [82, 1, 1, "cmdoption-nginx_stage-pun-N", "-N"], [82, 1, 1, "cmdoption-nginx_stage-pun-a", "-a"], [82, 1, 1, "cmdoption-nginx_stage-pun-u", "-u"]], "ood-portal-generator": [[84, 1, 1, "cmdoption-ood-portal-generator-c", "--config"], [84, 1, 1, "cmdoption-ood-portal-generator-detailed-exitcodes", "--detailed-exitcodes"], [84, 1, 1, "cmdoption-ood-portal-generator-f", "--force"], [84, 1, 1, "cmdoption-ood-portal-generator-r", "--rpm"], [84, 1, 1, "cmdoption-ood-portal-generator-t", "--template"], [84, 1, 1, "cmdoption-ood-portal-generator-c", "-c"], [84, 1, 1, "cmdoption-ood-portal-generator-f", "-f"], [84, 1, 1, "cmdoption-ood-portal-generator-r", "-r"], [84, 1, 1, "cmdoption-ood-portal-generator-t", "-t"]], "ood_auth_map.mapfile": [[12, 1, 1, "cmdoption-ood_auth_map.mapfile-f", "--file"], [12, 1, 1, "cmdoption-ood_auth_map.mapfile-f", "-f"]]}, "objnames": {"0": ["http", "get", "HTTP get"], "1": ["std", "cmdoption", "program option"]}, "objtypes": {"0": "http:get", "1": "std:cmdoption"}, "terms": {"": [0, 2, 4, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 27, 28, 29, 30, 32, 34, 35, 36, 38, 39, 41, 42, 44, 45, 46, 47, 49, 51, 53, 54, 55, 57, 58, 59, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 78, 81, 85, 86, 87, 88, 89, 90, 91, 92, 93, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 118, 119, 126, 127, 128, 131, 134, 136, 138, 139, 140, 142, 143, 144, 145], "0": [2, 4, 5, 12, 14, 15, 16, 18, 20, 23, 24, 35, 36, 37, 43, 49, 52, 53, 58, 59, 61, 62, 64, 65, 79, 84, 86, 87, 92, 94, 97, 98, 99, 100, 101, 102, 106, 108, 121, 122, 127, 128, 129, 131, 134, 137, 138, 139, 143, 144, 145], "00": [2, 20, 71, 90, 98], "000": 27, "0000ff": [20, 86], "007fff": 86, "00am": 20, "00pm": 20, "01": [12, 65, 71], "02": [12, 65], "03": [12, 29, 65], "04": [55, 59, 65, 71, 106, 107, 108], "0400": 71, "0440": 52, "06": 12, "0600": [4, 8, 64], "0644": [4, 5, 52], "0664": 71, "0755": [4, 52], "077": [46, 128], "089": 12, "09": 18, "1": [4, 7, 10, 12, 13, 15, 17, 18, 20, 23, 24, 25, 27, 29, 30, 33, 34, 35, 36, 37, 41, 43, 44, 45, 52, 53, 55, 58, 61, 62, 64, 70, 74, 81, 84, 86, 87, 88, 89, 90, 92, 94, 98, 99, 100, 101, 102, 103, 104, 105, 107, 108, 109, 112, 116, 118, 121, 122, 124, 127, 128, 129, 131, 133, 134, 137, 139, 140, 145], "10": [7, 8, 12, 20, 27, 36, 37, 52, 71, 85, 86, 87, 91, 92, 99, 100, 101, 102, 103, 105, 107], "100": [12, 108], "1000": [20, 65, 85, 102], "10000": 86, "1000000": 20, "1000m": 20, "10060": 108, "1024": 101, "10485760": 20, "10737418240": 20, "10737420000": [20, 85], "10820525": 71, "10mb": 20, "11": [12, 36, 100, 101, 106, 108], "1111": 19, "1111111": 19, "111111111111": 19, "1111111111111": 19, "111998": 18, "12": [20, 46, 55, 59, 99, 104, 107, 108], "1234": 45, "1240x900": 91, "127": [4, 64], "13": [29, 98, 128], "14": [12, 29, 98, 99, 102, 105, 106], "140070995539712": 12, "1426": 105, "149352": 12, "15": [12, 20, 29, 36, 71, 86, 97, 98, 101], "150": 86, "150mb": 108, "150px": 86, "1525361263": 20, "156": 68, "157": 29, "16": [4, 18, 29, 35, 46, 97, 108, 127, 128], "160": 127, "162m": 102, "168": [20, 87], "169": 29, "17": [37, 97, 102, 104, 106], "172m": 102, "1766": 105, "1776": 105, "17m": 102, "18": [29, 96, 97, 98, 104, 106, 112], "181m": 102, "1854": 105, "19": [12, 18, 29, 95], "191": 101, "192": [20, 87], "1920x1080": 91, "195": 65, "1992": 105, "1_all": 104, "2": [1, 2, 7, 12, 18, 20, 21, 25, 27, 33, 35, 36, 37, 43, 44, 49, 53, 55, 58, 61, 62, 64, 70, 86, 87, 92, 94, 100, 101, 102, 104, 105, 106, 107, 108, 109, 116, 121, 122, 128, 129, 131, 134, 137, 139, 145], "20": [12, 18, 20, 29, 52, 55, 58, 59, 87, 95, 104, 105, 106, 107, 108, 128, 142], "200": [27, 138, 143], "2000": [20, 46, 89], "2016": 108, "2017": [18, 20], "2018": [20, 71, 98, 101], "2020": [12, 90], "2022": 12, "2023": [55, 59, 107, 108], "2048": 66, "2091": 105, "2097152": 20, "20g": 20, "20gb": 108, "21": [12, 20, 37, 64], "21474840000": 85, "2194": 105, "22": [20, 59, 102, 106, 107, 108, 142], "2200": 139, "2222": 20, "23": [98, 107], "2323": 105, "2327": 105, "24": [20, 55, 58, 59, 64, 71, 87, 106, 107, 108], "24214": 81, "245": 29, "24h": 4, "24t10": 71, "25": [18, 49, 87], "255": 49, "256": 49, "256m": 102, "26": [29, 98, 99, 101, 107], "28": [23, 35, 37, 121, 127, 129, 139], "285": 101, "28800": [7, 8, 19, 65, 87], "29": [45, 94, 145], "291": 101, "295": 99, "2d": 130, "2f": [7, 8, 11, 12, 13, 19], "2f58606": 12, "2faccess": 7, "2fbatch": [121, 129], "2fbatchconnect": [121, 129], "2fcilogon": 12, "2fidp": [7, 11, 13], "2flogout": [11, 13], "2fondemand": [8, 11, 19], "2fprofil": [11, 13], "2fservera": 12, "2ftemplat": [121, 129], "2fuser": 12, "2fwww": 19, "2h": 64, "2jhfyh7": 20, "2m": 52, "2mb": 20, "2u5": 99, "3": [15, 20, 25, 27, 28, 29, 36, 37, 47, 53, 55, 58, 65, 84, 86, 92, 94, 96, 97, 101, 102, 104, 105, 106, 107, 122, 128, 134, 137, 138, 139, 144, 145], "30": [86, 91, 99, 100], "300": 85, "3000": 142, "30000": 86, "300000": 20, "3005": 89, "31": [100, 101], "31m": 102, "32": [46, 49, 64, 65, 71, 89, 91, 105], "3333": 138, "3371": 107, "3424": 107, "35": 101, "3544": 107, "3549": 107, "36": [12, 106, 128], "3600": [45, 46, 89, 90, 91, 138, 139], "3600000": 20, "3619": 107, "364": 71, "3677": 107, "37": [12, 106], "373897": 130, "374365283": 103, "3776": 107, "3795": 107, "381324": 130, "3866": 107, "39": 12, "3973": 107, "3a": [7, 8, 11, 12, 13, 19], "3d": 127, "3rd": 58, "4": [1, 12, 18, 20, 25, 28, 33, 35, 36, 52, 53, 55, 57, 62, 79, 84, 94, 96, 97, 98, 101, 102, 103, 104, 105, 107, 108, 111, 118, 122, 124, 127, 128, 131, 133, 134, 138], "40": [19, 35, 36, 102], "4000": 139, "40000": 89, "400000": 20, "401": 20, "40172": 12, "4096": 29, "40cilogon": 12, "40core": 139, "40harvard": 12, "40osc": 12, "41": 107, "41fa": 8, "42": 62, "424725": 130, "426": 99, "443": [18, 19, 60, 87], "4444444444444444444444444444444444444444": 19, "45": 12, "47": 18, "48": [99, 127], "48core": 139, "49": 18, "4gi": 138, "4h": 64, "5": [20, 28, 29, 36, 45, 53, 64, 66, 71, 87, 92, 94, 97, 98, 103, 104, 105, 108, 118, 124, 131, 133, 134, 137], "50": 49, "500": [20, 85], "5000": 47, "5000000": 20, "500mi": 138, "5014": 30, "503": [20, 82], "50gb": 108, "5242880": 20, "53565a": 85, "5368709120": 20, "5432": 41, "55": 99, "5554": [4, 87], "5556": [4, 12], "5557": 4, "57": 106, "57600": 87, "587": 20, "59": 101, "592m": 102, "5b4d93636e0968be920cf409252292d674cc951d": 62, "5mb": 20, "5tb": 127, "6": [20, 28, 46, 52, 53, 58, 62, 65, 86, 94, 97, 98, 100, 104, 105, 106, 107, 122, 131, 137], "60": [108, 128], "600": [18, 108], "62": 101, "6291456": 20, "636": [4, 17], "63m": 102, "64": 101, "640": [10, 19], "644": 18, "6443": 64, "64g": 65, "64gb": [65, 108], "65": [20, 102, 106], "65535": [46, 89], "65kb": 20, "688x": 66, "68m": 102, "6h": 4, "6mb": 20, "7": [20, 29, 53, 84, 94, 98, 99, 100, 101, 104, 105, 134, 136, 138], "700": [18, 20, 65, 99], "7100": 91, "716de4ac": 86, "7200": 65, "73s0qfxc5e_s": 65, "75": 49, "750": [20, 29], "755": 29, "8": [8, 18, 19, 20, 24, 35, 36, 43, 49, 52, 53, 55, 59, 62, 64, 74, 84, 89, 92, 94, 95, 96, 98, 99, 100, 102, 105, 106, 107, 108, 112, 130, 139], "80": [20, 41, 60, 87], "8080": [14, 18, 47, 87, 138, 139], "86400": 20, "87f7": 8, "88a4": 8, "8h": 64, "9": [5, 14, 15, 18, 20, 49, 52, 59, 62, 64, 86, 95, 96, 99, 100, 101, 106, 107, 108, 138], "900": 85, "9090": 64, "9301": 52, "95": 20, "955855": 12, "96": [91, 105], "97856": 29, "9989": 108, "99m": 102, "9f1fe759": 86, "9h": 64, "A": [0, 8, 13, 16, 20, 23, 26, 27, 31, 36, 37, 38, 41, 45, 46, 47, 53, 56, 57, 63, 64, 65, 66, 67, 68, 69, 71, 72, 85, 86, 87, 89, 92, 97, 98, 99, 109, 118, 121, 124, 129, 133, 138, 140, 141], "And": [24, 27, 41, 107, 108, 112], "As": [20, 24, 27, 29, 36, 41, 48, 49, 59, 64, 65, 98, 99, 100, 101, 102, 103, 104, 105, 106, 114, 115, 116, 140, 142, 143, 144], "At": [14, 20, 29, 61, 64, 83, 84, 101, 105, 106, 108, 111, 112, 115, 127, 141, 143], "Be": [12, 19, 59, 115, 119, 126, 127, 134], "Being": 64, "But": [24, 35, 36, 45, 46, 111, 121, 129], "By": [4, 20, 29, 35, 36, 38, 47, 52, 65, 86, 104, 105, 109, 128, 136, 140], "For": [2, 4, 5, 10, 14, 16, 18, 20, 22, 23, 24, 27, 29, 30, 33, 36, 37, 43, 45, 46, 47, 51, 52, 54, 56, 57, 58, 62, 64, 65, 67, 71, 86, 87, 90, 98, 99, 100, 101, 102, 104, 105, 107, 109, 115, 116, 118, 121, 124, 129, 133, 139, 140, 142, 144, 145], "IT": [105, 107], "If": [1, 4, 7, 10, 11, 12, 14, 17, 18, 20, 22, 23, 24, 27, 29, 30, 33, 35, 36, 39, 41, 42, 45, 46, 47, 49, 50, 52, 53, 54, 55, 57, 58, 59, 60, 63, 64, 65, 68, 69, 71, 78, 82, 85, 86, 87, 88, 90, 93, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 111, 112, 118, 121, 123, 124, 129, 133, 134, 138, 139, 145], "In": [0, 10, 12, 13, 14, 16, 18, 20, 23, 24, 29, 34, 35, 36, 41, 42, 44, 45, 46, 47, 51, 54, 56, 57, 58, 62, 64, 65, 82, 85, 86, 98, 101, 102, 103, 104, 105, 106, 107, 118, 120, 121, 124, 125, 127, 129, 130, 133, 134, 135, 138, 139, 142, 143], "It": [6, 8, 12, 13, 18, 20, 23, 32, 35, 36, 37, 39, 42, 45, 46, 47, 49, 51, 55, 56, 57, 58, 59, 60, 64, 65, 66, 71, 83, 85, 86, 87, 88, 89, 91, 98, 102, 105, 106, 107, 109, 112, 115, 119, 121, 128, 129, 134, 138, 139, 143], "NOT": [20, 25, 43, 46, 47, 122, 131, 137], "No": [1, 36, 62, 85, 86, 87, 96, 101, 103, 107, 108, 111, 112], "Not": [20, 36, 85, 90], "ON": [16, 17], "OR": [44, 87, 104], "Of": 104, "On": [1, 7, 8, 13, 18, 20, 85, 87, 108], "One": [20, 51, 64, 105, 109, 138, 139], "Or": [18, 20, 28, 30, 45, 49, 98], "TO": 11, "TOS": 107, "That": [22, 24, 36, 42, 44, 56, 102, 134], "The": [0, 1, 2, 4, 7, 8, 10, 11, 12, 13, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28, 30, 32, 34, 35, 36, 37, 38, 41, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 66, 67, 68, 69, 71, 72, 74, 77, 78, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 143, 144, 145], "Then": [13, 17, 18, 19, 20, 30, 36, 42, 112, 118, 124, 133, 134], "There": [6, 20, 23, 24, 29, 44, 46, 47, 51, 63, 64, 65, 86, 87, 102, 104, 105, 121, 127, 129, 130, 134, 142, 143], "These": [5, 9, 14, 17, 20, 29, 36, 38, 45, 46, 47, 48, 51, 53, 56, 64, 65, 86, 87, 88, 89, 90, 91, 93, 98, 104, 105, 107, 109, 118, 121, 124, 129, 133, 139], "To": [4, 11, 12, 20, 23, 24, 27, 29, 30, 35, 36, 45, 47, 51, 58, 63, 64, 65, 68, 74, 75, 76, 77, 78, 79, 80, 81, 82, 86, 97, 98, 101, 102, 103, 105, 107, 108, 110, 142, 143], "ToS": 20, "WILL": 46, "Will": 58, "With": [20, 27, 35, 44, 62, 65, 111, 144], "_": [12, 35, 36], "__main__": [62, 143], "__name__": [62, 143], "_access": 51, "_any_": 20, "_blank": 34, "_email": 20, "_erb": 20, "_err_to_out": 62, "_error": 51, "_footer": 20, "_html": 20, "_in": 62, "_limits_": 138, "_my_cluster_widget": 20, "_my_new_widget": 20, "_native_vnc_": 47, "_requests_": 138, "_shibsession_": [10, 13], "_theme": 15, "_tmux": 65, "_your_": 7, "a12ff167dd13": 8, "aaba6ahbauquag": [20, 58], "aarch64": 108, "ab": 41, "ab001": 41, "ab100": 41, "abaqu": 54, "abc123": [44, 86], "abil": [16, 20, 58, 64, 65, 68, 98, 100, 105, 107], "abl": [4, 18, 19, 20, 21, 24, 29, 36, 44, 48, 51, 55, 56, 62, 64, 65, 86, 87, 95, 98, 101, 103, 104, 107, 111, 117, 123, 132, 136, 140, 142, 143], "abort": 101, "about": [20, 27, 30, 41, 49, 50, 51, 52, 53, 57, 58, 68, 101, 103, 115, 116, 119, 121, 129, 138, 139, 143], "abov": [7, 11, 13, 20, 22, 23, 24, 25, 27, 32, 36, 39, 41, 43, 46, 52, 64, 65, 69, 86, 87, 91, 93, 95, 96, 97, 102, 104, 105, 107, 111, 115, 116, 121, 122, 129, 131, 137, 138, 143], "abruptli": 119, "absolut": [20, 23, 47, 65, 87, 92, 134], "abus": 46, "ac": 65, "academ": 126, "acceler": [127, 131], "accept": [0, 4, 12, 17, 20, 27, 36, 60, 103], "access": [1, 4, 11, 12, 14, 16, 17, 18, 19, 23, 30, 32, 34, 45, 46, 47, 53, 55, 56, 58, 59, 60, 64, 71, 82, 85, 86, 87, 95, 96, 98, 99, 102, 103, 104, 105, 107, 109, 114, 118, 124, 133, 136, 142, 143, 144], "accesslog": 87, "accomid": 106, "accommod": 87, "accomplish": [10, 58, 115, 116, 134, 140], "accord": [108, 128], "accordingli": [7, 20, 49], "account": [16, 20, 23, 24, 27, 35, 36, 44, 45, 59, 64, 71, 86, 87, 89, 90, 101, 127, 138, 139], "accounting_id": [36, 45, 90, 138, 139], "achiev": 65, "acknowledg": [94, 109], "acl": [20, 105, 107], "across": [20, 36, 51, 86, 104, 107, 115], "act": [19, 29, 44, 60, 64], "action": [5, 20, 34, 47, 60, 104, 109], "activ": [1, 18, 20, 46, 52, 55, 56, 64, 79, 81, 86, 97, 99, 101, 103, 142, 143, 144], "activejob": [20, 29, 93, 98], "actual": [20, 22, 23, 36, 42, 44, 49, 57, 59, 61, 64, 65, 71, 86, 104, 108, 111, 121, 128, 129, 136, 144], "ad": [10, 15, 16, 18, 20, 28, 29, 31, 35, 36, 37, 45, 48, 53, 55, 56, 57, 59, 64, 85, 86, 87, 89, 93, 96, 98, 99, 100, 105, 107, 119, 121, 127, 129, 130, 134, 143], "adai": 107, "adapt": [20, 21, 24, 41, 42, 53, 58, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 95, 96, 99, 121, 127, 129, 139], "adaybujeda": 105, "add": [1, 2, 4, 5, 9, 14, 18, 21, 23, 29, 32, 34, 35, 36, 38, 41, 45, 53, 54, 55, 56, 58, 62, 64, 65, 68, 82, 86, 87, 93, 95, 98, 104, 105, 106, 107, 110, 113, 121, 129, 130, 141, 143, 144], "add_line_to_configmap": 138, "addit": [4, 7, 20, 28, 31, 35, 38, 82, 85, 86, 87, 91, 92, 102, 107, 134, 138, 139, 145], "addition": [20, 31, 35, 87, 107, 109], "addr": 4, "address": [12, 18, 20, 51, 64, 85, 87, 90, 102, 107], "adf": [1, 55], "adjust": [4, 17, 20, 52, 65, 86], "admin": [4, 15, 16, 17, 18, 19, 20, 29, 51, 64, 100, 110, 142, 143, 144], "administr": [2, 20, 36, 44, 47, 49, 51, 59, 69, 85, 94, 102, 103, 109, 142, 143, 144], "adopt": [53, 145], "advanc": [9, 23, 28, 31, 53, 56, 58, 143], "advantag": [23, 45, 47, 98, 100, 115, 116, 117, 123, 132], "advers": 130, "adversli": 85, "advertis": [29, 55], "advic": 20, "aebruno": 105, "affect": [20, 24, 60, 71, 85, 93, 96, 98, 104, 105, 107, 109], "after": [1, 12, 15, 18, 19, 20, 22, 24, 29, 31, 34, 35, 36, 55, 56, 58, 59, 62, 64, 65, 71, 86, 89, 90, 98, 100, 102, 103, 104, 105, 106, 107, 108, 111, 115, 116, 118, 119, 120, 124, 125, 133, 135, 139, 140, 142, 145], "after_initi": [20, 30, 105, 107], "again": [20, 32, 58, 65, 71, 119], "against": [12, 20, 23, 36, 104], "agarw": 105, "agent": 87, "aggreg": [20, 52], "agnost": [45, 115, 116], "ago": 18, "agre": 20, "agreement": [20, 107], "ahead": [98, 111, 119, 127, 134], "ahm": 107, "aid": 99, "aim": 110, "alert": [20, 98], "alia": [16, 20], "alias": [20, 87], "align": 107, "aliv": [19, 20, 49, 106], "all": [0, 4, 5, 7, 12, 18, 19, 20, 22, 23, 24, 27, 28, 29, 31, 35, 36, 41, 44, 45, 46, 47, 48, 51, 54, 55, 56, 58, 59, 60, 64, 65, 69, 71, 73, 75, 76, 77, 79, 80, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 100, 101, 102, 103, 105, 106, 107, 109, 111, 115, 118, 120, 121, 124, 125, 129, 133, 134, 135, 137, 138, 139, 141, 142, 143, 144, 145], "all_app": 20, "all_namespac": 64, "alllow": 106, "alloc": [7, 65, 127], "allow": [17, 22, 23, 24, 29, 35, 36, 37, 44, 45, 47, 50, 52, 53, 55, 58, 60, 64, 65, 72, 85, 86, 87, 99, 100, 101, 102, 103, 104, 105, 107, 109, 114, 115, 118, 121, 127, 129, 134], "allow_embed": 20, "allow_origin": 138, "allowlist": [53, 58, 87, 105, 107], "alma": [52, 59], "almalinux": [52, 55, 59, 106, 107, 108], "almost": 62, "alon": [20, 36, 134], "along": [32, 39, 87, 102, 105, 107], "alongsid": [99, 145], "alpha": 102, "alphabet": [53, 93], "alphanumer": [46, 85], "alreadi": [7, 17, 18, 20, 36, 42, 45, 46, 47, 51, 88, 103, 115, 116, 128, 138, 139], "also": [1, 12, 14, 20, 23, 24, 29, 30, 32, 35, 36, 37, 39, 45, 46, 47, 51, 52, 53, 54, 56, 59, 60, 62, 64, 65, 66, 79, 84, 85, 87, 88, 89, 98, 99, 100, 103, 104, 105, 107, 108, 111, 115, 119, 121, 127, 129, 138, 139, 145], "alter": [58, 62, 85], "altern": [7, 20, 58, 64, 69, 86, 130, 132], "although": [20, 29, 45, 121, 129], "altogeth": [20, 37, 105, 109], "alwai": [12, 20, 24, 29, 32, 36, 42, 64, 71, 87, 90, 98, 99, 100, 102, 103, 104, 106, 138], "am": 20, "amazon": [55, 59, 107, 108], "amd64": [52, 64], "among": 59, "amount": [36, 44, 90], "amzn2023": [59, 107], "an": [1, 2, 4, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 21, 23, 24, 26, 29, 32, 33, 34, 35, 36, 37, 38, 41, 42, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 98, 99, 100, 101, 103, 105, 106, 107, 111, 113, 115, 116, 117, 118, 121, 123, 124, 127, 128, 129, 130, 131, 133, 136, 137, 138, 139, 142, 143, 144, 145], "an0047": 29, "analysi": [101, 103], "analyt": [48, 53, 86, 87], "analyticsservic": 27, "analyticsv3": 27, "ancestor": [20, 87], "anchor": [20, 41, 57], "ani": [2, 10, 17, 19, 20, 22, 24, 27, 32, 35, 36, 41, 42, 44, 46, 47, 51, 61, 62, 64, 69, 71, 74, 75, 77, 83, 84, 85, 86, 87, 91, 92, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 111, 119, 121, 122, 126, 127, 128, 129, 131, 137, 138, 139, 141, 142, 143], "anni": [7, 12, 107], "annot": 64, "annouc": 107, "announc": [53, 86], "announcement_path": 86, "anonym": [13, 17, 20], "anoth": [29, 35, 41, 45, 64, 87, 90, 100, 105, 108, 115, 120, 125, 127, 135], "ansi": [54, 126], "ansibl": 56, "answer": 130, "anticip": 49, "any_file_nam": 20, "anymor": [24, 75, 104, 115, 116], "anyon": [20, 64, 85, 105, 145], "anyth": [20, 26, 35, 36, 41, 44, 65, 85, 89, 90, 106, 107, 115, 126, 140], "anywher": [20, 58, 98, 105, 145], "aoaklei": [7, 12], "apach": [0, 1, 2, 6, 8, 9, 11, 12, 13, 14, 20, 28, 40, 48, 51, 52, 53, 55, 59, 60, 82, 84, 85, 87, 98, 100, 103, 107, 108], "apache2": [49, 59, 106, 107], "apache_hom": 49, "api": [4, 18, 27, 31, 34, 58, 64, 89, 91, 126], "apivers": 64, "app": [16, 19, 21, 22, 23, 24, 25, 26, 27, 34, 35, 36, 38, 42, 43, 45, 46, 47, 48, 51, 52, 53, 56, 58, 60, 65, 71, 75, 76, 77, 82, 83, 85, 86, 87, 88, 89, 90, 93, 94, 97, 101, 106, 108, 110, 114, 115, 116, 119, 121, 122, 127, 129, 131, 134, 137], "app_clean": 83, "app_config_path": 85, "app_development_en": 30, "app_directori": [118, 124, 133], "app_init_url": 82, "app_jupyt": 37, "app_list": 83, "app_nam": [20, 74], "app_own": 74, "app_passenger_env": 85, "app_request_regex": 85, "app_request_uri": 85, "app_reset": 83, "app_root": [30, 85], "app_token": 85, "appear": [20, 24, 29, 30, 36, 47, 65, 82, 98, 99, 100, 102, 107, 118, 124, 130, 133, 134, 142, 143, 144], "append": [23, 24, 101, 121, 129], "append_path": 134, "appl": 71, "appli": [13, 19, 20, 36, 45, 60, 64, 65, 86, 88, 89, 91, 92, 104, 138], "applic": [0, 7, 18, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 42, 44, 45, 46, 47, 50, 53, 58, 61, 62, 64, 68, 71, 74, 75, 76, 77, 85, 86, 87, 88, 90, 93, 94, 102, 103, 104, 105, 106, 108, 109, 123, 128, 138, 139, 140, 141], "appnam": [29, 105, 142], "appreci": 1, "approach": [11, 20, 29, 64, 99, 131, 139], "appropri": [5, 15, 18, 19, 20, 27, 36, 41, 45, 46, 51, 57, 65, 93, 98, 122, 131, 134, 137, 142, 143], "approv": 16, "apprun": 136, "apps_path": 139, "apptain": 92, "apt": [2, 4, 57, 59, 104, 106, 107], "aptli": 46, "ar": [0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 17, 18, 19, 20, 23, 24, 25, 27, 28, 29, 30, 31, 33, 35, 36, 38, 42, 43, 44, 45, 46, 47, 49, 51, 53, 54, 57, 58, 59, 60, 62, 63, 64, 65, 69, 71, 78, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 104, 106, 108, 109, 111, 112, 114, 115, 116, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 131, 133, 134, 135, 136, 137, 138, 139, 140, 145], "arbirari": [37, 64], "arbitrari": [20, 30, 65, 99], "architectur": [53, 59, 95, 101, 106, 107, 109], "archiv": 52, "area": [17, 37, 109], "aren": 46, "arg": [20, 62, 64, 90, 139], "argument": [12, 20, 23, 45, 62, 68, 71, 85, 87, 90, 91, 92, 100, 101, 115, 116, 121, 129], "argv": 62, "arithmet": [24, 45, 46], "arizona": 53, "arm64": 108, "around": [20, 42, 51, 105, 107, 118, 124, 133], "arrai": [4, 23, 24, 36, 37, 45, 53, 85, 86, 87, 89, 90, 91, 103, 115, 116, 121, 129, 138], "arrang": 20, "arrow": 103, "ascii": 101, "ashton22305": 107, "asid": [121, 129], "ask": [30, 98], "aspect": [105, 139], "assert": 64, "asset": [20, 46, 85, 93, 128], "assign": [20, 109], "assist": [14, 107], "associ": [34, 58, 86, 98, 107, 142, 143, 144], "assum": [2, 22, 29, 30, 36, 38, 45, 46, 47, 57, 64, 86, 98, 103, 111, 114, 115, 138, 139], "atkin": 101, "attach": [20, 35, 61], "attack": 41, "attempt": [4, 6, 14, 20, 24, 71, 78, 87, 97, 101, 105, 111, 137], "attribut": [18, 20, 21, 22, 23, 31, 33, 34, 35, 44, 45, 46, 47, 53, 65, 88, 90, 98, 102, 103, 105, 113, 114, 117, 121, 123, 129, 132, 142], "audit": 60, "audit2allow": 60, "aug": 29, "auth": [1, 2, 6, 8, 10, 13, 16, 17, 18, 19, 20, 55, 64, 65, 87, 100, 102, 103, 108], "auth_openidc": [19, 87], "auth_shib": 13, "authent": [3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 16, 17, 18, 20, 46, 47, 51, 53, 55, 59, 60, 65, 87, 96, 100, 102, 104, 105, 109, 139], "authenticated_usernam": 12, "authentict": 106, "authnam": 19, "author": [2, 4, 13, 16, 19, 29, 57, 64], "authtyp": [2, 8, 10, 13, 19, 87], "authuserfil": 19, "auto": [24, 107, 134], "auto_account": [36, 90, 105], "auto_group": [36, 86, 105], "auto_groups_filt": 86, "auto_modul": 105, "auto_modules_": 36, "auto_modules_matlab": 36, "auto_modules_netcdf": 36, "auto_modules_netcdf_seri": 36, "auto_modules_r": 36, "auto_primary_group": [36, 105], "auto_qo": 36, "auto_queu": [36, 90], "auto_supplemental_group": 64, "autofil": 20, "autogroup": 36, "autom": [56, 99], "automat": [9, 31, 35, 39, 64, 86, 90, 107, 112], "avail": [1, 20, 23, 24, 27, 29, 35, 36, 45, 46, 47, 51, 52, 53, 54, 58, 62, 64, 65, 71, 77, 86, 90, 93, 98, 101, 102, 103, 105, 106, 107, 109, 115, 121, 127, 129, 131, 137, 139, 142, 145], "averag": 108, "avivkel": 107, "avoid": [20, 30, 46, 83, 87], "aw": 63, "awai": 24, "awar": [12, 20, 36, 58, 126, 131], "awesom": 47, "awk": [7, 41, 64, 89, 121, 129], "b": [16, 18, 111, 112], "b972c25d": 8, "back": [6, 16, 19, 24, 34, 35, 41, 46, 59, 60, 86, 89, 98, 101, 104, 105, 111, 119], "backend": [10, 13, 19, 47, 63, 87, 109, 115, 116], "background": [20, 45, 46, 86, 111, 113, 127, 128], "backport": 53, "backtrac": 65, "backup": [98, 100], "backward": [20, 104, 145], "bad": 62, "bak": 98, "balanc": 53, "balance1": 20, "balance2": 20, "balzana": 102, "banner": 111, "bar": [38, 53, 86, 87, 90, 102, 105, 107], "bart": 102, "barton": 101, "base": [5, 7, 11, 13, 15, 16, 18, 28, 29, 30, 31, 44, 49, 52, 58, 64, 65, 85, 86, 89, 91, 100, 104, 105, 106, 107, 126, 131, 136, 137, 139, 141, 142, 143, 144], "base64": 64, "base_path": 20, "base_slurm_arg": 139, "base_url": [34, 47, 138], "basearch": 136, "basedn": 4, "baselin": 64, "basenam": 20, "bash": [7, 12, 20, 41, 42, 45, 46, 58, 62, 64, 65, 68, 71, 86, 88, 89, 99, 104, 121, 129, 138, 139, 142, 143, 144], "bash_help": 89, "bash_profil": 42, "bash_rematch": 12, "bash_sourc": 143, "bashrc": [42, 68, 112], "basi": [20, 36, 103], "basic": [6, 19, 24, 41, 42, 45, 46, 58, 68, 88, 91, 92, 101, 103, 105, 108, 109, 115, 116, 121, 139, 141], "basicconfig": 62, "batch": [22, 23, 25, 29, 31, 35, 38, 42, 43, 46, 47, 51, 53, 54, 55, 58, 61, 64, 65, 67, 68, 71, 72, 86, 95, 97, 104, 105, 114, 116, 117, 118, 119, 121, 122, 123, 124, 127, 129, 131, 132, 133, 134, 137], "batch_connect": [20, 23, 38, 41, 42, 45, 46, 47, 51, 64, 65, 68, 86, 88, 89, 91, 92, 105, 115, 116, 118, 121, 124, 129, 133, 139], "batch_connect_session_context_my_cool_form_item": 107, "batchmod": 65, "baverhei": 102, "bc": [138, 139], "bc_account": [23, 24, 36, 44, 90, 115, 116, 119, 121, 127, 129, 134], "bc_clean_old_dir": 86, "bc_clean_old_dirs_dai": 86, "bc_desktop": [20, 22, 23, 24, 29, 44, 98, 99], "bc_desktop_example_kd": 29, "bc_dynamic_j": 86, "bc_email_on_start": [23, 24, 36, 90, 115, 116, 119, 121, 127, 129, 134], "bc_example_jupyt": [54, 118], "bc_example_rstudio": [133, 134, 135, 137], "bc_js_filepick": [106, 126], "bc_jupyter_dynpart": 54, "bc_my_center_matlab": [124, 125, 126, 127, 128, 129, 130], "bc_num_hour": [23, 24, 36, 46, 90, 115, 116, 119, 121, 127, 129, 134, 139], "bc_num_slot": [23, 24, 36, 115, 116, 119, 121, 127, 129, 134], "bc_osc_abaqu": 54, "bc_osc_ansys_workbench": 54, "bc_osc_codeserv": 54, "bc_osc_comsol": 54, "bc_osc_example_shini": 54, "bc_osc_jupyt": 54, "bc_osc_jupyter_spark": 54, "bc_osc_matlab": [54, 124, 128], "bc_osc_paraview": 54, "bc_osc_qgi": 54, "bc_osc_rstudio_serv": 54, "bc_osc_stata": 54, "bc_osc_vmd": 54, "bc_queue": [23, 24, 36, 45, 90, 114, 115, 116, 119, 121, 129, 134], "bc_relion": 54, "bc_saved_set": [39, 86], "bc_sessions_poll_delai": [86, 107], "bc_simple_auto_account": [36, 86], "bc_vnc_idl": 24, "bc_vnc_resolut": [24, 127], "bcff07264b318688c3f4272a9662b13477833373": 128, "becaus": [7, 11, 18, 20, 22, 24, 29, 35, 36, 42, 45, 56, 58, 63, 64, 65, 68, 69, 71, 86, 87, 89, 90, 100, 102, 103, 104, 105, 113, 127, 136, 138, 143], "becom": [10, 20, 99, 101, 104], "been": [2, 14, 16, 20, 34, 35, 36, 42, 45, 58, 65, 66, 71, 78, 79, 98, 99, 100, 101, 102, 104, 106, 109, 128, 130, 131, 139, 140, 145], "befor": [2, 10, 19, 20, 21, 23, 24, 29, 31, 34, 36, 45, 52, 59, 61, 64, 69, 85, 87, 89, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 112, 117, 118, 119, 122, 123, 124, 131, 133, 137, 138, 139, 140], "before_fil": 89, "before_script": 89, "beforehand": 87, "begin": [2, 5, 12, 20, 24, 27, 39, 111, 112, 118, 119, 124, 127, 133, 134, 139], "behalf": 29, "behav": [20, 53, 64, 68, 105, 113, 138], "behavior": [4, 32, 35, 62, 65, 86, 93, 99, 100, 101, 105, 107], "behaviour": [20, 69, 86], "behhavior": 36, "behind": [1, 18, 20, 87], "being": [4, 10, 13, 19, 20, 35, 36, 42, 44, 48, 51, 58, 62, 63, 87, 89, 90, 98, 100, 101, 102, 104, 105, 107, 108, 111, 130, 139, 145], "believ": 131, "belong": [65, 100], "below": [0, 1, 5, 16, 18, 19, 20, 24, 29, 30, 31, 36, 37, 39, 45, 46, 47, 49, 58, 64, 65, 68, 69, 85, 86, 87, 89, 91, 92, 95, 96, 98, 99, 101, 103, 104, 105, 107, 113, 115, 121, 128, 129, 139, 143], "ben": 103, "beneath": 74, "benefici": 51, "benefit": [29, 44, 98, 100, 134, 139], "best": [24, 41, 45, 49, 56, 71, 98, 99, 103, 104, 108], "beta": 102, "better": [20, 29, 36, 87, 101, 106], "between": [4, 18, 20, 29, 36, 51, 57, 64, 65, 74, 86, 87, 99, 100, 101, 102, 103, 105, 113, 134], "beyond": 105, "bgohar": 30, "big": [49, 105, 107, 139], "biggest": 98, "bin": [4, 7, 8, 12, 18, 20, 29, 41, 42, 45, 46, 52, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 84, 85, 86, 88, 89, 91, 92, 104, 105, 106, 111, 112, 130, 134, 138, 139, 142, 143, 144], "bin_overrid": [53, 56, 63, 66, 67, 68, 69, 72], "binari": [4, 55, 56, 63, 68, 69, 72, 85], "bind": [5, 17, 18, 23, 65, 92, 136], "binddn": 4, "bindir": 66, "bindpw": 4, "bio": 20, "biologi": [20, 38, 104, 105], "bit": 20, "bjob": 66, "bkill": 66, "black": 20, "blank": [17, 23, 24, 45, 121, 127, 129, 142, 143], "blender": 29, "blob": [55, 59, 62], "block": [18, 46, 53, 105, 107, 109, 128, 139, 140], "block_limit": 20, "block_usag": 20, "blocklist": [58, 105, 107], "blue": [0, 36, 86], "bmcmichael": 30, "bob": [12, 13, 29, 74, 78, 81, 82], "bodi": [20, 42, 85], "body_bytes_s": 85, "bolster": 109, "book": 20, "bookworm_al": [59, 107], "bool": 86, "boolean": [4, 36, 37, 38, 60, 64, 86, 87, 90, 102, 104, 105], "boostrap": [45, 64], "boot": [45, 91, 92, 141, 144], "bootstrap": [20, 45, 47, 92, 98, 104, 136], "border_color": 20, "botani": 38, "both": [12, 14, 18, 19, 20, 35, 36, 44, 45, 55, 58, 64, 65, 87, 88, 90, 93, 99, 100, 103, 104, 107, 134, 138, 139], "bottom": [17, 20, 89, 99, 141], "bound": [64, 136], "bowdoin": 53, "box": [0, 16, 20, 35, 36, 52, 85, 103, 104, 109, 118, 124, 133], "br": 143, "branch": [111, 112, 145], "brand": [53, 103, 104, 105], "brand_bg_color": [20, 86], "brand_link_active_bg_color": [20, 86], "break": [10, 12, 62, 85, 90, 94, 101, 102, 134, 145], "bresum": 66, "breviti": [27, 65, 68, 92], "bridg": 7, "brief": [20, 62], "brittl": 36, "broader": 88, "broke": [99, 106], "broken": [9, 29], "broker": 16, "brows": [57, 86, 105], "browseabl": 99, "browser": [0, 5, 16, 20, 21, 22, 23, 24, 26, 36, 41, 47, 49, 53, 57, 85, 86, 98, 99, 103, 105, 106, 107, 111, 117, 118, 120, 121, 123, 124, 125, 129, 132, 133, 135], "bstop": 66, "bsub": [45, 58, 66, 86, 102], "btn": 47, "buechler": 102, "buffalo": [53, 103], "buffer": 103, "bug": [96, 97, 99, 107, 118, 124, 130, 133, 145], "build": [4, 5, 8, 10, 19, 20, 36, 37, 41, 46, 53, 87, 111, 118, 124, 128, 132, 133, 139, 144], "builder": [59, 104], "built": [0, 20, 24, 45, 55, 59, 65, 68, 99, 104, 115, 118, 124, 133, 136, 139, 145], "builtin": 12, "bujeda": 107, "bulk": [98, 138], "bunch": 105, "bundl": [85, 99, 100, 144], "bundle_user_config": 85, "bundler": [59, 111, 144], "button": [17, 20, 36, 37, 39, 47, 86, 87, 99, 104, 118, 119, 124, 133, 142, 143, 144], "button_text": 20, "bypass": 108, "byte": [20, 85], "c": [4, 14, 17, 45, 47, 52, 54, 71, 84, 121, 129, 138], "c12": [45, 121, 129], "c4": 0, "ca": [1, 4, 55, 59, 64], "cacert": 64, "cach": [31, 92, 105], "cacheabl": 36, "cachetempl": 18, "cachethem": 18, "cae": 54, "calcul": 107, "call": [12, 18, 20, 24, 27, 29, 34, 36, 45, 62, 64, 78, 86, 87, 89, 103, 104, 115, 116, 119, 142], "callback": 16, "caltech": 107, "campu": 7, "can": [1, 2, 4, 7, 9, 10, 12, 13, 15, 16, 17, 18, 20, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 44, 45, 46, 47, 49, 51, 52, 53, 56, 57, 58, 60, 61, 62, 64, 65, 69, 70, 71, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 112, 115, 116, 118, 120, 121, 124, 125, 126, 127, 129, 133, 135, 138, 139, 142, 143, 144, 145], "canari": 29, "cancel": [53, 86], "cancel_session_en": [20, 86], "candid": 145, "candidate_favorite_path": [20, 105, 107], "cannot": [12, 20, 24, 29, 41, 64, 65, 89, 90, 113, 127], "capabl": [12, 35, 38, 83, 84, 87, 88], "capit": 86, "captur": [8, 13, 51, 87], "card": [28, 31, 39, 53, 58, 86, 101, 105, 106, 107], "care": [24, 29, 36, 45, 46, 58, 86, 89, 100], "carri": 24, "case": [10, 12, 14, 19, 20, 23, 24, 27, 35, 36, 41, 45, 46, 47, 57, 59, 64, 65, 85, 87, 102, 103, 121, 129, 138, 139], "casloginurl": 10, "cat": [18, 51, 52, 60, 64, 102, 128, 130], "catalog": 29, "categori": [29, 38, 86, 99, 100, 104, 105, 111, 142, 143, 144], "caus": [10, 20, 23, 36, 45, 47, 58, 65, 69, 87, 89, 91, 99, 108, 111, 115, 121, 129, 142, 143, 144], "caution": [20, 24], "caveat": 69, "cc": 20, "ccq": 63, "ccqcert": 63, "ccqdel": 63, "ccqstat": 63, "ccqsub": 63, "cd": [2, 4, 5, 18, 29, 30, 71, 111, 112, 118, 120, 125, 128, 135, 142, 143, 144], "center": [1, 3, 11, 12, 13, 15, 20, 36, 45, 53, 54, 74, 82, 87, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 118, 124, 133, 139], "cento": [65, 99, 100, 102, 104, 105, 134, 136], "centos7": [65, 134, 136], "centos_7": 65, "central": [3, 102], "cert": [2, 4, 18, 57, 63, 64, 87], "cert_authority_fil": 64, "certain": [20, 64, 65, 85, 86, 98, 99, 105, 107], "certainli": 62, "certif": [2, 4, 14, 17, 18, 55, 57, 59, 63, 64], "cfg": 138, "cgconfig": 65, "cgi": [34, 87], "cgred": 65, "cgroup": [0, 20], "cgrule": 65, "chagn": 107, "chain": [71, 87], "chanc": 22, "chang": [4, 8, 10, 11, 18, 19, 21, 23, 29, 30, 31, 35, 36, 37, 41, 49, 53, 55, 60, 62, 63, 64, 71, 84, 86, 87, 89, 91, 93, 94, 102, 103, 109, 111, 112, 115, 119, 120, 121, 125, 127, 129, 130, 134, 135, 139, 142, 143, 144, 145], "changelog": [95, 96, 99, 100], "changem": [20, 64], "changetarget": 34, "channel": 57, "charact": [46, 53, 58, 68, 83, 85, 87, 89, 101, 102, 107], "charg": [20, 23, 35, 36, 45, 90, 127], "charge_account": 35, "check": [16, 20, 35, 36, 37, 39, 45, 51, 52, 59, 60, 65, 86, 96, 98, 111, 118, 121, 124, 129, 133], "check_box": [35, 36, 37, 106], "checkbox": [35, 37, 39, 90], "checked_valu": 37, "checkout": [111, 112, 142, 143, 144], "checksum": [84, 102], "cherri": 45, "chevi": 36, "chgrp": [19, 29], "child": [20, 44, 65], "chmod": [4, 8, 10, 18, 19, 20, 29, 64, 71, 143], "choic": [31, 35, 36, 39, 44, 45, 104, 105, 107, 139], "choos": [5, 16, 17, 20, 22, 24, 32, 35, 36, 37, 39, 44, 45, 54, 64, 86, 103, 104, 105, 114, 115, 116, 121, 129, 139, 142], "chose": [115, 116, 139], "chosen": [35, 36, 39, 44, 65, 85, 121, 129], "chown": [4, 18, 20, 51, 92, 107], "chpc": 54, "chrome": [100, 108], "ci": [7, 109], "cidr": 20, "cilogon": [1, 7, 14, 87], "circumv": 105, "cjose": 107, "claim": [12, 19], "class": [17, 20, 30, 36, 47, 87, 90, 104, 105, 107, 144], "class_instruct": 20, "classroom": 104, "claus": 35, "clean": [5, 46, 58, 65, 75, 79, 86, 89, 92, 99, 100, 101, 102, 103, 104, 105, 106], "clean_fil": 89, "clean_script": 89, "cleaner": 71, "cleanup": [31, 62, 64, 89], "cli": [18, 69, 122, 131, 137], "click": [5, 16, 17, 20, 22, 36, 38, 39, 44, 47, 64, 86, 87, 98, 103, 105, 109, 111, 115, 116, 118, 119, 121, 124, 129, 133, 142, 143, 144], "clickabl": 101, "client": [0, 1, 4, 12, 14, 16, 19, 20, 21, 27, 49, 55, 56, 58, 62, 63, 64, 66, 67, 68, 69, 72, 85, 86, 91, 103, 107, 126, 128], "client_bodi": 82, "client_id": [4, 7, 64], "client_nam": 4, "client_redirect_uri": 4, "client_secret": [4, 64], "clipboard": [103, 104], "clock": [20, 128], "clone": [4, 5, 29, 111, 112, 118, 124, 133, 137, 138, 139, 142, 143, 144], "close": [12, 20, 39, 104, 105], "closer": [36, 145], "closest": 104, "cloud": [63, 64], "cloudcmd": 104, "cloudi": [53, 56, 103], "cloudyclust": 63, "cluster": [20, 21, 23, 24, 26, 31, 32, 35, 40, 41, 44, 45, 46, 53, 54, 62, 66, 67, 68, 69, 71, 72, 86, 88, 100, 101, 105, 106, 107, 113, 116, 118, 119, 121, 124, 127, 129, 133, 134], "cluster1": [23, 36, 41, 71, 121, 129], "cluster2": [36, 71], "cluster_id": [32, 46], "cluster_overrid": 20, "cluster_us": 58, "clusteradmin": 64, "cmd": [4, 60, 87], "cmd_user": 64, "cmdline": 52, "cn": [4, 103], "code": [8, 20, 21, 23, 27, 28, 30, 31, 35, 42, 44, 45, 47, 54, 55, 58, 59, 62, 82, 84, 85, 86, 87, 89, 93, 99, 100, 101, 105, 107, 109, 111, 112, 115, 121, 128, 129, 145], "codebas": 20, "codecat555": 107, "coderais": 104, "codereadi": [59, 104], "codeserv": 51, "cog": 20, "cold": 138, "collabor": [29, 53], "collect": [2, 18, 30, 52, 93, 98, 99, 100], "colleg": 53, "collis": 107, "colon": [20, 99], "color": [20, 86, 91, 98, 104, 111], "column": [20, 101, 104], "com": [2, 4, 5, 8, 19, 20, 36, 41, 52, 54, 55, 59, 62, 64, 87, 102, 103, 104, 106, 111, 112, 118, 124, 127, 128, 130, 133], "combin": [18, 49, 87], "come": [12, 24, 45, 47, 59, 62, 65, 70, 105, 107, 111, 145], "comfort": [49, 59], "comm": 52, "comma": [37, 65, 87, 92, 101], "command": [9, 18, 23, 29, 41, 45, 49, 51, 53, 55, 57, 58, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 91, 92, 97, 102, 103, 104, 119, 121, 129, 130, 138, 139, 140, 142, 143, 144], "comment": [7, 18, 20, 54, 86, 102], "commit": [109, 119, 121, 129, 142, 143, 144, 145], "common": [1, 12, 20, 24, 35, 45, 46, 85, 105, 106, 115, 127, 140], "commonli": [36, 134], "commun": [4, 20, 47, 54, 57, 63, 65, 87, 107, 141, 145], "compar": [20, 104], "compat": [20, 58, 99, 104, 105, 106, 139, 145], "complain": [20, 68], "complaint": 101, "complet": [20, 24, 27, 31, 46, 48, 68, 71, 89, 90, 91, 96, 98, 100, 101, 102, 107, 108, 110], "complex": [104, 114], "compon": [0, 20, 36, 48, 94, 99, 100, 101, 109], "compos": [29, 51, 53, 56, 58, 62, 93, 97, 99, 100, 103, 110], "composit": 128, "compositor": 128, "comprehens": 101, "compress": 86, "compris": [20, 88], "comput": [0, 20, 21, 25, 26, 28, 40, 41, 43, 47, 51, 53, 58, 64, 65, 70, 92, 103, 105, 108, 109, 113, 117, 121, 122, 123, 129, 131, 132, 136, 137, 140], "compute_clust": 139, "comsol": [47, 54], "con": 44, "conbin": 87, "concat": 20, "concern": 109, "concurr": 145, "conda": 138, "condition": 45, "conduct": 109, "conf": [2, 10, 13, 18, 19, 49, 52, 58, 65, 66, 68, 69, 82, 84, 85, 87, 92, 98, 100, 101, 139], "confer": 99, "confidenti": 17, "config": [2, 4, 5, 8, 10, 11, 13, 14, 16, 17, 18, 20, 22, 23, 24, 29, 30, 35, 36, 41, 42, 44, 45, 47, 53, 57, 59, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 75, 76, 77, 82, 84, 85, 86, 87, 88, 93, 97, 99, 100, 101, 103, 104, 105, 107, 111, 115, 119, 121, 127, 128, 129, 134, 138, 141], "config_fil": 64, "config_properti": 20, "config_valu": 20, "configmap": [64, 113], "configmap_data": 138, "configmap_filenam": 138, "configur": [1, 3, 7, 8, 9, 13, 14, 15, 18, 22, 23, 24, 28, 30, 31, 34, 35, 39, 40, 41, 44, 46, 47, 48, 49, 51, 53, 55, 57, 58, 59, 62, 63, 66, 67, 68, 69, 72, 74, 75, 76, 77, 82, 84, 88, 89, 93, 97, 99, 100, 102, 106, 108, 110, 119, 121, 127, 129, 134, 138, 139, 143, 145], "configvers": 128, "confirm": [21, 41, 87, 97, 109, 117, 120, 123, 125, 130, 135], "conflict": [42, 46], "confnew": 104, "confus": [0, 24, 96, 111], "conn_fil": [89, 91], "conn_param": [28, 31, 89, 91, 104, 139], "connect": [1, 7, 11, 12, 16, 17, 18, 19, 21, 28, 31, 35, 38, 41, 42, 46, 48, 49, 51, 52, 53, 54, 55, 56, 58, 61, 64, 65, 68, 79, 81, 86, 95, 100, 101, 104, 105, 108, 117, 118, 123, 124, 127, 132, 133, 142, 143, 144], "connector": [4, 12, 87], "consequ": [20, 24, 85, 99, 104], "conserv": 20, "consid": [20, 29, 65, 102, 103, 145], "consider": [53, 58], "consist": [20, 36, 45, 47, 85, 107], "consol": 142, "consolid": 20, "const": 142, "constitut": 98, "constraint": 139, "construct": [20, 46, 47], "consum": 34, "consumpt": [52, 65], "contact": [14, 17, 20, 98, 109], "contain": [18, 20, 23, 28, 30, 34, 45, 46, 53, 54, 58, 64, 68, 85, 87, 88, 89, 99, 100, 101, 113, 119, 134, 136, 145], "container": 65, "container_bindpath": 92, "container_command": 92, "container_modul": 92, "container_path": 92, "container_start_arg": 92, "content": [5, 19, 20, 36, 45, 58, 62, 64, 87, 89, 90, 99, 105, 119, 138, 142, 143], "context": [20, 31, 34, 36, 51, 53, 60, 64, 89, 104, 123, 128], "contian": 92, "continu": [21, 35, 65, 87, 99, 100, 103, 105, 107, 117, 118, 119, 123, 124, 130, 133], "contract": 12, "contrib": 103, "contribut": [1, 54, 102, 103, 105, 107, 108, 109], "contributor": 102, "control": [20, 23, 36, 39, 45, 47, 49, 58, 63, 64, 65, 66, 67, 68, 69, 72, 78, 86, 87, 98, 99, 103, 105, 107, 115, 121, 129], "conveni": [12, 107, 140], "convent": [20, 28, 64, 98, 141], "convers": [20, 46], "convert": [2, 20, 24, 36, 45, 46], "cooki": [10, 13, 18, 19, 99], "cool": [38, 87], "coordin": 109, "coorespond": 64, "copi": [4, 5, 17, 20, 29, 46, 54, 57, 69, 85, 87, 90, 97, 98, 100, 104, 108, 113, 117, 120, 123, 125, 127, 128, 132, 135, 142, 143, 144], "copy_environ": [69, 90], "cor": 20, "core": [20, 28, 35, 36, 37, 44, 45, 49, 90, 98, 102, 108, 109, 127, 139], "corner": [5, 16, 17, 111], "correct": [1, 18, 19, 20, 24, 29, 35, 65, 71, 93, 111, 112, 121, 128, 129], "correctli": [12, 20, 27, 36, 50, 51, 105, 106, 143], "correspond": [12, 22, 23, 24, 36, 42, 45, 47, 49, 55, 60, 71, 72, 74, 77, 82, 85, 86, 87, 97, 103, 115, 119, 121, 127, 129, 134], "could": [1, 10, 20, 29, 30, 36, 41, 57, 61, 64, 65, 89, 99, 101, 104, 107, 111, 134, 138, 145], "counter": 99, "countri": 36, "coupl": 20, "cours": 30, "cover": [20, 101, 134, 139, 144], "covert8": 105, "cp": [4, 20, 29, 57, 98, 120, 125, 135], "cpu": [20, 23, 36, 49, 58, 65, 103, 107, 108, 121, 126, 129, 138, 139], "cpu_limit": 138, "cpu_request": 138, "cpuaccount": 65, "cpuquota": 65, "crash": [20, 51, 101, 128], "crb": 59, "creat": [0, 2, 17, 18, 22, 23, 27, 28, 29, 30, 32, 36, 45, 46, 47, 49, 51, 56, 58, 64, 71, 82, 85, 86, 96, 97, 98, 99, 100, 103, 105, 107, 110, 115, 116, 117, 118, 123, 124, 128, 130, 132, 133, 134, 138, 139, 142, 144, 145], "create_passwd": 46, "create_salt_and_sha1": 138, "created_at": 32, "creation": [64, 86], "cred": 64, "credentail": 64, "credenti": [16, 17, 19, 27, 59, 64], "criteria": [20, 102], "critic": [101, 109, 126], "crond": 65, "cronjob": 20, "crontab": 64, "crop": 22, "crt": [4, 18, 57, 64], "csc": [105, 107], "csrf": 20, "css": [86, 104], "cuda": 35, "cuda_vers": 35, "cuda_visible_devic": 61, "cumul": 20, "curl": 52, "current": [1, 15, 17, 20, 25, 29, 31, 35, 36, 39, 46, 53, 54, 55, 58, 59, 64, 65, 69, 71, 77, 84, 85, 86, 87, 89, 95, 96, 98, 104, 107, 108, 109, 111, 118, 119, 124, 133, 136, 145], "currentus": 20, "custom": [1, 2, 10, 12, 14, 16, 21, 22, 24, 28, 31, 35, 45, 49, 53, 60, 62, 65, 85, 86, 87, 93, 96, 97, 98, 99, 101, 102, 103, 107, 109, 111, 113, 117, 123, 132], "custom_app": 98, "custom_config": 115, "custom_css_fil": [20, 86], "custom_env": 99, "custom_javascript_fil": [86, 106], "custom_location_direct": 87, "custom_map": 12, "custom_nam": 99, "custom_pag": [20, 86], "custom_pages_guid": 20, "custom_queu": [115, 116], "custom_vhost_direct": 87, "customapp": 29, "customlog": 18, "cwd": [62, 101], "cyberinfrastructur": 7, "cybersecur": 109, "cycl": 145, "d": [2, 4, 10, 13, 18, 19, 20, 22, 23, 27, 29, 35, 36, 39, 41, 42, 45, 49, 52, 53, 55, 56, 58, 59, 63, 64, 66, 67, 68, 69, 71, 72, 73, 84, 88, 98, 100, 102, 105, 107, 111, 115, 119, 121, 127, 128, 129, 134, 139, 140], "d3d3d3": 128, "daemon": [18, 46, 52, 128], "daemons_use_tti": 60, "dai": [27, 53, 86, 109], "daili": 20, "dalli": 104, "dan": 101, "danger": [20, 98], "dark": [20, 86], "dasbhoard": 64, "dashboard": [11, 16, 19, 22, 24, 26, 28, 30, 36, 38, 46, 47, 48, 51, 53, 56, 58, 62, 64, 71, 74, 85, 86, 87, 89, 93, 97, 100, 105, 106, 107, 112, 115, 118, 120, 124, 125, 133, 135, 142, 143, 144], "dashboard_header_img_logo": [20, 86], "dashboard_layout": [20, 86], "dashboard_logo": [20, 86], "dashboard_logo_height": [20, 86], "dashboard_titl": [20, 86], "data": [12, 18, 20, 27, 34, 35, 36, 46, 48, 62, 64, 86, 89, 96, 100, 101, 103, 104, 105, 106, 109, 138], "databas": [14, 65, 69], "dataroot": 106, "date": [20, 57, 63, 89, 104], "date_field": 36, "davidmonro": 105, "db": 4, "dbu": 65, "dc": [4, 17], "deb": [59, 104, 106, 107, 145], "debian": [49, 55, 57, 59, 107, 108], "debug": [9, 20, 22, 45, 47, 49, 51, 53, 59, 65, 90, 96, 97, 119, 128, 138, 139], "decid": 24, "declar": [85, 99], "decleari": 85, "decod": [12, 62], "decreas": [49, 87, 104], "dedic": [26, 28], "def": [62, 88, 89, 143], "default": [4, 11, 12, 14, 15, 16, 17, 18, 19, 21, 23, 25, 28, 29, 35, 36, 37, 38, 39, 41, 45, 46, 47, 49, 51, 52, 53, 55, 56, 58, 59, 60, 62, 63, 64, 65, 67, 68, 69, 78, 84, 85, 86, 87, 89, 90, 91, 92, 93, 98, 100, 101, 102, 104, 106, 111, 115, 116, 121, 129, 138], "defens": 5, "defin": [4, 17, 18, 20, 23, 24, 27, 31, 34, 44, 45, 46, 56, 61, 64, 65, 71, 84, 85, 86, 87, 90, 93, 99, 103, 107, 115, 116, 119, 121, 127, 129, 134, 136, 139], "definit": [20, 24, 45, 65, 86, 88, 102], "degrad": 49, "degre": 145, "delai": 86, "delet": [5, 10, 20, 31, 49, 55, 64, 65, 75, 86, 100, 101, 104], "delimit": [20, 65, 99, 101], "deliveri": 20, "delivery_method": 20, "delivery_set": 20, "delm": 7, "demo": 87, "demonstr": [17, 20, 31, 62], "deni": [20, 85], "denial": 60, "denot": [74, 77], "depart": 20, "depend": [5, 20, 23, 29, 36, 47, 49, 51, 52, 53, 54, 55, 57, 94, 98, 99, 100, 103, 115, 116, 121, 129, 134, 136, 137, 141, 142, 143], "deploi": [8, 11, 13, 29, 31, 36, 45, 46, 47, 54, 75, 76, 77, 85, 93, 96, 99, 100, 107, 113, 117, 123, 132], "deploy": [2, 5, 20, 29, 48, 55, 57, 64, 85, 87, 98, 109, 120, 125, 135], "deprec": [20, 85, 94, 104, 131, 145], "depth": 91, "deriv": 99, "describ": [20, 23, 27, 31, 35, 36, 38, 41, 45, 46, 56, 58, 64, 68, 85, 87, 118, 121, 124, 129, 130, 133, 138, 139, 142, 143], "descript": [18, 20, 24, 36, 38, 54, 107, 142, 143, 144], "design": [65, 107], "desir": [16, 20, 51, 86, 104, 115, 137], "desk": 20, "desk1": 20, "desktop": [20, 22, 23, 25, 29, 43, 53, 58, 65, 91, 96, 97, 99, 100, 101, 104, 105, 108, 113, 123, 128, 131], "despit": [20, 99], "destin": 20, "destination_path": [138, 139], "detail": [0, 1, 2, 7, 9, 11, 12, 27, 36, 46, 47, 56, 58, 60, 61, 64, 74, 81, 84, 85, 86, 87, 94, 95, 96, 107, 109, 118, 119, 121, 124, 129, 133, 138, 139, 140, 142, 143, 144], "detect": [65, 101], "determin": [4, 36, 45, 46, 58, 64, 85, 87, 89, 91, 109, 121, 129, 138, 139], "dev": [5, 14, 17, 19, 20, 29, 30, 36, 45, 46, 47, 61, 62, 64, 65, 74, 82, 85, 92, 97, 110, 115, 116, 118, 119, 120, 121, 124, 125, 126, 127, 128, 129, 130, 133, 134, 135, 137, 138, 139, 142, 143, 144], "dev_work": [111, 112], "devel": 18, "develop": [6, 18, 20, 29, 31, 34, 36, 47, 53, 54, 59, 62, 64, 65, 85, 87, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 113, 114, 118, 124, 128, 133, 138, 139, 141, 142, 143, 145], "devgrp": 30, "dex": [1, 8, 9, 53, 55, 60, 87, 104, 106, 107], "dex_uri": [4, 87, 105], "dexidp": 4, "di": 119, "diagram": [46, 53], "dictionari": [20, 86], "did": [36, 45, 101], "didn": [36, 64], "dietz": 101, "diff": [97, 98, 99, 100, 101], "differ": [3, 14, 20, 23, 24, 35, 36, 42, 45, 49, 63, 64, 66, 67, 68, 69, 72, 84, 85, 86, 87, 98, 99, 100, 102, 105, 107, 111, 112, 121, 126, 127, 129, 142, 144], "different_select_clust": 36, "differenti": 64, "difficult": [55, 59, 104], "digit": 53, "dimens": [27, 36], "dimension1": 27, "dimension3": 27, "dimension6": 27, "dir": [4, 20, 86, 138], "direct": [1, 10, 11, 17, 18, 19, 20, 35, 42, 49, 56, 57, 71, 87, 95, 102, 103, 109, 114, 139], "directli": [2, 4, 10, 12, 20, 23, 24, 32, 36, 37, 44, 45, 47, 49, 85, 93, 95, 99, 102, 103, 104, 105, 110], "directori": [1, 15, 18, 22, 23, 29, 30, 31, 34, 36, 37, 38, 45, 46, 47, 51, 53, 55, 56, 60, 63, 65, 66, 68, 71, 74, 82, 83, 85, 86, 87, 89, 90, 93, 97, 100, 101, 102, 103, 106, 107, 109, 110, 112, 118, 119, 120, 124, 125, 128, 133, 134, 135, 136, 138, 139, 140, 142, 143, 144], "dirnam": [20, 143], "disabeled_shel": 85, "disabl": [4, 18, 19, 23, 36, 37, 39, 41, 53, 58, 60, 64, 79, 85, 86, 87, 109, 128, 130, 137], "disable_bc_shel": 86, "disable_bundle_user_config": 85, "disable_check_xsrf": 138, "disable_dashboard_logo": 86, "disable_log": 87, "disable_safari_basic_auth_warn": 103, "disabled_shel": 85, "disablerepo": 100, "disclos": 105, "discourag": [6, 69], "discours": [3, 14, 17, 20, 53, 54, 60, 99, 100, 109], "discov": [20, 87, 134], "discoveri": 87, "discuss": [9, 12, 20, 24, 36, 121, 129], "disk": [53, 60, 62, 85, 99, 118, 124, 133], "dismiss": 20, "dispar": 7, "displai": [11, 16, 20, 24, 31, 32, 37, 45, 46, 47, 57, 58, 61, 64, 75, 78, 79, 81, 83, 84, 85, 86, 87, 91, 97, 99, 100, 101, 102, 103, 104, 106, 107, 127, 128, 130, 140, 142, 143, 144], "disregard": 102, "disrupt": 102, "distant": 63, "distinct": [45, 65, 105], "distinguish": 111, "distribut": [12, 18, 20, 65], "div": [20, 104], "dl": 99, "dn": [4, 17, 65], "dnf": [4, 52, 59, 92, 104, 105, 106, 107], "do": [12, 14, 18, 20, 23, 24, 25, 27, 29, 30, 32, 36, 39, 41, 42, 43, 44, 45, 46, 47, 61, 62, 63, 64, 65, 68, 69, 79, 85, 86, 87, 89, 90, 91, 92, 93, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 115, 116, 118, 119, 122, 124, 127, 128, 130, 131, 133, 134, 137, 138, 139, 140, 142, 143, 144], "doc": [2, 4, 15, 18, 20, 57, 90, 102, 130], "docker": [0, 5, 64, 92, 138, 139], "dockerfil": [55, 59], "documen": 100, "document": [4, 7, 8, 12, 13, 15, 17, 20, 23, 27, 30, 45, 47, 49, 53, 57, 58, 64, 71, 73, 86, 87, 90, 96, 98, 101, 103, 104, 107, 109, 114, 115, 116, 138, 139, 142, 143, 144, 145], "dodeploi": 5, "doe": [1, 10, 20, 23, 27, 29, 30, 35, 36, 40, 46, 47, 57, 58, 60, 62, 63, 65, 86, 99, 101, 106, 111, 118, 124, 127, 128, 130, 131, 133, 136, 138, 144], "doesn": [18, 20, 30, 35, 47, 71, 82, 85, 89, 99, 104, 115, 116], "domain": [0, 12, 20, 41, 81, 85, 86, 87, 90, 107, 141], "don": [14, 18, 19, 20, 23, 24, 27, 35, 36, 41, 54, 55, 59, 75, 84, 85, 86, 87, 95, 96, 102, 111, 138], "donat": 99, "done": [20, 22, 23, 29, 42, 46, 60, 62, 64, 68, 89, 98, 103, 104, 111, 116, 120, 121, 125, 126, 128, 129, 135, 138, 140, 143], "dot": [0, 65, 91], "doubl": 85, "down": [5, 9, 16, 20, 22, 36, 51, 64, 98, 101, 111, 112, 114, 115, 116], "downgrad": [100, 107], "download": [2, 7, 18, 52, 53, 86, 105, 132], "download_en": [20, 86], "downtim": 20, "dpi": 91, "dpkg": 104, "dport": [4, 60], "drastic": 71, "draw": 0, "drawback": 20, "drawer": 108, "drink": 128, "driven": [36, 145], "drmaa": 68, "drop": [5, 16, 20, 22, 36, 101, 114, 115, 116], "dropdown": [16, 20, 30, 36, 39, 86, 98, 99, 100, 102, 103, 104, 111, 118, 120, 124, 125, 133, 135], "drwx": 82, "drwxr": [29, 82], "dsun": 130, "du": 102, "due": [99, 102, 103, 107], "duo": [1, 55], "duo_java": 5, "duosecur": 5, "duoweb": 5, "duplic": [12, 20], "durat": [20, 64, 91], "dure": [18, 20, 65, 84, 87, 89, 91, 98, 99], "dynam": [20, 23, 27, 28, 31, 32, 36, 38, 71, 86, 87, 97, 98, 104, 107, 126], "e": [0, 1, 2, 5, 8, 10, 12, 13, 17, 18, 19, 20, 29, 36, 41, 43, 45, 49, 55, 57, 58, 61, 62, 64, 65, 71, 74, 77, 85, 86, 87, 89, 98, 99, 102, 105, 115, 116, 121, 122, 129, 131, 137, 145], "each": [0, 12, 15, 20, 22, 24, 27, 29, 31, 36, 44, 45, 47, 56, 64, 65, 69, 85, 86, 95, 96, 97, 98, 99, 100, 104, 106, 108, 111, 115, 118, 124, 127, 133, 139], "each_pair": 139, "eager": 101, "earli": [46, 53, 145], "earlier": [98, 122], "easi": 104, "easier": [16, 97], "easiest": [20, 36], "easili": [20, 86, 98], "echo": [7, 12, 46, 61, 64, 71, 89, 128], "ecmascript": 108, "edg": [20, 101, 108], "edit": [2, 5, 10, 13, 17, 18, 19, 20, 23, 24, 27, 29, 31, 33, 55, 64, 71, 85, 86, 99, 102, 105, 113, 115, 119, 123, 127, 130, 134, 140, 141], "editor": [20, 27, 29, 95, 96, 97, 98, 99, 100, 101, 104, 111, 119, 127, 134], "edt": [12, 18], "edu": [4, 11, 12, 13, 14, 16, 17, 18, 19, 20, 29, 30, 41, 42, 45, 47, 54, 55, 56, 57, 58, 59, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 82, 86, 87, 90, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 115, 118, 120, 124, 125, 133, 135, 139], "edu_access_ssl": 18, "edu_error_ssl": 18, "educ": 53, "effect": [10, 19, 20, 29, 30, 41, 55, 98, 99, 104, 107, 111, 115], "effici": [20, 103], "effort": [106, 107], "efranz": [29, 30, 142, 143, 144], "eg": [16, 20, 64, 86], "eight": 20, "either": [4, 14, 20, 23, 34, 35, 36, 51, 58, 64, 65, 68, 87, 88, 99, 100, 102, 104, 105, 115, 116], "el6": [99, 100], "el7": [2, 98, 99, 100, 102, 105, 106], "el8": [2, 59, 92, 105, 106, 107], "el8serv": 92, "el9": [59, 89, 106, 107, 108], "elaps": [20, 101, 107], "element": [20, 31, 36, 68, 104, 107, 114, 115, 116, 119, 127, 134], "elev": 65, "elisa": 101, "ellips": 18, "els": [7, 12, 19, 29, 45, 49, 64, 105, 128, 139], "elsewher": 20, "elsif": 139, "email": [7, 8, 12, 16, 17, 20, 23, 29, 36, 60, 85, 87, 90, 109, 127], "email_field": [20, 36], "email_on_start": [36, 45, 90], "email_on_termin": 90, "emailattr": 4, "emb": [18, 20, 23, 45, 47, 101, 115, 121, 129], "embed": [20, 23, 32, 45, 46, 47, 99, 115, 121, 129], "emphas": 109, "emploi": [64, 104], "empti": [10, 12, 24, 27, 36, 64, 86, 87, 89, 90, 101, 126], "emul": 65, "en": [16, 20], "en_u": 92, "enabl": [2, 4, 10, 11, 16, 17, 18, 19, 23, 28, 31, 35, 36, 40, 46, 47, 53, 55, 60, 64, 65, 66, 68, 71, 85, 86, 87, 95, 97, 100, 102, 103, 104, 105, 106, 107, 110, 111, 123, 131, 139], "enable_cuda_vers": 35, "enable_gpu": 35, "enable_native_vnc": 47, "enable_starttls_auto": 20, "encod": [12, 83], "encount": [20, 51, 57, 68], "encourag": 109, "encrypt": [57, 99, 109], "end": [0, 12, 14, 18, 20, 27, 30, 41, 45, 46, 65, 71, 86, 89, 98, 101, 104, 105, 107, 111, 115, 128, 139, 140, 144, 145], "end_dat": 27, "endpoint": [16, 64, 86, 106], "endpoint_path": 86, "enforc": [20, 87], "engag": 109, "engin": [53, 56, 64, 99, 102], "english": 20, "enhanc": [94, 109], "enough": [12, 26, 104, 130], "ensur": [2, 5, 10, 20, 29, 34, 35, 42, 45, 51, 52, 57, 62, 64, 65, 68, 69, 71, 100, 102, 103, 105, 107, 109, 111, 112, 134, 136, 140, 142, 143, 144], "enter": [20, 63, 111, 118, 124, 133], "entir": [31, 36, 45, 88, 127, 143], "entiti": 7, "entitl": [39, 102], "entri": [12, 20, 24, 36, 51, 64, 65, 87, 103, 106], "entrypoint": [142, 143], "enumer": 36, "env": [4, 16, 20, 29, 30, 36, 47, 62, 64, 85, 86, 87, 90, 93, 98, 99, 102, 103, 104, 110, 138, 139, 142, 143, 144], "envdir": 66, "enviro": 86, "environ": [7, 8, 19, 20, 24, 25, 29, 30, 34, 36, 42, 46, 47, 52, 53, 58, 62, 64, 69, 71, 73, 82, 83, 85, 86, 87, 89, 90, 91, 92, 98, 101, 102, 103, 104, 105, 107, 108, 109, 111, 122, 128, 131, 134, 136, 137, 138, 139, 141, 142, 144], "environment": 101, "envvar": 49, "eof": [18, 52, 64], "eot": 128, "epel": [59, 92, 99, 100, 104], "equal": 20, "equip": 110, "equival": [20, 24, 36, 121, 129], "erb": [18, 20, 22, 23, 24, 28, 31, 34, 47, 53, 64, 73, 84, 85, 86, 89, 90, 91, 98, 101, 103, 105, 115, 116, 119, 121, 126, 127, 128, 129, 130, 134, 138, 139, 140], "eric": 29, "error": [12, 41, 50, 51, 53, 57, 62, 63, 68, 71, 82, 85, 87, 89, 90, 91, 97, 102, 113, 119, 123], "error_path": [65, 90], "errorlog": [18, 87], "errorreturncod": 62, "erubi": [23, 32, 45, 46, 47, 103, 115, 121, 129], "esac": 64, "escal": [20, 22, 51], "escap": [19, 34, 83], "especi": 57, "ess": [37, 139], "essenti": [64, 86, 109, 111], "est": [12, 20], "etc": [2, 4, 7, 8, 10, 11, 12, 13, 16, 18, 19, 20, 22, 23, 24, 26, 29, 30, 36, 41, 42, 44, 45, 47, 49, 51, 52, 56, 57, 58, 60, 63, 64, 65, 66, 67, 68, 69, 71, 72, 84, 85, 86, 87, 88, 90, 92, 93, 97, 99, 100, 101, 102, 103, 104, 105, 107, 115, 119, 121, 127, 129, 134, 138, 139], "eula": [20, 107], "euler": 107, "evalu": 101, "even": [20, 29, 30, 35, 65, 84, 104, 109, 138, 140, 145], "event": [20, 49, 104], "eventu": 20, "ever": 50, "everi": [0, 12, 18, 20, 29, 35, 36, 38, 63, 64, 71, 86, 87, 91, 103, 106, 107, 142, 143, 144, 145], "everyon": [28, 29], "everyth": [0, 29, 35, 36, 44], "everytim": 115, "ex": 36, "exact": [20, 34], "exactli": 36, "exampl": [3, 4, 7, 8, 10, 11, 13, 14, 16, 18, 19, 20, 23, 24, 27, 30, 31, 33, 35, 37, 42, 44, 46, 49, 51, 52, 53, 56, 57, 60, 61, 64, 65, 71, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 95, 98, 99, 101, 102, 103, 104, 105, 107, 111, 115, 116, 118, 121, 124, 128, 129, 131, 133, 136, 137, 138, 139, 140, 142, 143, 144, 145], "example_clust": 42, "example_templ": 20, "excel": 109, "except": [20, 62, 90, 98, 101, 106, 130, 134], "exception": 101, "excit": 107, "exclud": [29, 102], "exclus": 139, "exec": [20, 65, 67, 89, 136, 142, 143, 144], "execstart": 18, "execut": [5, 12, 20, 28, 31, 46, 58, 62, 64, 65, 67, 74, 78, 79, 82, 84, 89, 100, 115, 136, 139, 142, 143, 144], "execv": [51, 71, 119], "exempt": 99, "exercis": [55, 59], "exhaust": 108, "exisit": 86, "exist": [16, 20, 28, 31, 46, 71, 75, 82, 86, 87, 89, 93, 98, 99, 103, 104, 115, 116, 118, 124, 126, 133, 140, 144], "exit": [12, 46, 62, 64, 84, 101, 128], "exit_cod": 62, "exitcod": 84, "expand": [20, 98], "expect": [20, 36, 47, 55, 64, 65, 85, 90, 92, 99, 100, 107, 115, 116], "experi": [29, 60, 108, 130, 140], "experienc": 46, "experiment": [20, 71], "expir": [4, 20, 63, 64], "expiri": [4, 63], "explain": [19, 20, 121, 129], "explan": [99, 100], "explicitli": [20, 30, 36, 58, 87, 103, 104, 134], "explor": [20, 65, 119, 126], "export": [2, 20, 34, 41, 42, 45, 46, 48, 61, 62, 65, 68, 69, 87, 90, 128, 134, 136], "expos": [4, 19], "expr": [10, 13], "express": [9, 10, 13, 20, 36, 41, 63, 85, 87, 104, 115, 142], "extend": [15, 20, 105], "extens": [18, 20, 23, 45, 46, 47, 53, 56, 58, 102, 107, 121, 129], "extern": [4, 16, 29, 53, 98, 130, 142, 143, 144], "extra": [20, 36, 38, 90, 91, 98, 104, 143], "extra_arg": 91, "extra_jupyter_arg": [115, 116, 119, 121, 129], "extract": [27, 63, 64, 103], "ey": 47, "f": [12, 20, 23, 29, 37, 64, 65, 68, 79, 84, 102, 104, 105, 106, 107, 128, 139], "fa": [20, 47, 142, 143, 144], "facil": [20, 61], "facilit": [20, 65], "facl": [20, 29, 86, 105, 107], "facl_domain": 86, "fact": [27, 44, 46, 64], "factor": [1, 55, 64, 100, 102, 108], "fail": [12, 22, 41, 50, 51, 65, 71, 87, 102, 103, 107, 121, 129], "failur": [20, 48, 51, 62], "fairli": 20, "fakeroot": 92, "fallback": [23, 87], "fals": [4, 18, 20, 35, 36, 37, 38, 58, 64, 65, 69, 71, 85, 86, 87, 101, 102, 103, 104, 105, 130], "falsi": 20, "far": [60, 103], "fashion": 27, "fast": 20, "fastcgi_temp": 82, "faster": [12, 58, 98, 104], "fastest": 12, "favicon": [15, 20, 86, 87, 93], "favor": [87, 106], "favorit": [20, 37, 119, 127, 134], "favoritepath": [20, 105, 107], "featur": [8, 20, 27, 33, 35, 36, 37, 39, 45, 46, 47, 56, 58, 64, 68, 71, 86, 87, 92, 94, 95, 99, 100, 101, 102, 103, 104, 111, 121, 129, 145], "feaur": 20, "februari": 20, "fed": 45, "feder": [1, 7, 16, 17, 55], "fedorapeopl": 2, "fedoraproject": 99, "feed": 20, "feedback": 53, "feel": [20, 45, 55, 59, 86, 87, 98, 104], "fetch": 89, "few": [20, 24, 29, 46, 62, 65, 87, 105, 111, 114], "ff0000": 20, "fff": 85, "fi": [7, 12, 61, 64, 65, 136], "field": [16, 17, 20, 21, 23, 35, 36, 37, 45, 47, 64, 86, 90, 99, 100, 101, 104, 107, 115, 116, 126], "field_of_sci": [20, 38, 104], "fig": 46, "figur": 107, "file": [2, 4, 5, 7, 8, 9, 10, 13, 14, 15, 18, 19, 22, 23, 24, 26, 27, 28, 30, 31, 32, 34, 36, 37, 41, 42, 44, 45, 47, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 75, 76, 77, 81, 82, 83, 84, 85, 87, 88, 89, 90, 91, 93, 96, 97, 98, 99, 100, 109, 110, 115, 116, 118, 119, 121, 124, 126, 127, 128, 129, 130, 131, 133, 134, 136, 138, 139, 141, 142], "file_attach": 20, "file_limit": 20, "file_upload_max": [20, 103], "file_usag": 20, "filebrows": 86, "fileexplor": 101, "filenam": [20, 62, 87, 104, 138], "files_enable_shell_button": [86, 104], "filesystem": [20, 60, 86, 100, 134, 139], "fill": [5, 16, 24, 36, 44, 45, 46, 64, 86, 105, 115, 116, 118, 119, 124, 133], "filter": [4, 20, 27, 36, 62, 86, 98, 104], "filter_argv": 62, "filter_script": 62, "final": [10, 17, 18, 36, 45, 71, 97, 134], "find": [6, 20, 24, 29, 30, 46, 65, 71, 101, 103, 104, 106, 109, 115, 116, 128, 143], "find_host_port": 138, "find_port": 46, "fine": [20, 87, 100, 143], "finish": [71, 90, 113], "finland": 105, "firefox": [100, 101, 108], "firewal": [1, 60], "firewalld": [4, 55], "first": [4, 12, 13, 14, 16, 20, 23, 24, 27, 29, 36, 42, 45, 46, 50, 57, 64, 65, 87, 89, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 111, 115, 116, 118, 121, 124, 127, 129, 133, 138, 139, 142, 143, 144, 145], "firstgpu": 61, "fit": [20, 64], "five": 31, "fix": [53, 65, 71, 94, 96, 97, 98, 103, 104, 107, 109, 118, 124, 130, 133, 145], "fixm": 55, "flag": [37, 38, 52, 69, 86, 90, 98, 101, 102, 103, 130], "flask": 141, "flexibl": [36, 58, 98, 138], "float": 36, "flow": [5, 16, 23, 45, 47, 53, 99, 105, 115, 121, 129], "fluxbox": [123, 131, 140], "fluxbox_assets_root": 128, "fluxbox_rc_fil": 128, "flybirdkh": 103, "focal_al": [59, 106, 107], "focu": [1, 127], "folder": [20, 32, 102, 130], "folk": 105, "follow": [0, 1, 2, 4, 7, 8, 9, 10, 12, 13, 19, 20, 23, 24, 25, 28, 29, 31, 36, 41, 42, 43, 45, 46, 47, 52, 54, 57, 60, 63, 64, 65, 66, 67, 68, 69, 72, 85, 87, 98, 102, 103, 104, 105, 106, 107, 108, 111, 114, 115, 116, 118, 120, 122, 124, 125, 130, 131, 133, 134, 135, 136, 137, 139, 141], "font": [47, 91, 107], "foo": [87, 90], "footer": [20, 89, 101], "footnot": [95, 96], "forbidden": 99, "forc": [4, 20, 35, 79, 84, 102, 103, 104, 105, 106, 107, 111, 128], "ford": [36, 115, 116], "forego": 41, "foreground": 20, "foreign": 72, "forget": 42, "fork": [45, 46, 83, 104, 138, 139], "form": [5, 16, 21, 22, 23, 28, 31, 33, 34, 39, 44, 45, 46, 47, 53, 86, 90, 98, 99, 103, 104, 106, 113, 114, 118, 119, 121, 123, 124, 127, 129, 133, 134], "form_head": [36, 107], "form_id": 34, "format": [2, 12, 19, 20, 22, 24, 27, 41, 62, 63, 85, 86, 87, 99, 101, 121, 129], "former": 44, "formerli": [7, 53], "formerlli": 103, "forward": [18, 20, 59, 98], "found": [7, 12, 20, 36, 45, 46, 47, 85, 93, 99, 100, 101, 103, 109, 138, 139], "foundat": 7, "four": [0, 20], "fp": 91, "fqdn": [4, 41, 64], "fr": 20, "fragil": 62, "frame": [5, 20, 51, 87, 145], "framework": [105, 107, 109, 141, 143, 144], "frankli": 58, "free": [35, 45, 55, 57, 59, 87, 98, 126], "freeli": [20, 145], "french": 20, "fresh": [20, 85], "friend": 128, "friendli": 20, "from": [0, 1, 2, 7, 8, 10, 12, 13, 14, 16, 17, 18, 19, 20, 22, 24, 26, 27, 29, 32, 34, 36, 37, 41, 44, 45, 46, 48, 49, 50, 51, 53, 56, 58, 62, 63, 64, 65, 67, 69, 71, 74, 79, 84, 85, 86, 87, 90, 92, 94, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 118, 120, 121, 124, 125, 127, 129, 133, 134, 135, 136, 137, 139, 140, 142, 143, 144, 145], "front": [0, 14, 20, 87], "frontend": [4, 20, 87, 99], "frozen": [99, 100], "frozen_string_liter": 144, "fsgroup": 64, "ftl": 5, "ftp": 20, "full": [12, 18, 20, 36, 47, 58, 68, 85, 86, 87, 92, 97, 101, 106, 113, 127, 131], "full_path": 20, "full_url": 34, "fullchain": 57, "fulli": 29, "fullscreen": 128, "function": [0, 1, 12, 20, 34, 41, 46, 58, 72, 87, 89, 93, 99, 100, 104, 108, 111, 128, 134, 138, 142, 145], "fund": 26, "further": [20, 31, 62, 85, 104, 105, 109, 121, 129], "futur": [10, 17, 65, 71, 85, 97, 98, 99, 101, 103], "g": [1, 2, 4, 5, 8, 10, 13, 18, 20, 29, 36, 41, 43, 45, 52, 55, 58, 71, 74, 77, 85, 87, 98, 99, 115, 116, 121, 122, 129, 131, 137, 145], "ga": 27, "ga_profil": 27, "ganglia": 108, "gap": 20, "gatewai": [29, 30, 74, 85, 118, 136], "gather": [20, 36], "gb": [20, 23, 85, 121, 127, 129], "gcloud": 64, "gcp": 63, "ge": [65, 99], "geco": 4, "gem": [90, 101, 111, 121, 129, 144], "gemfil": [103, 111, 144], "gener": [0, 1, 2, 4, 8, 10, 11, 12, 13, 14, 18, 22, 32, 34, 35, 36, 38, 41, 45, 46, 47, 51, 52, 53, 55, 60, 63, 64, 71, 73, 83, 85, 86, 89, 90, 96, 97, 98, 99, 100, 101, 104, 105, 106, 107, 115, 116, 119, 121, 127, 129, 134, 138, 145], "generat": 98, "geometri": 91, "georg": 53, "georgiastuart": 105, "get": [4, 7, 15, 17, 20, 24, 27, 29, 32, 36, 41, 44, 46, 47, 49, 57, 58, 59, 62, 64, 65, 68, 87, 96, 101, 104, 106, 107, 111, 118, 119, 123, 124, 133, 139, 140, 142, 143, 144], "get_ga_data": 27, "getelementbyid": 104, "getgrgid": 58, "getinputargu": 130, "getlogin": 86, "getpass": 62, "getpwnam": [86, 138, 139], "getruntimemxbean": 130, "getus": 62, "gi": 138, "gib": [20, 103], "gid": [64, 138, 139], "gist": [18, 86], "git": [4, 5, 29, 44, 98, 111, 112, 118, 119, 121, 124, 129, 133, 142, 143, 144], "git19": [99, 100], "git29": 102, "github": [4, 5, 20, 29, 47, 52, 54, 55, 59, 62, 67, 71, 99, 102, 103, 104, 105, 106, 109, 111, 112, 118, 124, 128, 131, 133, 145], "githubusercont": 64, "gitlab": 54, "giuliolibrando": 107, "give": [20, 30, 35, 36, 39, 41, 45, 51, 64, 87, 99, 104, 105, 107, 143], "given": [0, 7, 12, 20, 22, 23, 24, 27, 29, 36, 39, 44, 45, 46, 47, 56, 64, 66, 78, 81, 82, 84, 85, 86, 87, 89, 90, 91, 99, 107, 108, 119, 121, 127, 129, 134, 144, 145], "glnxa64": 130, "glob": [20, 36], "global": [20, 23, 24, 31, 42, 47, 58, 97, 103, 106, 113, 114, 121, 129], "global_": 36, "global_bc_form_item": 36, "global_bc_item": 36, "global_queu": 36, "globu": 86, "globus_endpoint": 86, "glossari": 53, "gmail": 20, "gnome": [21, 25], "gnu": 36, "go": [4, 16, 23, 24, 27, 30, 41, 65, 86, 98, 104, 105, 106, 111, 112, 118, 120, 124, 125, 133, 135, 138, 139, 142], "goal": [65, 118, 124, 133], "goe": [50, 65, 143], "good": [1, 18, 41, 46, 87, 98, 111], "googl": [48, 53, 64, 86, 87, 108], "google_analytics_tag_id": [27, 86], "googleapi": 64, "goolg": 64, "gopath": 4, "got": [65, 71], "gpu": [35, 36, 45, 61, 127, 128, 131, 139], "gpus_per_nod": 139, "grab": 46, "gracefulli": [100, 102], "grafana": [48, 53, 58], "grai": 0, "grant": 17, "granular": [20, 29, 105], "graph": [20, 102], "gre": [61, 99], "great": [57, 101, 111], "greater": [29, 36], "greatli": 1, "green": [36, 57], "grei": [20, 111], "grep": [7, 20, 64], "grid": [7, 12, 20, 53, 56, 87, 99, 102, 104], "gridengin": 68, "group": [4, 8, 18, 20, 29, 30, 36, 38, 51, 58, 62, 63, 64, 65, 71, 86, 87, 104, 105, 107, 138], "groupadd": [4, 18], "groupattr": 4, "groupinstal": 92, "groupsearch": 4, "grpc": 4, "guarente": 93, "guest": [134, 136], "gui": [45, 46, 54, 95, 140], "guid": [2, 20, 69, 109, 130], "guilherm": 102, "guimaluf": 102, "guruevi": 107, "gz": [18, 52], "h": [20, 84, 87, 102], "h1": 32, "h2": [14, 32], "ha": [2, 7, 11, 12, 14, 16, 18, 20, 23, 24, 26, 29, 30, 32, 34, 35, 36, 38, 39, 44, 45, 46, 47, 48, 49, 58, 59, 60, 64, 65, 66, 71, 86, 87, 89, 90, 98, 99, 100, 101, 102, 103, 106, 108, 109, 115, 116, 126, 127, 128, 130, 131, 138, 139, 140, 141, 142, 143, 145], "had": [45, 79, 96, 101, 102, 106, 107, 108], "hand": [20, 32, 36, 86, 102, 104, 143], "handi": 65, "handl": [11, 14, 19, 20, 23, 24, 46, 47, 49, 58, 62, 87, 98, 100, 102, 107, 121, 129], "handler": [87, 109], "hang": 62, "happen": [30, 51, 57, 108], "happi": [120, 121, 125, 129, 135], "harbor": 64, "hard": [21, 31, 44, 105, 107, 138], "hardcod": 127, "hardwar": [53, 126, 127], "harvard": [12, 105, 107], "hash": [4, 20, 24, 36, 45, 85, 86, 87, 90, 122], "have": [1, 3, 7, 8, 10, 12, 14, 18, 20, 21, 22, 23, 24, 27, 29, 30, 33, 35, 36, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 61, 63, 64, 65, 69, 71, 78, 79, 82, 83, 85, 86, 87, 89, 90, 91, 95, 96, 99, 100, 101, 102, 103, 104, 106, 108, 109, 111, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 125, 128, 129, 131, 133, 135, 136, 138, 139, 142, 143, 144, 145], "haven": [42, 65, 98], "hdd": [142, 143, 144], "he": 29, "head": [20, 61, 62, 65, 107], "header": [10, 18, 19, 20, 36, 45, 86, 87, 88, 89], "heart": 115, "heartbeat": 91, "heavili": 64, "height": [20, 86], "held": [20, 86, 143], "hello": [142, 143, 144], "helm": 64, "help": [12, 16, 21, 22, 29, 34, 36, 37, 46, 47, 48, 49, 53, 60, 61, 66, 83, 84, 86, 87, 96, 101, 102, 103, 107, 109, 111, 115, 116, 127, 130, 134, 136], "help_bar": [20, 86], "help_menu": [20, 86], "helper": [30, 107], "her": 0, "here": [1, 7, 12, 15, 17, 20, 24, 27, 30, 33, 34, 35, 36, 38, 39, 44, 45, 47, 51, 54, 56, 58, 59, 64, 65, 68, 86, 88, 89, 90, 93, 102, 103, 104, 105, 106, 107, 109, 110, 111, 115, 121, 128, 129, 136, 138, 139, 142, 143, 144], "heterogen": 35, "hex": [18, 19, 65], "heymann": 101, "hh": 101, "hi": [29, 107], "hidden": [20, 35, 37, 47, 58, 65, 98, 103, 107], "hidden_field": [20, 36, 37], "hide": [30, 31, 36, 53, 86, 101, 104, 106, 118, 124, 126, 133], "hide_app_vers": [86, 105], "hide_when_empti": 20, "hierarchi": [20, 93, 98, 134], "high": [0, 41, 53, 105, 109], "higher": [20, 36, 87, 106, 107], "highest": [89, 106], "highli": [6, 22, 46], "highlight": [20, 53, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 121, 128, 129], "hint": 18, "hit": [27, 46], "hoffman2": 99, "hold": [23, 45, 46, 86, 87, 90, 98, 138, 139, 143], "home": [16, 18, 23, 29, 30, 36, 37, 45, 46, 47, 51, 53, 60, 62, 63, 65, 71, 85, 86, 90, 96, 97, 98, 106, 118, 124, 128, 133, 134, 138, 139], "home_dir": 138, "homedir": 118, "homepag": 86, "hook": [31, 87], "hookenv": 64, "hooksdir": 64, "host": [1, 4, 14, 27, 28, 41, 42, 45, 46, 47, 49, 52, 53, 55, 56, 58, 60, 62, 63, 64, 66, 67, 68, 69, 72, 84, 85, 87, 89, 91, 92, 98, 100, 101, 104, 106, 107, 115, 120, 121, 125, 129, 134, 135, 136, 138, 139, 142, 143, 144], "host_based_profil": [20, 86], "host_cfg": 138, "host_port_cfg": 138, "host_regex": [41, 87], "host_typ": [138, 139], "hostnam": [2, 18, 20, 27, 41, 46, 47, 49, 51, 86, 87, 89, 121, 129], "hostport": 138, "hour": [19, 20, 23, 24, 36, 45, 64, 89, 90, 109, 127], "hous": [58, 86], "hover": [17, 38, 107], "hoverov": 36, "how": [0, 2, 7, 12, 20, 23, 24, 27, 29, 36, 39, 41, 42, 44, 45, 47, 48, 49, 52, 56, 58, 62, 64, 85, 86, 87, 88, 90, 98, 99, 100, 102, 103, 104, 105, 106, 107, 111, 115, 116, 118, 121, 124, 129, 133, 134, 138, 139, 142, 143], "howev": [18, 20, 23, 36, 44, 65, 98, 102, 103, 105, 106, 107], "hpc": [0, 3, 14, 16, 17, 18, 19, 20, 21, 29, 53, 54, 56, 58, 63, 64, 65, 66, 67, 68, 69, 72, 95, 103, 113, 138], "hpctoolset": 20, "href": 47, "htcacheclean": [102, 103], "hterm": 108, "html": [2, 15, 18, 19, 20, 31, 34, 36, 37, 47, 57, 86, 87, 89, 97, 100, 103, 104, 107, 114, 115, 116, 119, 127, 130, 134], "html_option": 35, "htpasswd": 19, "http": [1, 2, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 29, 36, 41, 45, 46, 47, 52, 54, 55, 57, 58, 59, 60, 62, 64, 65, 74, 82, 84, 87, 88, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 118, 120, 121, 124, 125, 127, 128, 129, 130, 133, 135, 136, 144], "http_port": 4, "http_refer": 85, "http_user_ag": 85, "http_x_forwarded_escaped_uri": 82, "http_x_forwarded_for": 85, "httpd": [2, 10, 12, 13, 18, 19, 48, 51, 52, 53, 55, 59, 84, 98, 100, 102, 103, 104, 105, 107], "httpd24": [2, 10, 18, 19, 84, 98, 100, 102, 103, 104, 105, 106], "httpd_can_network_connect": 60, "httpd_enable_homedir": 102, "httpd_execmem": 102, "httpd_mod_auth_pam": 60, "httpd_read_user_cont": 102, "httpd_run_stickshift": 60, "httpd_setrlimit": 60, "httpd_unifi": 102, "https_port": 4, "hub": 136, "huge": 127, "hugemem": [127, 139], "human": 20, "hybrid": 54, "hyperthread": 139, "hyphen": [35, 36], "hypothet": 47, "i": [0, 1, 2, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 77, 78, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 95, 96, 97, 100, 102, 104, 106, 108, 109, 110, 111, 112, 113, 115, 116, 118, 119, 121, 122, 124, 126, 127, 128, 129, 130, 131, 133, 134, 136, 137, 138, 139, 141, 142, 143, 144, 145], "i18n": 20, "iam": 27, "ico": [15, 20, 86], "icon": [20, 38, 39, 44, 46, 47, 86, 142, 143, 144], "iconbar": 128, "id": [4, 7, 12, 16, 17, 19, 20, 22, 30, 32, 34, 36, 46, 47, 51, 58, 63, 64, 65, 71, 85, 86, 87, 90, 103, 104, 107, 111, 119, 127, 138, 139], "id_": 104, "idattr": 4, "idea": [20, 62, 111, 115, 116], "ideal": 20, "ident": [5, 7, 8, 14, 20], "identifi": [20, 85], "idl": [18, 49, 85, 91], "idletimeout": 91, "idp": [2, 7, 8, 11, 13, 18, 20, 64], "idp_issuer_url": 64, "idpdev": [14, 16, 17, 18, 19], "idphint": 7, "idpmetadata": 2, "idtoken": 4, "ie": [16, 71, 108], "ifmodul": 49, "ifnotpres": 139, "ifram": 20, "ignor": [41, 58, 65, 71, 85, 103], "ihpc": 47, "illeg": [53, 68], "illustr": [0, 27, 35], "imag": [20, 39, 46, 63, 65, 86, 87, 89, 92, 93, 101, 103, 107, 132, 134, 138, 139], "image_pull_polici": 139, "image_pull_secret": 64, "imagin": 35, "img": [15, 90], "immedi": [29, 65, 140], "impact": [108, 130], "implemen": 131, "implement": [20, 27, 65, 102, 109, 126, 128, 131, 142, 143, 144], "implicitli": [41, 58], "import": [2, 17, 23, 27, 29, 42, 49, 51, 62, 64, 86, 92, 101, 138, 139, 142, 143, 144], "impos": 65, "improv": [62, 68, 96, 105, 107, 109], "inaccess": [105, 107], "inact": [20, 108], "inbetween": 64, "inch": 91, "incid": 108, "includ": [0, 2, 8, 10, 15, 18, 20, 23, 24, 29, 30, 36, 42, 47, 51, 53, 54, 56, 58, 60, 64, 65, 69, 79, 85, 86, 95, 98, 101, 102, 103, 104, 105, 107, 109, 128, 134, 136, 143, 145], "inclus": [105, 107], "incom": 20, "incommon": [1, 17], "incompat": 104, "incorpor": 36, "incorrectli": [65, 107], "increas": [12, 20, 29, 49, 85, 86, 99, 104, 107, 108], "increment": 36, "inde": [44, 56], "indent": [20, 58], "index": [15, 20, 47, 142, 143], "indic": [38, 57, 86, 90, 102, 104, 142, 143, 144], "indirect": 107, "individu": [29, 64, 65, 98, 109, 141], "info": [16, 18, 20, 31, 48, 62, 64, 71, 87, 98, 121, 129], "inform": [2, 7, 9, 13, 20, 23, 27, 28, 31, 34, 36, 46, 49, 50, 51, 53, 58, 65, 69, 86, 87, 95, 101, 102, 103, 104, 105, 106, 109, 121, 129], "infra": 17, "infrastructur": [2, 73, 94], "ing": 20, "ingest": 20, "inheret": 44, "inherit": 20, "ini": [20, 85], "init": [5, 82, 113, 128, 139, 142], "init_contain": 138, "initi": [0, 14, 20, 30, 37, 46, 51, 63, 86, 87, 90, 93, 98, 101, 104, 121, 129, 138, 139, 141], "initialzi": 138, "inject": 105, "inkei": 2, "input": [4, 12, 24, 35, 36, 37, 47, 60, 84, 90], "input_path": 90, "input_us": 12, "inquiri": 109, "insecur": [1, 41, 55], "insecureskipverifi": 4, "insensit": 20, "insert": [17, 20, 41, 104], "insid": [10, 20, 45, 60, 64, 92, 111, 134, 139], "instal": [1, 7, 8, 9, 10, 13, 14, 17, 20, 21, 24, 25, 28, 30, 40, 41, 43, 47, 48, 51, 53, 58, 60, 62, 63, 65, 67, 68, 69, 71, 78, 84, 85, 86, 87, 92, 95, 96, 97, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 111, 118, 122, 124, 131, 133, 137, 139, 140, 141, 142, 143], "install_bas": 18, "instanc": [0, 5, 7, 14, 18, 20, 26, 27, 47, 53, 57, 81, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 114, 141], "instanti": 20, "instantli": 113, "instead": [12, 14, 18, 19, 20, 23, 24, 36, 45, 47, 58, 62, 65, 69, 87, 90, 91, 93, 100, 101, 102, 103, 104, 105, 107, 111, 112, 121, 129, 140], "institut": [1, 16, 20, 26, 53, 54, 86, 107], "instruct": [4, 5, 7, 20, 21, 31, 35, 54, 94, 97, 102, 103, 105, 106, 117, 123], "integ": [4, 24, 36, 45, 46, 85, 86, 87, 89, 90, 91, 101], "integr": [2, 53, 64, 141], "intel": [36, 128, 139], "intend": [25, 27, 42, 43, 46, 97, 108, 115, 122, 131, 137], "interact": [0, 4, 22, 23, 24, 25, 28, 29, 34, 35, 36, 37, 38, 42, 43, 45, 46, 47, 48, 51, 53, 56, 58, 60, 64, 65, 66, 72, 86, 95, 96, 97, 99, 100, 101, 102, 103, 106, 108, 114, 115, 116, 117, 118, 120, 123, 124, 125, 126, 132, 133, 135, 138, 139], "interactive_apps_menu": [20, 86], "interest": [14, 20, 55, 59, 111, 144], "interfac": [19, 20, 29, 47, 64, 72, 86, 96, 97], "interfer": 100, "interim": 130, "interm": [18, 57], "intermedi": [36, 55, 57], "intern": [45, 46, 47, 51, 85, 87, 98, 105, 121, 129], "internation": [20, 100, 101], "interpol": [20, 42, 58, 85], "interpret": 90, "interv": [64, 86, 107], "intervent": 36, "intro": 20, "introduc": [20, 99, 107, 115, 118, 124, 133, 145], "introduct": [1, 45, 47, 53, 99], "intuit": 99, "invalid": [20, 102, 118, 124, 133], "invers": 20, "invert": 20, "invoc": 63, "invok": 123, "involv": [35, 55, 59], "io": [0, 20, 47, 64, 138], "ip": [20, 41, 64, 87, 105, 107, 138], "iptabl": [4, 60], "irrespect": [79, 118, 124, 133], "isol": [29, 109], "issu": [20, 22, 36, 46, 51, 55, 57, 59, 64, 65, 66, 67, 69, 71, 72, 85, 87, 101, 103, 104, 105, 109, 113, 123, 140, 142, 143, 144], "issuer": 20, "item": [5, 24, 31, 35, 44, 45, 64, 86, 88, 89, 91, 103, 105, 139], "its": [13, 20, 24, 29, 36, 51, 65, 85, 98, 99, 101, 103, 105, 109, 111, 121, 129, 130, 140, 145], "itself": [15, 20, 26, 30, 44, 51, 61, 69, 85, 108, 110, 113, 138, 139], "j": [4, 28, 31, 36, 59, 60, 71, 85, 86, 99, 100, 103, 104, 108, 112, 113, 123, 141], "jammy_al": [59, 106, 107], "jan": [12, 98], "januari": 98, "jar": 5, "jason": 102, "jasonbuechl": 102, "java": [18, 113, 123], "java2d": 130, "java_opt": 130, "javas": 130, "javascript": [20, 35, 36, 86, 104, 107, 126], "jboss": 18, "jdenni": 2, "jdk": 18, "jeff": 12, "jessi": 12, "jiao": [54, 103], "jim": 74, "jk": 18, "jnickla": 71, "job": [21, 22, 24, 25, 26, 28, 29, 31, 32, 34, 36, 39, 41, 42, 43, 44, 46, 47, 51, 53, 55, 56, 61, 62, 63, 64, 66, 67, 69, 70, 71, 72, 86, 88, 89, 90, 91, 93, 97, 99, 105, 106, 107, 113, 114, 117, 119, 121, 122, 123, 127, 128, 129, 130, 131, 132, 137, 138, 139], "job_environ": [45, 90], "job_id": [32, 63], "job_info_memory_cache_s": 66, "job_nam": [52, 90], "job_script_cont": [119, 139], "job_script_opt": 119, "jobcompos": 20, "jobid": [20, 58, 62], "jobid_regex": 63, "joel": 101, "johndo": 102, "johrstrom": [29, 65], "join": [20, 27, 46, 62, 128], "journal": 12, "journalctl": 12, "jqueri": [35, 104], "json": [18, 20, 64, 86, 119, 142], "jul": 29, "jupit": 20, "jupyt": [0, 20, 28, 31, 37, 41, 47, 51, 53, 54, 56, 58, 87, 95, 96, 98, 99, 108, 109, 113, 114, 115, 116, 119, 121, 122, 129, 131], "jupyter_api": [34, 139], "jupyter_experiment": 54, "jupyter_group": 20, "jupyterlab": 37, "jupyterlab_switch": 34, "just": [20, 24, 27, 29, 30, 36, 45, 47, 58, 61, 64, 71, 85, 86, 87, 98, 102, 103, 104, 112, 118, 124, 133, 136, 138, 139, 144], "juypter": 34, "juypterlab": 34, "k8": [64, 138, 139], "k8s_username_prefix": 64, "karlsson": 107, "kb": [20, 102], "kc_restart": 18, "keep": [14, 17, 19, 20, 44, 45, 49, 65, 86, 103, 106, 111], "kei": [2, 4, 18, 24, 36, 37, 38, 57, 58, 64, 65, 69, 85, 86, 93, 107, 109, 128], "kept": 20, "kerbero": 60, "kernel": [51, 58], "keycloak": [1, 8, 15, 20, 55, 87, 96], "keycloak_access_ssl": 18, "keycloak_duo_spi_buildbox": 5, "keycloak_error_ssl": 18, "keycloak_ident": 18, "keycloak_sess": 18, "keycloak_state_check": 18, "keycloakpass": 18, "keyfil": 128, "keyword": 20, "kib": 20, "kill": [46, 64, 65, 79, 83, 102, 108, 142, 143, 144], "kind": [1, 57, 64, 87], "know": [14, 17, 30, 34, 36, 57, 64, 85, 87, 90, 102, 105, 109, 110, 139], "knowledg": [20, 110], "known": [7, 8, 19, 34, 47, 87, 99, 100, 108, 113, 123, 140], "known_host": 65, "ktrout": 87, "kube": [64, 87], "kubeconfig": [64, 138, 139], "kubectl": 64, "kubernet": [53, 56, 60, 113], "l": [2, 18, 23, 29, 41, 46, 71, 86, 103, 121, 129, 139], "l138": 62, "l148": 62, "lab": [34, 37], "label": [0, 20, 21, 23, 31, 36, 37, 52, 58, 115, 116, 121, 127, 129, 136, 139], "lack": 65, "laid": 20, "land": [20, 105, 107], "landscap": 109, "lang": [92, 130], "languag": [23, 92, 104, 105, 107, 142, 143], "larg": [35, 45, 89, 103, 107, 139, 145], "large_clust": 45, "largemem": 139, "larger": 103, "largest": 89, "last": [20, 24, 36, 64, 105, 106, 140], "lastli": [20, 36, 138], "lastusedthreshold": 64, "later": [18, 29, 36, 46, 86, 115, 138], "latest": [5, 15, 47, 52, 92, 98, 99, 100, 108, 109, 128], "latter": 44, "launch": [18, 21, 22, 24, 25, 29, 31, 34, 36, 39, 42, 43, 46, 51, 53, 62, 63, 71, 82, 86, 87, 93, 95, 96, 99, 100, 101, 111, 112, 113, 115, 116, 117, 118, 119, 121, 122, 123, 124, 129, 131, 132, 133, 134, 136, 137, 138, 139, 140, 142, 143, 144], "launcher": [134, 136], "layout": [53, 86, 101, 105, 107, 111], "lc_all": 92, "ld_library_path": [71, 85, 93, 134], "ldap": [1, 6, 14, 16, 18, 60, 64, 79, 103, 107, 109], "ldap1": 17, "ldap2": 17, "lead": [20, 71, 85], "learn": [119, 121, 129], "least": [49, 145], "leav": [17, 20, 24, 36, 58, 127], "left": [5, 6, 16, 17, 20, 37, 39, 55, 58, 59, 86, 96, 103, 104, 107, 118, 124, 133], "leftov": 46, "length": [20, 46, 65], "lenoard": 107, "less": [20, 36, 98, 102, 109], "let": [12, 14, 17, 20, 24, 27, 30, 35, 36, 41, 44, 57, 62, 71, 102, 105, 109, 111, 130, 138, 139, 143], "letsencrypt": 87, "letter": 36, "level": [0, 20, 36, 58, 62, 71, 87, 105], "leverag": [47, 115, 116], "lexic": 10, "lib": [4, 12, 18, 58, 62, 65, 66, 68, 72, 82, 85, 87, 99, 100, 134, 139], "lib64": [58, 65, 71], "libapache2": 2, "libari": 136, "libdir": 66, "libdrmaa": 68, "libdrmaa_path": 68, "libexec": 2, "librari": [27, 30, 32, 35, 46, 55, 58, 59, 63, 67, 71, 72, 87, 89, 101, 106, 107, 136, 142, 143], "libtorqu": 72, "licens": [20, 29, 45, 54, 107, 126], "license_fil": 45, "life": [104, 145], "lifetim": 64, "light": [0, 20, 86], "lightweight": 4, "like": [6, 7, 12, 18, 20, 22, 23, 24, 27, 29, 31, 35, 36, 39, 42, 45, 46, 49, 50, 51, 53, 54, 55, 56, 57, 59, 63, 64, 65, 66, 67, 68, 69, 70, 72, 86, 87, 89, 90, 91, 99, 103, 104, 105, 107, 109, 111, 113, 121, 127, 128, 129, 134, 138, 140, 142, 143, 145], "likelihood": 54, "likewis": 136, "limit": [36, 46, 53, 54, 58, 64, 69, 85, 90, 105, 107, 126, 138], "limit_in_byt": 65, "line": [0, 12, 18, 20, 23, 30, 37, 38, 41, 45, 55, 60, 65, 68, 69, 71, 85, 102, 115, 116, 119, 121, 128, 129, 130, 138], "link": [3, 6, 11, 15, 16, 22, 29, 30, 41, 47, 53, 54, 55, 58, 64, 85, 86, 87, 101, 103, 106, 118, 119, 124, 133], "linux": [12, 47, 52, 55, 58, 59, 60, 64, 65, 104, 105, 107, 108], "linux_host": 65, "linuxhost": [21, 53, 56, 102], "linuxhost_adapt": 65, "linuxhost_submit": 23, "linuxhostadapt": 65, "list": [1, 19, 20, 22, 29, 30, 36, 38, 44, 45, 47, 54, 56, 58, 62, 64, 65, 71, 76, 80, 85, 86, 87, 91, 92, 93, 95, 96, 97, 99, 100, 101, 102, 104, 105, 106, 107, 112, 113, 114, 118, 119, 124, 128, 133, 141, 142, 143], "listen": [4, 18, 41, 47, 52, 87, 138, 142], "listen_addr_port": 87, "listenbacklog": 49, "littl": [18, 36, 139], "live": [46, 70, 87], "ll": [7, 12, 20, 24, 27, 36, 39, 63, 64, 65, 68, 89, 91, 98, 102, 104, 112, 138, 139, 143], "lmod": [107, 122, 127, 131, 134, 137, 139], "lmod_dir": 86, "lmodfil": 134, "ln": [29, 30, 111, 112, 118], "load": [10, 17, 18, 20, 42, 46, 51, 52, 58, 62, 71, 86, 89, 92, 93, 99, 100, 101, 104, 106, 107, 119, 122, 127, 128, 131, 134, 137, 142, 143, 144], "load_script": 62, "load_serv": 144, "loadmodul": 49, "local": [7, 9, 12, 16, 23, 41, 42, 44, 57, 58, 60, 63, 64, 65, 66, 67, 68, 69, 72, 84, 86, 87, 98, 100, 110, 113, 114, 115, 118, 124, 133, 134, 138, 139, 144], "local_usernam": 12, "localdomain": 12, "localfil": 86, "localhost": [4, 12, 18, 20, 46, 52, 65, 99, 103], "localiz": 20, "locat": [2, 4, 10, 11, 18, 19, 20, 22, 23, 24, 36, 41, 45, 46, 47, 48, 51, 57, 62, 85, 86, 87, 97, 98, 100, 102, 104, 106, 109, 111, 115, 118, 119, 120, 121, 124, 125, 127, 129, 133, 134, 135, 138, 140], "lock": 57, "log": [5, 11, 12, 13, 16, 17, 18, 20, 22, 46, 47, 48, 53, 58, 60, 62, 64, 68, 71, 82, 85, 87, 97, 99, 100, 101, 104, 105, 106, 109, 119, 142], "log_level": 138, "log_me_out": 87, "log_out": 20, "logformat": 87, "logger": 12, "logic": [4, 20, 46, 47, 104, 105, 139, 143], "login": [4, 5, 15, 16, 17, 18, 20, 24, 25, 26, 30, 41, 42, 47, 51, 55, 56, 63, 64, 65, 66, 67, 68, 69, 70, 72, 87, 90, 99, 102, 103, 104, 112, 115], "login01": [29, 58, 65], "login02": 65, "login03": 65, "login_url": 34, "loginalertmessag": 20, "loginalerttyp": 20, "loginbuttontext": 20, "loginlogo": 20, "logintitl": 20, "logo": [15, 20, 29, 86, 93, 100], "logo_img_tag": 20, "logout": [1, 8, 9, 13, 19, 20], "logout_redirect": [8, 11, 13, 19, 87], "logout_uri": 87, "logroot": 87, "long": [20, 36, 46, 86, 98, 101, 140], "longer": [12, 20, 35, 86, 100, 101, 102, 103, 106, 107, 111, 112], "look": [4, 12, 18, 20, 24, 31, 36, 38, 46, 51, 56, 58, 63, 64, 65, 66, 67, 68, 69, 71, 72, 85, 86, 87, 98, 103, 104, 111, 118, 119, 121, 124, 127, 128, 129, 133, 138, 139, 144], "lookup": [7, 139], "loop": [27, 115, 139], "lost": 104, "lot": [24, 27, 48, 49, 138, 139], "louthan": 53, "lower": [12, 20, 36], "lowercas": [12, 34, 36], "lowest": 89, "lsb": 66, "lsb_mbd_port": 66, "lsb_query_enh": 66, "lsb_query_port": 66, "lsf": [45, 53, 55, 56, 58, 86, 90, 95, 96, 100], "lsof": [108, 134], "lua": [12, 19, 27, 87, 104, 134], "lua_log_level": [12, 87], "lua_root": 87, "luahookfixup": 19, "ly": 20, "m": [4, 5, 12, 18, 46, 52, 53, 60, 69, 101, 119, 121, 129, 142, 143, 144], "mac": 47, "machin": [20, 26, 45, 55, 57, 65, 92, 107, 120, 125, 135], "made": [4, 20, 28, 31, 36, 47, 84, 98, 100, 102, 103, 104, 105, 106, 107, 109, 119, 121, 127, 129, 139], "mah": 128, "mai": [4, 6, 10, 12, 17, 18, 20, 22, 24, 27, 29, 30, 32, 36, 39, 40, 42, 44, 45, 46, 47, 48, 49, 51, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 68, 69, 71, 85, 86, 87, 90, 93, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 114, 122, 126, 127, 130, 131, 134, 136, 137, 138, 139, 142, 145], "mail": [4, 98], "mailer": 20, "main": [5, 14, 31, 36, 42, 44, 56, 62, 64, 86, 89, 102, 119, 121, 127, 129, 134, 139, 142, 145], "maintain": [85, 95, 96, 97, 100, 104, 106, 109, 118, 124, 133, 136], "mainten": [53, 69, 87, 98, 105, 107, 109], "maintenance_ip_allowlist": [20, 87, 105, 107], "maintenance_ip_whitelist": [105, 107], "major": [47, 53, 101, 136], "make": [4, 8, 12, 16, 18, 20, 23, 24, 27, 28, 34, 35, 36, 47, 52, 60, 65, 71, 73, 95, 96, 97, 105, 107, 108, 110, 111, 112, 118, 121, 124, 127, 128, 129, 133, 138, 139], "malici": [20, 41, 46, 105], "maluf": 102, "man": 65, "manag": [1, 16, 20, 22, 23, 29, 36, 39, 45, 53, 55, 56, 58, 59, 60, 63, 65, 66, 67, 68, 69, 71, 72, 87, 98, 99, 102, 107, 115, 116, 117, 123, 130, 131, 139, 140], "managementfactori": 130, "mani": [7, 20, 27, 29, 49, 56, 58, 59, 64, 65, 85, 86, 105, 138, 140], "manifest": [28, 31, 36, 107, 142, 143, 144], "manipul": [36, 45, 53, 64], "manner": [20, 105], "manpath": [85, 93], "manual": [10, 19, 62, 63, 65, 85, 86, 102, 108, 118, 124, 133], "map": [1, 2, 9, 13, 14, 18, 20, 58, 64, 85, 86, 87, 93, 99, 106, 127], "map_fail_uri": 87, "mapfil": [7, 87], "mapped_us": 7, "mapper": 64, "marco": 128, "mark": 145, "markdown": [20, 24, 32, 36, 98, 104], "markdown_erb": 20, "master": [17, 18, 20, 55, 59, 64, 142, 143, 144], "match": [5, 12, 20, 22, 41, 51, 62, 64, 65, 84, 85, 87, 101, 115], "mate": [21, 24, 25, 123, 131, 140], "matei": 128, "mathwork": 130, "matlab": [28, 29, 36, 53, 54, 113, 126, 127, 129, 130, 131], "matlab_env": 130, "matlab_root": 130, "matlabcentr": 130, "maven": 5, "max": [31, 36, 37, 65, 85, 127], "max_item": 20, "max_port": [46, 89], "max_result": 27, "max_siz": 20, "maxim": [101, 113], "maximum": [20, 35, 36, 46, 85, 86], "maxrequestsperchild": 49, "maxrequestwork": 49, "maxsparethread": 49, "mayank": 105, "mayb": [20, 65, 145], "mbd_refresh_tim": 66, "md": [20, 31, 54, 86, 98], "mdq": 7, "me": [17, 47, 87], "mean": [4, 7, 16, 18, 20, 23, 24, 29, 36, 38, 42, 55, 98, 99, 100, 102, 103, 104, 105, 106, 107, 112, 121, 129, 142, 143, 144], "meant": [25, 27, 43, 83, 104, 122, 131, 137], "measur": 27, "mechan": [4, 20, 29, 87, 98, 103, 105], "media": [23, 65, 134], "medium": 35, "meet": [20, 65, 102], "mellon": 2, "mellon_create_metadata": 2, "mellon_endpoint": 2, "mellon_metadata": 2, "mellon_user_guid": 2, "mellonen": 2, "mellonendpointpath": 2, "mellonidpmetadatafil": 2, "mellonspcertfil": 2, "mellonspmetadatafil": 2, "mellonspprivatekeyfil": 2, "mem": [23, 90, 121, 129], "member": [4, 20, 29, 107], "membership": 58, "memori": [20, 45, 49, 58, 65, 71, 90, 107, 108, 126, 127, 138, 139], "memory_limit": 138, "memory_mb": 139, "memory_request": 138, "memoryaccount": 65, "memorylimit": 65, "memsw": 65, "mention": 54, "menu": [5, 16, 22, 36, 37, 38, 39, 53, 58, 86, 96, 98, 99, 100, 103, 104, 105, 107, 111, 118, 124, 128, 133, 142, 143, 144], "menufil": 128, "merg": [4, 62, 99, 100, 102], "messag": [12, 15, 21, 36, 37, 51, 53, 65, 71, 84, 86, 87, 102, 115, 116, 118, 124, 133], "messages_en": 15, "metadata": [2, 7, 20, 38, 41, 42, 56, 58, 63, 64, 65, 66, 67, 68, 69, 72, 103, 115], "method": [24, 29, 34, 36, 46, 47, 58, 65, 93, 99, 107, 109, 115, 116], "metric": [27, 52, 64, 108], "metrics_path": 52, "mfa": 5, "mgd": 107, "mi": 139, "michael": 107, "micket": 105, "micro": 103, "microsoft": 108, "mid": 101, "midnight": 90, "might": [18, 20, 29, 30, 52], "migrat": [20, 97], "miller": 101, "millicor": 138, "millisecond": [20, 86], "mime": 85, "mime_types_path": 85, "mimic": [23, 71, 121, 129], "min": [31, 36, 37, 127], "min_port": [46, 89], "min_uid": 85, "mind": 65, "minim": [20, 21, 140], "minimal_": 20, "minimum": [35, 36, 85, 108], "minor": 53, "minsparethread": 49, "minut": [20, 108], "mirror": 136, "mirrorurl": 136, "misbehav": 46, "misc": [111, 112], "miser": 22, "miss": [53, 105], "missing_home_directori": 20, "mistak": 20, "mit": 54, "mitig": [104, 130], "mix": [58, 107], "mjbludwig": 54, "mjob": 101, "mkdir": [4, 20, 22, 29, 30, 52, 56, 71, 98, 118, 124, 128, 133, 142, 143], "mktemp": 128, "mm": 101, "mnakao": 105, "mnt": [23, 65, 134], "mod": [2, 18, 57], "mod_auth_ca": 3, "mod_auth_mellon": [1, 55], "mod_auth_oidc": 11, "mod_auth_openidc": [8, 14, 87, 106, 107], "mod_auth_openidc_sess": [7, 8, 19], "mod_auth_openidc_session_0": [7, 8, 19], "mod_auth_openidc_session_1": [7, 8, 19], "mod_auth_openidc_session_chunk": [7, 8, 19], "mod_auth_shib": 11, "mod_authn_": 13, "mod_head": 18, "mod_mpm_ev": 49, "mod_ood_proxi": [12, 87, 96, 97, 98], "mod_proxi": 20, "mod_shib": 13, "mod_ssl": [2, 57], "modal": [37, 39], "mode": [17, 29, 37, 48, 53, 66, 87, 100, 141], "model": [0, 20, 29], "modern": 108, "modif": [13, 15, 18, 24, 36, 86, 98, 100, 105], "modifi": [4, 10, 13, 15, 18, 19, 20, 21, 22, 23, 29, 30, 36, 40, 41, 53, 54, 64, 65, 84, 85, 87, 93, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 113, 117, 123, 134, 138, 139], "modul": [1, 2, 11, 13, 19, 23, 36, 41, 42, 46, 49, 51, 56, 58, 59, 65, 86, 87, 89, 91, 92, 103, 104, 105, 106, 107, 115, 116, 119, 121, 122, 127, 128, 129, 131, 134, 137, 142, 144], "modular": 107, "module_file_dir": 86, "module_path": 134, "modulepath": 86, "moment": 111, "mon": 18, "mondai": 20, "monitor": [53, 130, 140], "monolith": [99, 100], "monorepo": 102, "month": [27, 108, 145], "more": [0, 1, 2, 7, 9, 11, 12, 17, 20, 23, 24, 29, 30, 36, 41, 45, 47, 48, 49, 51, 56, 57, 58, 64, 68, 69, 71, 86, 87, 95, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 116, 121, 129, 138, 139, 142, 143, 145], "most": [1, 10, 12, 14, 20, 22, 23, 35, 36, 45, 46, 49, 64, 65, 85, 86, 98, 100, 101, 104, 121, 129, 134], "mostli": [111, 145], "motd": [29, 53, 86, 100], "motd_format": 20, "motd_path": 20, "motd_render_html": 86, "motd_titl": 20, "mount": [23, 60, 64, 65, 92, 113, 134, 136, 142], "mount_path": 138, "mountpoint": 92, "move": [29, 48, 59, 97, 98, 99, 104, 113, 118, 124, 130, 133, 134], "mozilla": 108, "mp": 140, "mpi": 127, "mpm": 49, "mpm_event_modul": 49, "mpm_prefork_modul": 49, "mrodger": 29, "msc": 18, "msg": [20, 98], "much": [20, 39, 49, 58, 64, 98, 104, 139], "multi": [18, 38, 66, 69], "multiphys": 54, "multipl": [12, 17, 20, 24, 29, 36, 37, 85, 86, 87, 93, 102, 107, 114, 127], "multipli": 49, "multitud": [87, 97], "mung": [60, 69, 139], "muse": 111, "must": [1, 4, 16, 20, 22, 23, 24, 34, 36, 37, 45, 46, 47, 49, 52, 54, 56, 60, 62, 64, 65, 68, 86, 102, 103, 104, 105, 106, 107, 110, 115, 116, 118, 120, 124, 125, 133, 134, 135, 136, 138, 139], "mv": [2, 98, 115], "mvn": 5, "my": [10, 11, 13, 20, 23, 24, 27, 29, 36, 38, 41, 44, 47, 56, 63, 64, 65, 66, 67, 68, 69, 72, 85, 86, 87, 91, 92, 105, 107, 115, 118, 124, 133, 142, 143], "my_app": [31, 36, 44, 45, 46, 47], "my_app_imag": 90, "my_app_img": 90, "my_cent": [4, 20, 41, 42, 47, 55, 56, 57, 63, 64, 66, 67, 68, 69, 72, 115, 118, 120, 124, 125, 133, 135], "my_clust": [20, 23, 24, 56, 63, 66, 67, 68, 69, 72, 86, 98, 103, 115, 116, 119, 121, 129, 134], "my_cluster_widget": 20, "my_conf": 84, "my_cool_form_item": 107, "my_custom_attribut": 36, "my_custom_script": 45, "my_env_var": 20, "my_k8s_clust": 64, "my_module_vers": 36, "my_new_widget": 20, "my_other_clust": 103, "my_pun_app": 87, "my_pun_control": 87, "my_queu": 45, "my_schedul": 63, "my_site_hook": 87, "my_submit": 23, "my_uri": 87, "myaccount": 71, "myapp": [74, 98, 143], "mycent": 20, "myclust": 66, "mydomain": 20, "myfil": 84, "myfold": [20, 86], "myjob": [20, 29, 58, 62, 96, 98, 101], "mysit": 20, "mysql": 14, "n": [7, 20, 23, 27, 45, 58, 61, 62, 64, 68, 71, 74, 78, 79, 82, 88, 90, 121, 129, 143], "n0001": 41, "n0691": 41, "name": [4, 5, 7, 8, 13, 15, 16, 17, 18, 29, 30, 36, 38, 39, 41, 44, 46, 47, 52, 53, 54, 55, 56, 57, 58, 63, 64, 65, 69, 71, 85, 86, 87, 89, 90, 91, 93, 96, 101, 104, 105, 107, 111, 115, 118, 121, 124, 126, 127, 129, 130, 133, 136, 138, 139, 142, 143, 144], "nameattr": 4, "nameid": 2, "namespac": [0, 20, 46, 58, 64, 65, 74, 77, 85], "namespace_prefix": 64, "namespacelabel": 64, "namespacelastusedannot": 64, "namespaceregexp": 64, "nation": 7, "nativ": [23, 31, 36, 45, 64, 65, 88, 90, 107, 108, 115, 116, 121, 129, 138, 139], "native_vnc_login_host": 47, "nav": 20, "nav_bar": [20, 86], "nav_categori": [20, 86, 105, 107], "nav_help_custom": [16, 20], "navbar": [20, 85, 86, 98, 100, 104], "navbar_typ": [20, 86], "navconfig": [99, 100], "navig": [16, 22, 36, 37, 38, 41, 53, 64, 86, 98, 99, 102, 104, 105, 106, 107, 109, 111, 112, 118, 120, 124, 125, 133, 135, 142, 143], "navlogo": 20, "nb": [19, 85], "nb_gid": [138, 139], "nb_uid": [138, 139], "nb_user": [138, 139], "nc": 41, "ncat": [43, 108], "ncpu": [23, 121, 129], "nearing": 20, "nearli": 102, "necessari": [4, 5, 20, 36, 46, 60, 64, 65, 101, 102, 103, 108, 131, 140], "necessarili": 71, "need": [4, 7, 8, 10, 12, 13, 14, 15, 18, 19, 20, 22, 23, 24, 27, 29, 34, 35, 36, 38, 40, 42, 43, 44, 45, 46, 47, 49, 51, 52, 54, 55, 57, 58, 59, 62, 63, 64, 65, 68, 71, 72, 85, 87, 88, 89, 90, 92, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 109, 111, 112, 115, 116, 118, 121, 124, 128, 129, 131, 133, 136, 138, 139, 140, 142, 143, 144, 145], "nest": 4, "netbean": [23, 65], "netbeans_2019": [23, 65], "network": [18, 64, 87], "network_policy_allow_cidr": 64, "never": [10, 17, 20, 42, 59, 62, 86, 99, 105, 106, 138], "new": [4, 5, 10, 13, 14, 19, 20, 23, 27, 29, 30, 36, 37, 38, 39, 44, 46, 47, 52, 55, 59, 64, 85, 86, 94, 95, 96, 97, 99, 100, 111, 118, 120, 121, 124, 125, 129, 133, 135, 138, 139, 142, 143, 144, 145], "new_app": 29, "new_app_group": 29, "new_app_us": 29, "new_featur": 111, "new_tab": 20, "new_window": [20, 38, 104], "newer": [8, 27, 102], "newjob_refresh": 66, "newli": [17, 20, 77], "newlin": [12, 101], "next": [20, 23, 34, 53, 64, 90, 101, 105, 111, 115, 116, 119, 121, 129, 134, 138, 139, 145], "next_url": 34, "nextwindow": 128, "nextworkspac": 128, "nf": [60, 138], "nfsroot": 139, "nginx": [0, 12, 19, 20, 26, 28, 51, 52, 53, 62, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 85, 93, 97, 98, 99, 102, 103, 104, 105, 106, 107, 108, 109, 119, 141, 142, 143, 144], "nginx16": [99, 100], "nginx_bin": 85, "nginx_clean": [83, 85, 104, 105, 106], "nginx_file_upload_max": [20, 85], "nginx_handl": 19, "nginx_list": 83, "nginx_show": 83, "nginx_sign": 85, "nginx_stag": [20, 30, 53, 73, 83, 86, 87, 93, 95, 96, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107], "nginx_stage_exampl": [85, 93, 99], "nginx_uri": 87, "night": 145, "nightli": 53, "nil": [20, 27, 86, 89, 90, 91, 98], "ningx": 98, "nmap": [43, 108], "nmodul": 58, "no_good_config": 65, "noarch": [59, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "noble_al": [59, 106, 107], "node": [0, 18, 20, 21, 23, 24, 25, 26, 28, 30, 35, 36, 40, 41, 43, 45, 47, 51, 54, 55, 56, 58, 59, 60, 62, 65, 69, 70, 85, 87, 90, 97, 99, 100, 103, 105, 106, 107, 108, 112, 117, 121, 122, 123, 127, 128, 129, 131, 132, 137, 138, 139, 140, 141], "node01": 47, "node02": 47, "node_modul": [99, 100], "node_selector": 139, "node_typ": [23, 24, 35, 107, 127, 128, 139], "node_uri": [41, 87], "nodea": 52, "nodej": [0, 53, 59, 100, 102, 105, 106, 107, 141, 145], "nodejs010": [99, 100], "nodejs10": 104, "nodejs12": 105, "nodejs6": [71, 102], "nologin": [4, 18], "nomenclatur": 0, "non": [4, 20, 45, 62, 64, 65, 109], "none": [17, 35, 36, 62, 69, 90], "nonetheless": 144, "noreset": 61, "normal": [20, 99, 108, 139], "nosoftwareopengl": 128, "notabl": [20, 95, 96, 105, 134], "notat": 20, "note": [2, 7, 16, 20, 29, 36, 37, 39, 46, 51, 53, 58, 62, 63, 64, 71, 85, 86, 87, 90, 92, 115, 118, 124, 133, 138], "notebook": [31, 37, 41, 47, 53, 87, 108, 117, 118, 119, 121, 122, 129, 131, 138, 139], "notebookapp": [47, 138], "noth": [12, 23, 46, 101, 105], "notic": [18, 19, 20, 23, 24, 87, 98, 105, 111, 112, 118, 124, 133], "notifi": 36, "novnc": [21, 54, 86, 102, 108], "novnc_default_compress": [86, 107], "novnc_default_qu": [86, 107], "now": [16, 17, 18, 19, 20, 22, 23, 24, 27, 29, 33, 34, 36, 39, 41, 44, 45, 49, 57, 59, 62, 65, 71, 86, 89, 90, 97, 98, 99, 100, 101, 105, 106, 111, 112, 115, 116, 118, 119, 121, 124, 127, 128, 129, 133, 134, 142, 143, 144], "npm": [111, 112, 142], "nsf": [1, 55, 109], "nslookup": 57, "nsswitch": 139, "ntask": 139, "nuccitheboss": 107, "null": [4, 5, 11, 19, 24, 36, 61, 62, 64, 65, 85, 86, 87, 89, 101, 138, 139, 143], "num": 35, "num_cor": [35, 37, 45, 90, 127, 139], "number": [20, 23, 24, 35, 36, 37, 41, 44, 45, 47, 49, 52, 53, 65, 79, 81, 85, 86, 87, 89, 90, 101, 104, 107, 108, 121, 127, 129], "number_field": [35, 36, 37, 127], "number_of_hour": 45, "nvidia": [35, 127], "nvm": 112, "o": [2, 5, 8, 18, 20, 47, 52, 59, 62, 64, 65, 68, 71, 86, 87, 104, 106, 107, 136, 139, 142, 143, 144], "oak": 71, "oaklei": [7, 12, 22, 35, 56, 64, 107], "oauth": 7, "oauth2": 16, "obatchmod": 62, "object": [17, 20, 27, 31, 36, 47, 85, 86, 87, 90, 127], "objectclass": 4, "objectlabel": 64, "observ": 66, "obsolet": 84, "obtain": 57, "occass": 128, "occur": [49, 61, 84, 96, 107], "oci": 0, "odd": 17, "odic": 64, "oe": 71, "off": [15, 17, 18, 19, 20, 45, 46, 49, 58, 60, 87, 89, 91, 102, 106, 128], "offer": [61, 65, 83, 84, 127], "offici": [103, 108, 130, 145], "often": [63, 138], "ohio": [98, 139], "ohiosupercomput": [5, 138], "oidc": [1, 4, 8, 11, 17, 19, 87, 103, 107], "oidc_access_token": 87, "oidc_claim": 19, "oidc_claim_email": 87, "oidc_claim_preferred_usernam": 87, "oidc_client_id": [7, 8, 87], "oidc_client_secret": [7, 8, 87], "oidc_cookie_same_sit": 87, "oidc_discover_root": 87, "oidc_discover_uri": 87, "oidc_provider_metadata_url": [7, 8, 87], "oidc_remote_user_claim": [7, 8, 12, 87], "oidc_scop": [7, 8, 87], "oidc_session_inactivity_timeout": [7, 8, 87], "oidc_session_max_dur": [7, 8, 87], "oidc_set": [7, 8, 87], "oidc_state_max_number_of_cooki": [7, 8, 87], "oidc_uri": [7, 8, 19, 87], "oidcauthrequestparam": 7, "oidcclientid": [10, 19, 87], "oidcclientsecret": [19, 87], "oidccookiesamesit": 87, "oidccryptopassphras": 19, "oidcpassclaimsa": [7, 8, 19], "oidcpassidtokena": [7, 8, 87], "oidcpassrefreshtoken": [7, 8, 87], "oidcprovidermetadataurl": [19, 87], "oidcredirecturi": 19, "oidcremoteuserclaim": [19, 87], "oidcresponsetyp": 8, "oidcscop": 87, "oidcsessioninactivitytimeout": [19, 87], "oidcsessionmaxdur": [19, 87], "oidcstatemaxnumberofcooki": 87, "oidcstripcooki": [7, 8, 10, 19], "ok": [20, 107, 143], "old": [86, 100, 102, 104, 107], "olddisplai": 61, "older": [86, 102, 103, 105, 106, 107], "omit": [14, 20, 27, 86, 101], "onc": [7, 17, 20, 32, 34, 36, 39, 47, 64, 98, 100, 111], "ondemand": [0, 1, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 22, 25, 28, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 54, 55, 56, 58, 59, 60, 61, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 81, 82, 84, 85, 87, 89, 90, 92, 93, 96, 97, 98, 99, 105, 106, 107, 108, 109, 110, 111, 112, 115, 116, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145], "ondemand_config": 138, "ondemand_export": 52, "ondemand_manage_user_home_dir": 60, "ondemand_manage_vmblock": 60, "ondemand_port": 85, "ondemand_titl": 85, "ondemand_tmux": 65, "ondemand_use_kerbero": 60, "ondemand_use_kubernet": [60, 105], "ondemand_use_ldap": 60, "ondemand_use_nf": 60, "ondemand_use_shell_app": 105, "ondemand_use_slurm": 60, "ondemand_use_smtp": 60, "ondemand_use_ssh": [60, 105], "ondemand_use_sssd": 60, "ondemand_use_torqu": 60, "ondemand_usernam": 64, "ondemand_version_path": 85, "ondemandopen": 103, "one": [0, 7, 19, 20, 30, 35, 36, 44, 45, 51, 56, 58, 64, 65, 87, 89, 90, 93, 98, 99, 101, 102, 103, 104, 105, 110, 118, 124, 133, 139, 140, 142, 143], "ones": [20, 79, 101, 127], "onfailur": [138, 139], "ongo": 109, "onli": [0, 1, 4, 8, 12, 14, 16, 18, 20, 24, 25, 27, 29, 32, 34, 35, 36, 37, 43, 44, 45, 46, 47, 52, 55, 56, 60, 63, 64, 65, 68, 72, 74, 78, 79, 82, 85, 86, 87, 89, 91, 95, 96, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 112, 118, 121, 122, 124, 129, 131, 133, 137, 142, 143, 145], "onlin": 29, "onsubmit": 34, "onto": 85, "ood": [1, 4, 8, 10, 11, 12, 13, 14, 16, 18, 22, 23, 24, 26, 29, 30, 36, 41, 42, 44, 45, 47, 51, 52, 53, 55, 56, 57, 58, 60, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 85, 86, 87, 88, 89, 91, 93, 96, 97, 98, 99, 100, 101, 104, 105, 106, 107, 112, 115, 118, 119, 120, 121, 124, 125, 127, 129, 133, 134, 135, 138, 142, 143, 144], "ood_": [86, 87], "ood_allowlist_path": [20, 105, 107], "ood_app_catalog_url": 29, "ood_app_shar": [29, 104], "ood_auth_map": [8, 12, 95, 96, 97, 98], "ood_balance_path": 20, "ood_balance_threshold": 20, "ood_batch_connect_cache_attr_valu": 36, "ood_bc_ssh_to_compute_nod": [20, 58, 102], "ood_brand_bg_color": [85, 86, 111], "ood_brand_link_active_bg_color": 85, "ood_config_d_directori": [86, 111], "ood_cor": [58, 62, 90, 121, 129], "ood_dashboard_dev_docs_url": 20, "ood_dashboard_docs_url": 20, "ood_dashboard_help_custom_url": [16, 20], "ood_dashboard_logo": 20, "ood_dashboard_logo_height": 103, "ood_dashboard_passwd_url": 20, "ood_dashboard_support_email": 29, "ood_dashboard_support_url": 20, "ood_dashboard_titl": 85, "ood_default_sshhost": 20, "ood_dev_ssh_host": 30, "ood_download_dir_max": 20, "ood_hide_job_arrai": 20, "ood_job_name_illegal_char": [20, 102], "ood_local": [20, 103], "ood_locales_root": 20, "ood_max_script_size_kb": [20, 102], "ood_mod_proxi": 87, "ood_native_vnc_login_host": 47, "ood_oidc_access_token": 87, "ood_port": [2, 4, 7, 8, 10, 11, 13, 19, 20, 41, 53, 73, 84, 98, 101, 102, 103, 104, 105, 106], "ood_portal_exampl": 87, "ood_pun_socket_root": [85, 100], "ood_pun_t": 60, "ood_quota_path": [20, 99], "ood_quota_threshold": 20, "ood_shel": [101, 104], "ood_shell_inactive_timeout_m": 20, "ood_shell_max_duration_m": 20, "ood_shell_origin_check": 20, "ood_shell_ping_pong": 20, "ood_show_job_options_account_field": 98, "ood_ssh_port": 20, "ood_ssh_wrapp": 20, "ood_sshhost_allowlist": 20, "ood_support": [30, 58], "ood_upcase_account": 36, "ood_xdmod_host": 20, "oodappkit": 115, "oodcor": [36, 115, 116, 121, 129], "oodfilesapp": [20, 105, 107], "oodsupport": [30, 138, 139], "opaque_remote_usernam": 12, "open": [1, 4, 6, 7, 9, 10, 12, 13, 14, 17, 20, 22, 30, 31, 35, 37, 38, 39, 40, 41, 42, 44, 45, 47, 48, 49, 51, 54, 55, 56, 59, 60, 61, 62, 65, 66, 69, 70, 72, 73, 84, 85, 86, 87, 89, 97, 99, 103, 105, 106, 107, 109, 110, 111, 118, 119, 124, 127, 133, 142, 143, 145], "open_sess": 65, "open_timeout": 20, "openid": [1, 7, 11, 12, 16, 17, 18, 19, 20, 55, 64, 100], "openjdk": [18, 131], "openldap": [4, 17], "openondemand": [2, 20, 49, 64, 101, 109], "openssl": [2, 18, 19, 122], "oper": [24, 45, 46, 53, 59, 104, 106, 109, 136, 145], "opt": [5, 8, 10, 12, 13, 15, 18, 19, 20, 23, 29, 41, 58, 62, 63, 64, 65, 67, 71, 84, 85, 87, 89, 90, 91, 92, 93, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 130, 134, 138, 139], "optim": [20, 36, 130, 139], "optimis": 54, "option": [1, 2, 4, 10, 12, 22, 23, 24, 28, 31, 33, 36, 37, 38, 41, 42, 44, 46, 47, 52, 55, 57, 58, 63, 64, 65, 66, 67, 68, 69, 72, 75, 76, 80, 83, 86, 100, 102, 103, 104, 107, 109, 114, 115, 116, 118, 121, 122, 124, 126, 127, 129, 130, 131, 133, 137, 138, 140, 142, 143, 144], "options_account_help": 20, "oracl": 130, "order": [10, 13, 16, 20, 24, 27, 36, 47, 51, 53, 54, 58, 64, 65, 93, 105, 107, 130, 134, 140], "oregon": 53, "org": [2, 4, 7, 12, 15, 16, 18, 20, 57, 64, 99, 101, 109, 136, 144], "org_nam": 20, "org_rol": 20, "organ": [2, 20, 105], "organiz": 2, "orgid": [20, 58], "origin": [20, 47, 62, 86, 102, 104, 109, 142, 143, 144], "orin": 98, "os": 106, "osc": [4, 5, 12, 14, 15, 16, 17, 18, 19, 20, 22, 27, 30, 41, 47, 52, 54, 55, 56, 58, 59, 61, 62, 64, 65, 71, 86, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 118, 124, 126, 127, 128, 131, 133, 136, 139, 145], "osc_test": 20, "osu": 58, "osvers": 136, "other": [1, 2, 10, 12, 13, 15, 17, 20, 23, 24, 28, 29, 31, 32, 36, 44, 45, 47, 51, 52, 53, 55, 58, 59, 61, 63, 64, 65, 68, 83, 85, 86, 87, 89, 91, 92, 97, 98, 100, 101, 102, 104, 105, 107, 108, 110, 111, 117, 122, 123, 131, 137, 138, 139, 143, 145], "other_main": 89, "other_users_of_the_clust": 58, "otherwis": [4, 12, 36, 38, 42, 46, 64, 65, 139, 142, 144], "ou": [4, 17], "our": [7, 10, 17, 20, 23, 24, 27, 30, 41, 53, 71, 87, 95, 96, 98, 99, 100, 105, 107, 108, 109, 111, 115, 116, 118, 119, 121, 124, 129, 133, 138, 140], "ourselv": [27, 140], "out": [2, 6, 7, 11, 12, 13, 16, 18, 19, 20, 27, 35, 36, 44, 45, 46, 52, 58, 62, 64, 65, 85, 86, 87, 103, 105, 108, 109, 111, 112, 115, 116, 118, 124, 133], "outag": [69, 102], "outcom": 18, "outlin": [20, 47, 98, 109, 114], "outliv": 20, "output": [12, 46, 47, 49, 50, 51, 58, 62, 63, 71, 86, 89, 90, 99, 101, 115, 119], "output_cluster1_2018": 71, "output_path": [65, 90], "outsid": [0, 8, 10, 13, 20, 23, 64, 70, 100, 102, 139, 145], "over": [17, 20, 38, 57, 59, 86, 87, 98, 108, 109, 118, 124, 133, 143], "overal": 107, "overid": 86, "overidden": 90, "overlai": 128, "overrid": [23, 24, 36, 37, 38, 41, 44, 47, 53, 58, 65, 72, 86, 89, 90, 93, 99, 121, 128, 129, 134], "overridden": [24, 38, 89, 91], "overried": 44, "overview": [1, 28, 51, 53, 55, 88, 109], "overwrit": 98, "overwritten": 65, "owen": [12, 24, 29, 36, 44, 46, 58, 65, 101, 127, 139], "owens_login": [24, 65], "owens_login_desktop": 24, "own": [12, 13, 15, 20, 28, 29, 31, 36, 45, 47, 49, 51, 64, 65, 83, 86, 87, 99, 104, 105, 106, 111, 140], "owner": [30, 85, 104, 118, 124, 133], "ownership": [18, 51, 107], "p": [4, 20, 22, 29, 30, 56, 60, 71, 86, 89, 98, 101, 102, 118, 124, 128, 133], "p100": 127, "p18": 139, "p20": 139, "pack": 64, "packag": [1, 5, 20, 30, 55, 59, 60, 100, 102, 103, 104, 107, 136, 139, 142, 145], "page": [1, 6, 11, 15, 16, 18, 19, 24, 27, 29, 34, 35, 36, 39, 45, 47, 48, 49, 51, 53, 56, 59, 61, 65, 86, 87, 88, 101, 102, 103, 106, 107, 111, 115, 116, 118, 124, 133, 138, 139, 141, 142, 143], "page_cod": 20, "pagepath": 27, "pagin": 27, "pair": [20, 38, 86, 93, 99, 115, 116], "pam": [6, 65], "pam_exec": 65, "pam_keyinit": 65, "pam_limit": 65, "pam_mkhomedir": [20, 99], "pam_servic": 65, "pam_sss": 65, "pam_succeed_if": 65, "pam_systemd": 65, "pam_uid": 65, "pam_unix": 65, "pam_us": 65, "pane": 95, "panel": [20, 31, 39, 58, 104, 128], "panelid": 20, "parallel": 45, "param": [19, 62, 66], "paramet": [17, 20, 22, 28, 31, 36, 85, 89, 91, 104, 105, 113, 117, 119, 123], "paraview": [54, 95], "parent": [44, 65, 99, 100], "parlanc": [138, 139], "pars": [12, 20, 27, 46, 58, 62, 71, 87, 101], "parse_uri": 27, "part": [0, 7, 12, 26, 27, 36, 48, 54, 102, 111, 130], "parti": [41, 58], "partial": [20, 95, 107], "particip": 53, "particular": [0, 22, 23, 36, 51, 104, 118, 124, 133], "particularli": [55, 59, 107, 109], "partit": [36, 53, 85, 108, 113, 115, 116, 139], "pass": [4, 10, 12, 19, 20, 34, 35, 36, 62, 64, 69, 71, 85, 87, 89, 90, 91, 92, 93, 104, 127], "passeng": [28, 38, 52, 53, 81, 82, 85, 98, 102, 103, 104, 105, 106, 107, 108, 142, 143], "passenger40": [99, 100], "passenger_": 85, "passenger_base_uri": 142, "passenger_log_fil": 85, "passenger_max_preloader_idle_tim": 85, "passenger_nodej": 85, "passenger_opt": 85, "passenger_pool_idle_tim": 85, "passenger_python": 85, "passenger_root": 85, "passenger_rubi": 85, "passenger_statu": 52, "passenger_wsgi": 143, "passengerag": 52, "passwd": [46, 91, 138], "passwd_from_secret": 138, "password": [4, 5, 18, 19, 20, 31, 46, 62, 63, 64, 65, 71, 89, 91, 122, 138], "password_field": 36, "password_fil": 46, "password_s": 89, "password_sha1": 138, "passwordless": 65, "passwordplacehold": 20, "past": [20, 64, 101, 108], "patch": 53, "path": [4, 12, 13, 18, 20, 23, 29, 37, 41, 42, 47, 52, 58, 60, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 75, 76, 77, 82, 85, 86, 87, 89, 90, 91, 92, 93, 99, 100, 102, 104, 105, 107, 111, 134, 136, 138, 139, 144], "path_selector": [37, 106], "pathnam": [20, 46, 86], "pattern": [20, 36, 87, 104], "paw0003": 20, "pb": [21, 53, 56, 72, 90, 102, 117, 123], "pbs_default": 71, "pbspro": [45, 53, 67, 95, 100], "pcp_dir": 93, "pdf": [97, 101], "peer": 28, "pem": [57, 87], "pencil": 39, "peopl": [4, 17], "per": [0, 12, 18, 20, 26, 36, 65, 74, 77, 78, 79, 80, 81, 82, 85, 91, 93, 98, 99, 103, 104, 108, 109, 119, 121, 127, 129, 139], "percentag": 108, "perfect": 126, "perform": [16, 24, 45, 46, 48, 53, 58, 60, 64, 65, 84, 101, 102, 103, 127, 128, 130, 140], "perhap": 44, "period": [20, 105, 108, 145], "perl": 104, "perl5lib": 93, "perman": [4, 60], "permiss": [4, 8, 10, 18, 19, 20, 27, 46, 58, 62, 85, 99, 109, 115, 118, 124, 133, 142, 143, 144], "permit": [58, 126, 145], "persist": [20, 128, 138], "person": 29, "personel": 26, "perspect": 59, "pfx": 2, "pgrep": 140, "phish": 41, "phusion": 141, "phusion_passeng": 85, "physic": 26, "pick": [45, 111], "picker": 126, "pid": [12, 65, 68, 82, 85, 140], "piec": [65, 111], "pin": [29, 53, 86, 111], "ping": [53, 71, 106], "pinned_app": [20, 29, 86, 104, 111], "pinned_apps_group_bi": [20, 29, 86, 104, 111], "pinned_apps_menu_length": [20, 86, 111], "pip": [92, 143], "pip3": [62, 92], "pipe": 139, "pirat": 128, "pittsburgh": 53, "pitzer": [58, 99, 101, 139], "pitzer_01_login": 58, "pixel": 86, "pizzazz": 47, "pkcs12": 2, "pkg_config_path": 93, "pki": [18, 57, 64], "place": [10, 14, 20, 29, 44, 46, 47, 57, 58, 62, 64, 93, 98, 111, 131], "plai": [39, 111], "plain": [20, 47, 55, 59, 104, 143], "plan": [60, 109], "plantuml": 0, "platform": [20, 28, 38, 47, 49, 53, 105, 107, 109], "pleas": [4, 14, 17, 20, 23, 36, 47, 53, 54, 57, 60, 71, 87, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 115, 116], "plessing": 103, "plu": [134, 136], "plugin": [28, 29, 31, 36, 65, 95, 98, 118, 124, 133], "pm": 98, "pn": 41, "pn001": 41, "pn500": 41, "png": [15, 20, 38, 46, 86], "pod": [64, 138, 139], "point": [15, 16, 20, 23, 36, 41, 46, 57, 64, 71, 83, 84, 87, 111, 112, 118, 143, 144], "polici": [5, 18, 20, 53, 55, 60, 87, 107], "polish": 29, "poll": [65, 86], "pom": 5, "pong": [53, 106], "pool": 70, "popul": [27, 34, 36, 46, 64, 99, 103, 105], "port": [4, 14, 18, 19, 41, 46, 47, 51, 52, 53, 60, 87, 89, 91, 105, 138, 139, 142], "port_cfg": 138, "portabl": 45, "portal": [4, 8, 9, 11, 12, 13, 14, 20, 30, 41, 53, 55, 73, 85, 87, 96, 97, 98, 100, 101, 104, 105, 106, 107], "portal_set": 20, "portion": [20, 27, 47, 87, 100], "posit": [36, 65, 71], "posix": [20, 68], "posixaccount": [4, 17], "posixgroup": 4, "possibl": [20, 24, 29, 32, 41, 45, 46, 47, 53, 57, 62, 64, 65, 72, 78, 89, 90, 99, 102, 107, 109, 112, 121, 129, 134, 145], "possibli": [18, 111], "post": [16, 31, 34, 53, 54, 60, 92, 99, 100], "postur": 20, "potenti": [65, 86, 101, 109], "power": 108, "powerpoint": 0, "powertool": [59, 104], "ppc64le": [107, 108], "ppn": [23, 121, 129], "practic": 109, "pre": [20, 64, 87, 98, 103, 118, 124, 133, 136], "preced": [20, 36, 64, 87], "precis": 68, "predefin": [27, 31, 45, 47, 105], "prefer": [4, 20, 36, 47, 62, 128, 131, 140], "preferred_usernam": [8, 19, 87], "preferredusernameattr": 4, "prefix": [20, 36, 64, 85, 86, 87], "prehook": 64, "prepar": [1, 89, 109], "prepend": [20, 24, 86, 104], "prerequisit": [8, 13, 27], "present": [20, 22, 24, 27, 30, 36, 44, 51, 102, 104, 105, 107, 118, 124, 133, 139], "preserv": 93, "preset": [18, 44], "press": [17, 39, 107], "prevent": [19, 20, 29, 65, 85, 102, 137, 140, 145], "preview": 104, "previou": [20, 24, 36, 97, 98, 99, 100, 102, 103, 107, 143, 145], "previous": [20, 98, 99, 100, 103, 104], "previx": 36, "prevwindow": 128, "prevworkspac": 128, "primari": [0, 29, 36, 47, 65, 98, 109], "print": [7, 41, 62, 64, 65, 84, 89, 121, 129], "prior": [12, 20, 35, 36, 93, 99, 100, 102, 104, 105, 107, 130, 145], "prioriti": 90, "privaci": 10, "privat": [13, 18, 19, 57, 109, 139], "privileg": [20, 22, 64, 65, 83, 87, 109], "privkei": 87, "privleg": 100, "pro": [44, 67], "probabl": [14, 17], "problem": [17, 20, 62, 71, 99, 108, 109, 130], "problemat": [102, 106], "proc": 140, "procedur": [9, 109], "proceed": 59, "process": [0, 23, 30, 45, 46, 47, 48, 65, 68, 74, 78, 79, 80, 81, 82, 83, 85, 87, 92, 93, 98, 101, 104, 107, 108, 109, 115, 116, 121, 129, 140, 141, 142], "process_nam": 52, "processor": [23, 24, 36, 121, 127, 129], "prod": 64, "produc": 5, "product": [14, 18, 20, 29, 52, 56, 58, 64, 71, 85, 87, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 118, 124, 133, 139, 142, 143, 144, 145], "production_profil": 20, "profession": [21, 53, 56, 117, 123], "profil": [7, 8, 16, 53, 85, 87, 93, 99, 100, 139], "profile_link": [20, 86], "profile_nam": 20, "profiles_guid": 20, "program": [7, 45, 64, 102], "project": [3, 24, 29, 35, 37, 53, 62, 86, 103, 105, 107, 108, 109, 118, 124, 127, 133, 134, 138, 139, 142, 143, 144], "project1": 20, "project_nam": 20, "project_typ": 20, "prolog": 61, "prometheu": [48, 53, 64], "prometheusaddress": 64, "pronunci": 128, "proot": 100, "propag": [0, 69, 134, 136], "proper": [18, 20, 56, 64, 65, 87], "properli": [2, 13, 18, 41, 58, 87, 95, 96, 98, 99, 100, 115], "properti": [15, 18, 20, 27, 36, 65, 87, 105, 106, 107], "protect": [20, 87], "proto": [18, 20], "protocol": [17, 18, 20, 27, 57, 64, 109], "proven": 60, "provid": [1, 2, 4, 5, 7, 8, 12, 14, 17, 18, 19, 20, 29, 30, 31, 35, 36, 37, 42, 44, 45, 46, 47, 51, 52, 53, 54, 56, 57, 58, 60, 63, 64, 65, 68, 71, 84, 87, 89, 92, 93, 98, 99, 102, 103, 105, 106, 107, 109, 117, 123, 126, 127, 131, 132, 136, 138, 142, 144, 145], "provis": 14, "proxi": [0, 1, 10, 12, 14, 18, 19, 31, 40, 53, 74, 77, 85, 108], "proxy_serv": 87, "proxy_temp": 82, "proxy_us": 85, "proxypass": 18, "proxypassrevers": 18, "proxypreservehost": 18, "proxyrequest": 18, "psc": 53, "pstree": 65, "ptrace": 134, "pub": 99, "public": [4, 16, 20, 57, 59, 60, 86, 93], "public_root": 87, "public_uri": 87, "public_url": [20, 86], "publicli": 93, "publish": [7, 141], "pull": [64, 102, 109, 111, 112, 136, 145], "pun": [0, 11, 12, 19, 20, 26, 27, 29, 51, 52, 53, 60, 62, 64, 69, 73, 74, 77, 79, 80, 81, 83, 85, 87, 97, 98, 102, 104, 105, 106, 108, 109, 111, 112, 118, 119, 124, 133, 142], "pun_access_log_path": 85, "pun_app_config": 85, "pun_config_path": 85, "pun_custom_env": [20, 85, 86, 93, 99, 101, 102, 103], "pun_custom_env_declar": [85, 93, 99], "pun_error_log_path": 85, "pun_log_format": 85, "pun_max_retri": 87, "pun_pid_path": 85, "pun_pre_hook_export": 87, "pun_pre_hook_root_cmd": 87, "pun_secret_key_base_path": 85, "pun_sendfile_root": 85, "pun_sendfile_uri": 85, "pun_socket_path": 85, "pun_socket_root": 87, "pun_stage_cmd": 87, "pun_tmp_root": 85, "pun_uri": 87, "punctuat": 101, "puppet": [56, 98], "purdu": 101, "pure": [58, 112], "purg": [41, 42, 46, 122, 131, 137], "purpos": [20, 29, 47, 65, 86, 103, 128, 138, 139, 145], "push": [142, 143, 144], "put": [18, 20, 23, 64, 98, 102, 140], "pwd": [5, 29, 46, 128, 143], "pwd_cfg": 138, "py": [138, 143], "python": [28, 46, 53, 85, 104, 105, 115, 116, 119, 121, 122, 129, 131, 138, 141], "python3": [92, 143], "python36": 62, "python_hello_world": 143, "python_vers": 36, "pythonpath": 93, "pzs0001": 45, "pzs0002": 20, "pzs0562": [142, 143, 144], "pzs0714": [29, 65], "q": [103, 115], "qdel": [67, 68], "qgi": 54, "qhold": [67, 68], "qo": 36, "qrl": [67, 68], "qselect": 67, "qstat": [67, 68, 103], "qsub": [23, 45, 51, 58, 67, 68, 71, 72, 101, 102, 121, 129], "qsub_wrapp": 68, "qualiti": [36, 86, 103], "quantifi": 108, "quantit": 107, "queri": [7, 19, 20, 48, 64, 100, 104], "question": [6, 65, 98, 99, 100], "queu": [50, 68, 71], "queue": [20, 23, 24, 36, 45, 53, 65, 71, 90, 96, 101, 113, 115, 116], "queue1": [115, 116], "queue2": [115, 116], "queue_nam": [36, 45, 90, 115, 116], "quick": [31, 58, 69, 83, 84, 98], "quiet": 65, "quit": [6, 64, 78, 85], "quot": [86, 101], "quota": [53, 142, 143, 144], "quota1": 20, "quota2": 20, "quota_additional_messag": 20, "quota_reload_messag": 20, "r": [4, 18, 20, 29, 33, 74, 82, 84, 87, 98, 103, 120, 125, 134, 135, 137, 143], "r2015b": 127, "r2016b": 127, "r2017a": 127, "r2018a": 127, "r2018b": 127, "r_version": 33, "rack": [28, 141], "radio": 37, "radio_button": [36, 37], "rail": [20, 30, 71, 93, 99, 100, 102, 105, 107, 141], "rails_env": 71, "rais": [20, 71], "rake": [56, 59, 71, 98], "ram": [65, 108, 127], "ran": [20, 65, 92], "rand": [18, 19], "random": [19, 46], "randomli": 4, "rang": [20, 46, 86, 108, 114], "range_field": 36, "rational": 104, "raw": 64, "rb": [20, 30, 62, 93, 98, 105, 107, 141], "rc": [54, 128], "rc8": 145, "rclone": [20, 86, 105], "rdynam": 65, "re": [12, 14, 18, 20, 23, 27, 32, 35, 36, 42, 44, 49, 50, 52, 57, 59, 62, 63, 64, 65, 87, 90, 92, 99, 100, 101, 105, 109, 138, 139, 142, 143, 145], "reach": [17, 32, 64, 103, 105, 108, 145], "read": [4, 7, 12, 18, 20, 22, 30, 36, 41, 46, 57, 62, 64, 65, 68, 69, 83, 86, 87, 90, 91, 100, 102, 104, 105, 115, 116, 121, 129, 138], "read_onli": 17, "read_timeout": 20, "readabl": [4, 8, 19, 20, 29, 64], "reader": [6, 55, 59, 144], "readi": [29, 111], "readm": [54, 99], "readonli": 20, "real": [62, 85, 90, 145], "realiz": 29, "realli": [6, 24, 44, 65, 105], "realm": [5, 14, 15, 16, 18, 19, 20, 64], "reapaft": 64, "reaper": 64, "reapnamespac": 64, "rearrang": [20, 86], "reason": [20, 29, 56, 65], "rebuild": [65, 99, 100, 111, 112], "rebuilt": [99, 104, 105, 106, 107], "recalcul": 49, "receipt": 109, "receiv": [16, 20, 24, 41, 109], "recent": 20, "recently_used_app": [20, 105], "recip": 65, "recogn": [20, 36, 142, 143, 144], "recom": 66, "recommend": [4, 8, 14, 18, 20, 22, 23, 29, 30, 42, 45, 46, 47, 57, 58, 64, 83, 84, 85, 86, 87, 97, 100, 102, 103, 106, 109, 111, 119, 121, 122, 129, 131, 137], "reconfigur": [20, 28, 31, 55, 63, 106], "record": 101, "red": [20, 36], "redcarpet": 101, "redefin": 24, "redhat": [55, 59, 102, 104, 107, 108], "redir": 82, "redirect": [4, 11, 13, 14, 16, 17, 18, 19, 57, 62, 82, 104], "redirecturi": 4, "rediscov": 65, "reduc": 127, "reeki": 107, "ref": 90, "refer": [1, 12, 20, 27, 35, 45, 47, 58, 64, 83, 84, 86, 87, 88, 90, 95, 96, 105, 106, 128, 130, 138, 139], "referenc": [20, 35, 36, 58, 64, 105], "reflect": [20, 102], "refrain": 45, "refresh": [24, 64, 111, 115, 116], "regard": [3, 11, 20, 36], "regardless": [20, 32, 35, 36, 86], "regener": [11, 20], "regex": [8, 12, 36, 63], "regist": [7, 14, 87], "register_root": 87, "register_uri": 87, "registr": [1, 16], "registri": 139, "registry_docker_config_json": 64, "registry_password": 64, "registry_us": 64, "regular": [9, 10, 13, 20, 30, 36, 41, 63, 69, 85, 87, 102, 104, 107, 145], "regularis": 54, "regularli": [44, 109], "reinforc": 109, "reinstal": [99, 100], "rel": [20, 23, 47, 85, 86, 87], "relat": [3, 20, 51, 103, 104, 105, 107, 130, 145], "releas": [52, 53, 59, 64, 67, 92, 109, 145], "relev": [20, 36, 51, 53, 64, 81, 104, 145], "reli": [12, 47, 58, 64, 87, 99, 100, 102, 104, 105, 107], "reliabl": [101, 128], "relion": 54, "reload": [4, 18, 20, 52, 60, 78, 85, 142, 143, 144], "reloc": 107, "remain": [93, 102, 103], "remedi": [63, 140], "rememb": [13, 15, 17, 20, 24, 99], "remot": [9, 53, 57, 60, 62, 65, 86, 118, 124, 133, 142, 143, 144], "remote_addr": 85, "remote_files_en": 86, "remote_files_valid": 86, "remote_us": [12, 19, 85, 87], "remov": [10, 14, 15, 20, 21, 29, 42, 62, 65, 68, 69, 75, 79, 86, 90, 92, 93, 96, 99, 100, 102, 103, 104, 105, 115, 116, 145], "renam": [36, 46, 96, 115, 142], "render": [20, 28, 29, 31, 34, 36, 45, 47, 51, 58, 61, 64, 84, 86, 103, 104, 139], "render_template_notes_as_markdown": 101, "reopen": [78, 85], "repackag": 100, "repeat": [20, 36], "replac": [10, 15, 16, 18, 19, 20, 28, 30, 36, 49, 52, 56, 57, 58, 62, 63, 64, 66, 67, 68, 69, 71, 72, 84, 87, 93, 100, 103, 104, 105, 106, 107, 114, 115, 116, 118, 119, 121, 124, 127, 128, 129, 133, 134], "repli": 20, "replic": 0, "repo": [19, 29, 59, 99, 104, 107, 111, 112, 118, 124, 133, 142, 143, 144], "report": [20, 27, 68, 86, 101, 103, 107, 108], "repositori": [4, 5, 8, 29, 44, 54, 55, 98, 99, 100, 105, 107, 108, 145], "repres": 37, "req": [10, 13, 142], "request": [10, 12, 14, 18, 19, 20, 23, 27, 35, 36, 41, 44, 45, 46, 47, 49, 53, 61, 74, 77, 82, 85, 86, 87, 90, 98, 100, 104, 105, 107, 109, 113, 121, 126, 127, 128, 129, 142, 143, 145], "requesthead": [10, 13, 18, 19], "requir": [2, 4, 5, 8, 10, 12, 13, 19, 20, 21, 22, 24, 29, 31, 35, 36, 37, 38, 40, 46, 52, 53, 56, 57, 58, 60, 62, 63, 64, 65, 66, 69, 71, 83, 85, 87, 89, 92, 102, 103, 106, 111, 113, 115, 117, 118, 119, 123, 124, 126, 127, 128, 132, 133, 134, 136, 139, 140, 142, 143, 144], "require_rel": 144, "requiresess": [10, 13], "requri": 143, "rerun": 65, "rerunn": 90, "research": [7, 53, 103], "reserv": [65, 90], "reservation_id": 90, "reset": [104, 105, 106, 107, 142, 143, 144], "resid": [10, 44, 56, 71, 85, 87], "resiz": [103, 113, 130], "resolut": [36, 37, 127], "resolution_field": [36, 37], "resolv": [20, 57, 65, 99, 105, 107], "resourc": [0, 5, 7, 15, 18, 20, 22, 23, 26, 36, 45, 49, 52, 53, 55, 56, 58, 63, 64, 66, 67, 68, 69, 70, 71, 72, 86, 87, 98, 101, 102, 105, 109, 113, 115, 116, 117, 123, 132, 139], "resource_id": 20, "resource_mgr": 20, "respawn": 128, "respect": [20, 23, 31, 45, 82, 105, 107], "respond": [35, 86, 87], "respons": [12, 20, 24, 27, 47, 49, 58, 59, 96, 100, 109, 119, 121, 127, 129, 134, 143], "rest": [18, 30, 65], "restart": [2, 4, 10, 18, 19, 20, 29, 41, 48, 52, 55, 74, 98, 103, 104, 105, 106, 107, 111, 115, 142, 143, 144], "restart_polici": [138, 139], "restor": [20, 58, 100, 128], "restrict": [10, 12, 18, 20, 29, 30, 64, 85, 87, 99, 114], "restructur": 105, "result": [20, 27, 29, 36, 45, 51, 62, 65, 71, 87, 98, 99, 100, 102, 105], "retain": [35, 47, 99], "retriev": [2, 100], "return": [2, 7, 11, 12, 13, 20, 24, 36, 41, 45, 46, 58, 62, 68, 74, 76, 77, 82, 107, 121, 129, 142, 143, 144], "reus": [18, 20, 86], "reusabl": 138, "revers": [0, 1, 31, 40, 53, 74, 77], "revert": [30, 99, 100], "review": [50, 55, 59, 109], "revisit": 71, "revok": 65, "rewrit": 87, "rewriteengin": 87, "rewritten": [102, 104], "rex": 12, "rf": [62, 92, 100], "rh": [10, 18, 19, 71, 98, 99, 100, 102, 104, 105], "rhel": [8, 49, 52, 55, 57, 59, 65, 84, 99, 100, 104, 105, 106, 107, 139], "rhel7": [1, 55, 100, 139], "rice": 102, "rid": 107, "right": [17, 20, 29, 36, 37, 39, 42, 46, 62, 71, 86, 104, 111, 115, 116, 118, 124, 133, 136], "risk": [41, 87], "rm": [5, 62, 92, 100], "rnode": [41, 47, 54, 87], "rnode_uri": [41, 87], "road": 51, "robin": [65, 107], "robinkar": 105, "robust": [20, 109, 134], "rocki": [8, 49, 52, 59, 104, 105, 106, 107, 108], "rockylinux": [55, 59, 92], "role": [27, 38, 56, 64, 139], "rolebind": 64, "room": 107, "root": [4, 8, 10, 17, 18, 19, 20, 22, 23, 29, 35, 36, 38, 45, 46, 47, 51, 52, 59, 64, 65, 68, 71, 74, 82, 83, 85, 86, 87, 92, 93, 98, 100, 102, 109, 111, 119, 120, 121, 125, 127, 128, 129, 134, 135, 142, 144], "root_uri": 87, "rotat": 64, "round": 65, "roundrobin": 65, "rout": [49, 142, 143, 144], "router": [20, 142], "row": [20, 27, 103, 104], "rpm": [8, 48, 59, 67, 84, 87, 92, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 137, 145], "rpmsave": 100, "rserver": [134, 136], "rss": [20, 86], "rstudio": [20, 41, 47, 51, 53, 54, 56, 87, 90, 95, 98, 108, 113, 134, 136, 137], "rstudio_contain": 134, "rstudio_group": 20, "rstudio_guid": 20, "rstudio_launcher_centos7": 134, "rstudio_server_imag": 134, "ru": [20, 141], "rubi": [0, 20, 23, 24, 27, 28, 30, 32, 35, 36, 45, 46, 47, 52, 53, 59, 85, 90, 93, 98, 100, 101, 102, 105, 106, 107, 115, 121, 129, 139, 141, 145], "rubular": 36, "ruby22": [99, 100], "ruby24": [71, 102], "ruby25": 104, "ruby27": [104, 105], "rubydoc": [121, 129], "rubygem": 144, "rubylib": 93, "rule": [13, 18, 36, 65, 87], "run": [0, 3, 4, 5, 7, 12, 14, 17, 18, 20, 21, 23, 25, 26, 28, 29, 30, 33, 34, 36, 40, 41, 42, 43, 46, 47, 51, 52, 57, 58, 59, 60, 61, 63, 64, 65, 66, 68, 69, 71, 78, 80, 81, 82, 83, 84, 85, 87, 89, 91, 92, 93, 100, 103, 108, 109, 111, 112, 117, 118, 119, 121, 122, 124, 127, 129, 130, 131, 132, 133, 136, 137, 138, 139, 143, 144], "run_as_group": 138, "run_as_us": 138, "run_fil": 89, "run_owens_script": 46, "run_remote_sbatch": 62, "run_script": 89, "runasgroup": 64, "runasnonroot": 64, "runasus": 64, "runscript": 136, "runtim": [34, 127, 131, 134, 136, 143], "rw": 82, "ryanbcox": 107, "sacrific": 101, "safari": 108, "safe": [47, 100, 103], "safer": 58, "safeti": 20, "sai": [20, 35, 44], "salt": 138, "same": [14, 18, 20, 27, 29, 31, 36, 44, 47, 58, 64, 65, 66, 69, 98, 100, 102, 104, 105, 111, 128, 136, 138, 139], "saml": [1, 7, 55], "sampl": 20, "sandbox": [29, 36, 45, 46, 47, 97, 111, 112, 115, 116, 118, 119, 120, 124, 125, 133, 135, 142, 143], "sanit": [9, 126], "satisfi": [8, 13], "saumyabhushan": 105, "save": [4, 5, 16, 17, 18, 20, 28, 31, 60, 64, 86], "save_passwd_as_secret": 138, "sbatch": [23, 45, 51, 58, 62, 69, 102, 121, 129], "sbatch_wrapp": 58, "sbin": [4, 10, 13, 18, 19, 20, 41, 49, 52, 84, 85, 87, 93, 101, 102, 103, 104, 105, 106, 107], "scan": 12, "scancel": [58, 69], "scenario": [45, 85, 105], "scgi_temp": 82, "schedul": [20, 24, 26, 32, 36, 51, 56, 58, 62, 63, 64, 65, 70, 86, 90, 98, 102, 139], "schema": [20, 53, 56], "scheme": [20, 36, 44, 86, 102, 145], "scienc": [7, 105, 107], "scipi": 138, "scl": [30, 85, 93, 99, 102, 107], "scl_sourc": 100, "scontrol": [58, 69], "scontrol_wrapp": 58, "scope": [8, 13, 16, 18], "scrape": 52, "scrape_interv": 52, "scrape_timeout": 52, "scratch": [20, 37, 138, 139], "screen": [29, 96], "screen0": 128, "screenshot": 20, "script": [23, 29, 31, 36, 42, 44, 53, 56, 58, 64, 65, 68, 69, 84, 85, 86, 88, 89, 91, 93, 99, 100, 101, 103, 104, 107, 111, 113, 115, 116, 119, 121, 123, 126, 127, 129, 130, 134, 136, 137, 138, 139, 140, 142, 143], "script_dir": 143, "script_fil": [45, 89], "script_pid": 68, "script_wrapp": [41, 42, 58, 68, 69, 89], "scroll": 17, "scrub": 89, "seamless": 145, "search": [7, 10, 20, 51, 85, 104], "search_field": 36, "second": [20, 36, 45, 46, 64, 65, 71, 85, 86, 89, 90, 91, 101, 106, 107, 115, 116, 127], "secondari": [130, 140], "secondli": [20, 27], "secret": [4, 10, 16, 17, 19, 64, 85, 138], "secret_key_bas": 85, "section": [1, 9, 20, 23, 24, 36, 39, 44, 64, 90, 98, 100, 103, 105, 109, 115, 116, 119, 121, 129, 138, 139, 143], "secur": [2, 5, 7, 8, 12, 17, 20, 41, 46, 53, 55, 59, 64, 65, 87, 92, 94, 107, 145], "security_csp_frame_ancestor": 87, "security_strict_transport": 87, "securitycontext": 64, "see": [0, 2, 3, 4, 7, 11, 12, 15, 18, 19, 20, 22, 23, 24, 27, 29, 30, 35, 36, 39, 41, 44, 47, 49, 50, 51, 54, 55, 57, 58, 59, 60, 63, 64, 65, 86, 87, 88, 89, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 111, 112, 115, 116, 118, 119, 120, 121, 124, 125, 127, 128, 129, 133, 135, 138, 142, 143], "seen": [20, 36, 39, 51, 64, 65, 103, 107, 145], "segment": 20, "select": [5, 15, 16, 17, 23, 24, 29, 31, 33, 36, 37, 62, 64, 65, 86, 90, 97, 98, 103, 104, 107, 114, 115, 116, 121, 126, 127, 128, 129, 139, 140], "selector": 37, "self": [5, 18, 20], "selinux": [53, 55, 59, 94, 104, 106], "send": [20, 23, 27, 41, 59, 60, 62, 78, 85, 87, 90, 91, 142], "send_256_colors_to_remot": 128, "sendenv": 20, "sendfil": 85, "sens": [35, 52, 121, 127, 129], "sensit": [18, 36], "sent": [12, 13, 16, 20, 36, 47, 62, 85], "sentenc": 20, "sep": 18, "separ": [11, 12, 14, 20, 24, 35, 98, 101, 104, 106], "seper": [87, 92, 106], "septemb": 20, "sequenc": [0, 93, 99], "seri": [20, 105, 107], "serial": [7, 8, 36, 87], "serivc": 64, "serv": [0, 1, 18, 20, 29, 49, 59, 85, 87, 98, 102, 104, 108, 139, 142, 143], "server": [0, 1, 4, 8, 10, 11, 12, 13, 14, 19, 20, 23, 26, 28, 31, 35, 36, 41, 42, 43, 46, 47, 54, 55, 56, 57, 59, 60, 63, 64, 67, 69, 71, 72, 74, 77, 82, 84, 85, 87, 88, 95, 98, 99, 109, 111, 115, 117, 119, 121, 122, 126, 127, 129, 131, 132, 134, 136, 137, 138, 139, 141, 142, 143, 144], "server_alias": 87, "server_develop": 15, "serveralia": 87, "serverdir": 66, "serverlimit": 49, "servernam": [4, 8, 18, 49, 52, 57, 59, 87], "serverroot": 87, "servic": [1, 3, 7, 18, 20, 27, 36, 41, 48, 52, 53, 55, 64, 65, 84, 102, 103, 104, 105, 106, 107, 109, 137], "serviceaccount": 64, "serviv": 19, "sescur": 64, "session": [9, 13, 19, 21, 22, 28, 31, 34, 41, 48, 50, 53, 58, 61, 65, 69, 74, 81, 86, 87, 95, 101, 103, 104, 106, 119, 128, 142, 143, 144], "session_context": [118, 124, 133], "session_descript": 20, "session_id": [20, 46, 104], "set": [1, 4, 5, 7, 11, 12, 13, 15, 17, 18, 19, 21, 22, 24, 27, 28, 29, 30, 31, 33, 36, 37, 40, 42, 44, 46, 53, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 72, 85, 86, 87, 89, 90, 91, 93, 98, 100, 103, 104, 105, 109, 110, 112, 115, 127, 128, 130, 134, 138, 140, 142, 145], "set_host": [41, 89, 121, 129], "setenv": [87, 100, 134], "setsebool": [60, 102], "setsid": 61, "setup": [1, 5, 16, 17, 20, 21, 27, 31, 41, 53, 55, 59, 64, 65, 69, 87, 111, 112, 113, 114, 117, 123, 132, 139, 142, 143], "setup_env": 134, "sever": [3, 20, 36, 60, 64, 65, 85, 100, 102, 104, 105, 109, 110], "sge": [53, 68, 103], "sge_root": 68, "sh": [2, 12, 18, 20, 31, 34, 36, 45, 46, 62, 64, 65, 68, 87, 89, 91, 102, 119, 126, 128, 130, 134, 137, 138, 139, 140], "sh_jupyt": 54, "sh_ood": 54, "sh_rstudio": 54, "sh_tensorboard": 54, "sha1": 138, "shade": 86, "shanghai": [54, 103], "shape": [35, 109], "share": [4, 20, 28, 53, 57, 85, 128, 139], "shawn": 102, "shebang": [62, 89, 102], "shelf": 65, "shell": [26, 28, 29, 30, 45, 53, 56, 58, 60, 63, 65, 69, 83, 85, 86, 87, 89, 90, 96, 97, 100, 108, 110, 111, 142, 143, 144], "shell_path": 90, "shib": 13, "shibboleth": [1, 10, 11, 55, 87], "shibcompatvalidus": 13, "shibrequestset": [10, 13], "shibsess": 10, "shift": 64, "shini": 54, "shinyusr": 29, "ship": [4, 44, 64, 104, 105, 106], "short": [70, 102, 108], "shortcut": [53, 102, 104, 105, 107], "shorter": 86, "should": [7, 10, 12, 16, 18, 19, 20, 21, 22, 23, 24, 29, 35, 36, 38, 47, 48, 49, 51, 52, 54, 55, 57, 58, 59, 60, 62, 63, 64, 65, 67, 69, 74, 77, 85, 86, 87, 89, 90, 91, 93, 98, 99, 100, 102, 103, 104, 105, 107, 111, 112, 115, 118, 119, 124, 126, 127, 128, 133, 139, 142, 143, 145], "shouldn": 89, "show": [14, 18, 20, 24, 29, 30, 33, 35, 36, 37, 48, 51, 58, 62, 81, 84, 85, 86, 95, 96, 100, 104, 105, 107, 112, 126, 138], "show_all_apps_link": [20, 86], "show_fil": 37, "show_hidden": 37, "shown": [20, 35, 36, 37, 38, 86, 101, 105, 107, 121, 129], "shub": 136, "shut": 64, "side": [20, 86, 87, 99, 126, 127], "sidebar": 107, "sif": [23, 65, 89, 92], "sign": [1, 18, 20, 55, 57], "signal": [78, 85, 87], "significantli": [18, 29, 112], "signingkei": 4, "simg": [134, 136], "similar": [20, 29, 30, 49, 52, 61, 65, 68, 98, 100, 103, 107, 109, 138], "similarli": [55, 104, 121, 129], "simon": 107, "simpl": [12, 19, 20, 36, 41, 42, 46, 47, 86, 103, 138, 142], "simplehttpserv": 46, "simpler": [12, 20, 35, 36, 58, 87], "simplest": [12, 18, 20, 24, 36, 45, 47, 56, 64, 116, 121, 129, 144], "simpli": [20, 24, 36, 39, 44, 58, 63, 65, 102, 103, 105, 111, 142, 143], "simplic": 136, "simplifi": [14, 20, 41], "simul": 20, "simultan": 49, "sinatra": 141, "sinc": [7, 12, 17, 18, 19, 20, 23, 24, 36, 41, 58, 64, 79, 87, 93, 98, 99, 100, 106, 108, 121, 129], "singl": [1, 16, 20, 23, 36, 37, 47, 65, 68, 71, 86, 87, 103, 104, 121, 129, 138, 139], "singuarl": 136, "singular": [0, 65, 89, 92, 100, 113, 132, 134, 137], "singularity_bin": 65, "singularity_bindpath": [23, 65, 134], "singularity_contain": [23, 65], "singularity_imag": 65, "singularityenv_ld_library_path": 134, "singularityenv_path": 134, "singulartity_bind_path": 90, "sinit": 65, "sit": [4, 105], "site": [0, 4, 7, 12, 14, 20, 22, 26, 29, 35, 36, 41, 44, 47, 52, 53, 54, 55, 57, 58, 64, 65, 69, 70, 87, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 127, 131, 138, 139, 145], "site_mapp": 87, "site_timeout": 65, "size": [24, 35, 36, 46, 53, 85, 91, 104, 107, 108], "sjtu": [54, 103], "skip": [20, 74, 78, 79, 82, 84, 138, 139], "sleep": [61, 128, 140], "slightli": [29, 86, 104], "slower": 20, "slurm": [20, 21, 36, 45, 53, 55, 56, 58, 60, 61, 62, 90, 102, 107, 113, 115, 116, 117, 123], "slurm_arg": 139, "slurm_export_env": 69, "slurm_job_gr": 61, "slurm_localid": 61, "sm": 128, "small": [27, 35, 45, 47, 104], "small_clust": 45, "smaller": [20, 96], "smallest": 89, "smtp": [20, 60], "so": [7, 10, 12, 17, 18, 20, 23, 24, 27, 29, 30, 32, 34, 35, 36, 41, 42, 44, 45, 46, 47, 49, 51, 60, 61, 62, 63, 64, 65, 68, 71, 72, 83, 85, 87, 89, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 121, 124, 129, 133, 138, 139, 142, 143, 144], "social": 107, "sock": [81, 82, 85], "socket": [0, 18, 41, 81, 85, 87, 101, 139, 141], "soft": 138, "softar": 100, "softwar": [0, 2, 4, 18, 21, 29, 30, 40, 53, 55, 93, 98, 99, 100, 105, 106, 113, 117, 119, 123, 127, 132, 134], "solid": 128, "solut": [17, 47, 85, 130], "solv": [62, 130], "some": [0, 1, 8, 18, 20, 22, 23, 24, 30, 32, 33, 35, 36, 43, 44, 45, 46, 47, 50, 52, 57, 60, 61, 64, 68, 85, 86, 87, 90, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 109, 110, 111, 121, 127, 129, 138, 139, 140, 143], "someelementid": 104, "someth": [12, 20, 23, 24, 27, 64, 65, 71, 89, 91, 111, 121, 127, 129, 138, 142], "sometim": 112, "son": 68, "soon": [65, 90, 98, 109], "sophist": [20, 104], "sort": [27, 48], "sortabl": 104, "sourc": [1, 24, 29, 46, 48, 53, 54, 57, 68, 71, 87, 89, 93, 100, 101, 138, 143, 144], "space": [20, 58, 105, 107, 111, 112, 138], "spam": 20, "spark": 54, "spassword": 91, "spawn": 139, "spec": [20, 55, 58, 59, 113], "special": [20, 23, 36, 37, 38, 44, 45, 65, 83, 94, 100, 118, 124, 133], "specif": [0, 4, 7, 10, 17, 20, 24, 27, 29, 30, 36, 40, 44, 45, 46, 52, 54, 58, 60, 64, 85, 86, 87, 90, 91, 93, 98, 99, 100, 105, 106, 109, 115, 116, 127, 138, 139], "specifc": 128, "specifi": [19, 20, 23, 24, 27, 28, 29, 31, 35, 36, 38, 39, 41, 46, 47, 52, 54, 58, 63, 64, 65, 78, 82, 83, 85, 86, 87, 90, 91, 93, 98, 100, 103, 104, 105, 121, 129, 138, 139, 142, 143, 144], "speed": [98, 101], "sperat": 44, "spi": [1, 17, 18], "spider": 86, "spin": 111, "split": [102, 104], "sprintf": 58, "sqlite": 4, "squeue": [58, 69, 99, 101], "squeue_wrapp": 58, "src": [4, 5, 65, 98], "srun": [69, 102], "srv": [20, 23, 63, 65, 134], "srw": 82, "ss": 101, "ssh": [30, 41, 46, 47, 53, 56, 58, 60, 62, 64, 65, 66, 67, 68, 69, 72, 101, 103, 104], "ssh_allow": [20, 58, 64], "ssh_host": [65, 104], "sshd": 65, "ssl": [2, 4, 14, 18, 55, 57, 87], "ssl_protocol": 87, "sslcacertificatepath": 18, "sslcertificatechainfil": [18, 57, 87], "sslcertificatefil": [18, 57, 87], "sslcertificatekeyfil": [18, 57, 87], "sslengin": 18, "sso": [11, 13, 20], "sss": 139, "sssd": [60, 100, 139], "stabil": 145, "stabl": [98, 145], "stack": 65, "staff": [20, 51, 102], "stage": [20, 46, 53, 73, 82, 85, 87, 97], "staged_root": [46, 128, 139], "stale": 75, "standalon": [5, 18], "standard": [12, 18, 20, 35, 46, 58, 64, 85, 90, 109, 134, 139], "stanford": 54, "stanza": 58, "start": [0, 1, 4, 7, 14, 15, 20, 22, 23, 34, 36, 41, 45, 46, 50, 51, 52, 55, 57, 61, 63, 64, 65, 69, 78, 85, 86, 87, 90, 91, 92, 93, 95, 96, 98, 99, 102, 103, 104, 107, 111, 112, 115, 116, 119, 127, 128, 130, 137, 138, 140, 141, 142, 143], "start_dat": 27, "start_index": 27, "start_respons": 143, "start_tim": 90, "starter": [53, 88, 103, 141], "startserv": 49, "startup": [28, 86, 91, 130, 141], "stata": [54, 140], "stata_pid": 140, "state": [16, 32, 53, 102, 111], "statement": [23, 30, 58, 89, 121, 129, 139], "static": [1, 4, 20, 46, 102, 113, 114], "static_config": 52, "staticcli": 4, "staticmaxag": 18, "statu": [18, 20, 27, 52, 55, 68, 71, 82, 85, 86, 96, 98, 103], "status_poll_delai": [86, 107], "stderr": [51, 62, 71, 101], "stdin": 62, "stdout": [12, 51, 62], "step": [5, 14, 20, 30, 36, 37, 40, 97, 98, 100, 102, 111, 112, 120, 125, 127, 135, 142, 143, 144], "step_siz": 27, "stick": 18, "still": [15, 20, 24, 29, 30, 35, 37, 57, 58, 60, 92, 96, 99, 100, 102, 104, 105, 109, 111, 144], "stop": [18, 19, 20, 46, 78, 85, 90, 137], "storag": [4, 64, 86, 138], "storage_fil": 4, "store": [2, 4, 20, 47, 57, 85, 86, 87, 93, 96, 103, 104], "str": 62, "strategi": [11, 65, 104, 109], "stream": 100, "streamlin": 139, "strict": [65, 87], "strict_host_check": 65, "stricthostkeycheck": 65, "strictli": 140, "string": [4, 10, 11, 12, 20, 23, 24, 35, 36, 41, 45, 46, 58, 65, 71, 83, 85, 86, 87, 89, 90, 91, 92, 98, 99, 100, 104, 115, 116, 142], "strip": [10, 13, 19, 46, 87], "structur": [20, 31, 82, 98, 139], "student": 104, "studio": 54, "style": 20, "styleoverlai": 128, "stylesheet": 20, "stylist": 47, "styliz": 31, "su": 71, "sub": [7, 19, 28, 31, 47, 74, 77, 87], "sub_capt": 20, "sub_request": 74, "sub_uri": [74, 77], "subapp": [44, 99], "subcategori": [20, 38, 142, 143, 144], "subdirectori": [20, 143], "subject": 20, "submenu": 20, "submiss": [21, 22, 24, 28, 31, 34, 36, 51, 53, 58, 62, 63, 66, 67, 68, 69, 71, 72, 88, 119, 121, 129], "submission_nod": 62, "submit": [0, 20, 22, 23, 24, 26, 28, 29, 31, 32, 34, 39, 42, 43, 44, 46, 47, 53, 54, 55, 56, 58, 62, 64, 65, 71, 72, 73, 86, 90, 97, 98, 99, 100, 101, 103, 104, 109, 113, 114, 115, 116, 117, 118, 119, 123, 124, 126, 127, 133], "submit_arg": 71, "submit_as_hold": 90, "submit_host": [65, 66, 67, 68, 69, 72], "submit_script": [121, 129], "submodul": 5, "subscript": [59, 104], "subsequ": [36, 63, 65, 74, 82, 105], "subset": [20, 29, 102, 104], "subshel": 128, "substitut": [23, 45, 47, 51, 68, 115, 121, 129], "subsystem": 18, "subtitl": 20, "success": [18, 20, 24, 51, 53, 62, 63, 65, 84, 98, 107, 109], "successfulli": [3, 12, 22, 98], "sudo": [4, 5, 8, 10, 13, 18, 19, 20, 29, 30, 41, 49, 52, 56, 57, 59, 60, 65, 71, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 87, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 118, 120, 125, 135, 136, 142, 143, 144], "sudoer": 52, "suffici": [14, 64, 104, 134], "suffix": 20, "suggest": [20, 49, 105, 107, 109], "suit": [104, 134], "sum": 65, "summari": [8, 29], "sun": [68, 99], "supercomput": [53, 58, 65, 98, 139], "supercomputing_support": 20, "superior": 131, "supplement": [29, 64], "supplementalgroup": 64, "suppli": [1, 4, 12, 20, 23, 35, 36, 44, 45, 46, 64, 71, 85, 86, 87, 90, 105, 106, 107, 115, 116], "support": [1, 4, 6, 10, 13, 14, 19, 25, 29, 35, 36, 40, 43, 45, 53, 55, 58, 59, 63, 65, 66, 67, 68, 69, 85, 87, 95, 96, 104, 107, 109, 126, 127, 139], "support_ticket": [20, 86], "support_url": 20, "suppos": [51, 58, 86, 111], "supremm": 103, "sure": [12, 16, 19, 20, 46, 54, 59, 65, 85, 111, 115, 119, 127, 134], "svc_acct_fil": 64, "svg": [20, 38], "swap": 136, "swester": 105, "switch": [102, 103, 113, 128], "sy": [11, 19, 20, 24, 27, 29, 30, 44, 46, 51, 62, 71, 74, 85, 86, 87, 93, 96, 98, 99, 100, 102, 105, 111, 112, 118, 120, 124, 125, 133, 135, 142, 143, 144], "symbol": 20, "symlink": [20, 29, 30, 85, 99, 100, 111, 112, 118, 134], "syntax": [36, 68, 121, 129], "sysconfig": [4, 60], "syslog": 12, "system": [2, 4, 7, 8, 12, 13, 18, 23, 28, 35, 36, 44, 45, 46, 47, 48, 52, 53, 55, 56, 57, 59, 60, 65, 74, 75, 78, 84, 85, 86, 87, 90, 95, 96, 97, 98, 99, 100, 102, 104, 105, 106, 109, 111, 115, 118, 120, 121, 124, 125, 127, 129, 133, 134, 135, 136, 143, 145], "systemat": 12, "systemctl": [2, 4, 18, 19, 20, 49, 52, 59, 65, 102, 103, 104, 105, 106, 107, 137], "systemd": [4, 18, 52, 53, 56, 84, 102], "systemtrai": 128, "t": [12, 14, 18, 19, 20, 23, 24, 27, 30, 35, 36, 41, 42, 46, 47, 54, 55, 56, 59, 64, 65, 71, 75, 82, 84, 85, 86, 87, 89, 92, 95, 96, 98, 99, 102, 104, 111, 115, 116, 121, 128, 129, 138, 143, 144], "tab": [5, 17, 19, 20, 58, 64, 86, 97, 104, 111, 118, 124, 133, 142, 143], "tabl": [7, 64, 74, 95, 96, 97, 98, 99, 100, 101, 103, 104], "tag": [18, 20, 53, 86, 98, 99, 112, 115], "taglin": 100, "tai": 128, "tail": [68, 140], "take": [1, 10, 12, 18, 20, 23, 24, 29, 36, 41, 45, 47, 55, 65, 84, 97, 98, 99, 100, 104, 111, 115, 116, 117, 123, 132], "taken": [24, 45, 100], "tandi": 53, "tap": [20, 105, 107], "tar": [18, 52], "target": [5, 18, 27, 34, 52], "task": [56, 71, 98, 102, 127, 140], "tcl": 107, "tcp": [0, 4, 60], "te": 60, "team": [20, 29, 87, 99, 102, 103, 105, 109, 140, 145], "team1": [20, 86], "technic": 0, "techniqu": 34, "technologi": 53, "technot": 130, "techsquareinc": 54, "tee": 65, "telephone_field": 36, "tell": [12, 20, 35, 59, 64, 65, 115, 116, 144], "templat": [5, 23, 28, 31, 34, 36, 47, 53, 58, 65, 77, 84, 85, 88, 89, 90, 91, 92, 98, 115, 116, 121, 127, 128, 129, 130, 134, 139, 140], "template_root": 85, "temporari": [46, 99], "temporarili": 89, "ten": [20, 41, 58], "tensorboard": 54, "term": [20, 26, 44, 98, 107], "termin": [20, 63, 86, 104, 112, 123, 128, 131], "terribl": 62, "tesla": 127, "test": [5, 12, 20, 24, 30, 37, 41, 48, 53, 56, 58, 59, 64, 87, 92, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 119, 145], "test_checkbox": 37, "test_hidden_field": 37, "test_job": 71, "test_jobs_cluster1": 71, "test_resolution_field": 37, "test_text_area": 37, "test_text_field": 37, "texa": 53, "text": [15, 16, 24, 29, 36, 37, 38, 53, 55, 65, 86, 90, 101, 104, 115, 116, 142, 143], "text_area": [20, 36, 37], "text_field": [36, 37], "textarea": 37, "than": [8, 12, 17, 20, 24, 36, 45, 49, 51, 69, 85, 86, 87, 97, 102, 103, 104, 112], "thank": [94, 99, 101, 107], "the_answ": 62, "the_connect_api": [89, 91], "the_quest": 62, "thegamer1002": 107, "thei": [6, 7, 12, 16, 20, 24, 27, 29, 30, 32, 35, 36, 39, 44, 45, 51, 56, 60, 64, 65, 86, 87, 89, 91, 92, 93, 99, 100, 102, 103, 104, 105, 107, 118, 124, 126, 127, 133, 138, 139, 145], "them": [5, 10, 20, 24, 29, 30, 32, 36, 37, 44, 47, 56, 58, 63, 64, 86, 103, 104, 105, 107, 118, 124, 133], "theme": [1, 4, 5, 14, 18, 53, 86, 107], "themselv": [20, 29, 36, 64, 107, 118, 124, 133, 137, 140], "theori": 111, "therebi": 109, "therefor": [83, 107], "thi": [0, 2, 3, 4, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 27, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 121, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 136, 138, 139, 142, 143, 144, 145], "thing": [14, 20, 27, 29, 36, 48, 51, 58, 64, 87, 99, 100, 104, 109, 110, 139, 144], "think": [23, 109], "thirteen": 104, "this_remote_username_does_not_exist": 12, "those": [6, 17, 20, 29, 30, 36, 39, 64, 65, 86, 93, 100, 102, 105, 107, 111, 134, 143], "though": [69, 87, 104, 107, 111, 138, 144, 145], "thought": 62, "thread": 18, "threadlimit": 49, "threadsperchild": 49, "three": [9, 18, 20, 36, 45, 47, 93], "threshold": [20, 99, 102], "through": [0, 1, 4, 12, 19, 20, 21, 24, 27, 29, 34, 36, 37, 40, 41, 47, 63, 64, 65, 85, 86, 87, 89, 93, 95, 97, 98, 101, 102, 103, 104, 105, 106, 108, 109, 111, 114, 115, 117, 119, 123, 127, 132, 134, 138, 139, 144], "throughout": [18, 38, 53, 90], "throw": [101, 113, 130], "thu": [20, 29, 98], "thumb": 36, "ticket": [53, 55, 59, 86, 109], "tid": 12, "tie": 86, "tile": 20, "till": 20, "time": [1, 12, 16, 18, 20, 27, 29, 32, 35, 36, 45, 46, 49, 53, 59, 64, 65, 85, 86, 87, 89, 90, 98, 101, 103, 104, 105, 106, 107, 108, 109, 119, 127, 128, 134, 136, 142, 143, 144], "time_loc": 85, "timeout": [20, 46, 65, 89, 91], "timeoutstartsec": 18, "timeoutstopsec": 18, "timer": 70, "timestamp": [20, 27, 64], "tip": [48, 53], "titl": [20, 22, 23, 24, 41, 42, 56, 58, 63, 64, 65, 66, 67, 68, 69, 72, 85, 86, 100, 101, 115], "tl": [4, 18, 57, 64], "tls_cert": 4, "tls_kei": 4, "tlscert": 4, "tlsclientca": 4, "tlskei": 4, "tmp": [4, 52, 59, 62, 65, 82, 85, 90, 99, 100, 104, 106, 107, 108, 134], "tmux": 65, "tmux_bin": 65, "to_": 89, "to_i": [23, 24, 45, 46, 121, 129, 138, 139], "todo": 64, "togeth": [44, 65], "toggl": [20, 35, 38, 105], "token": [16, 20, 51, 68, 85, 87], "tong": [54, 103], "too": [65, 89], "tool": [24, 31, 45, 47, 64, 65, 84, 108, 110, 122, 128, 131, 137], "toolbar": 128, "top": [17, 20, 22, 36, 39, 58, 90, 102, 103, 115, 118, 124, 133, 142, 143], "topic": [3, 6, 109], "torqu": [20, 21, 36, 45, 53, 55, 56, 58, 60, 71, 90, 115, 116, 117, 123], "total": [20, 29, 35, 102, 103], "total_block_usag": 20, "total_file_usag": 20, "touch": [20, 111, 143], "toward": 97, "toyota": [36, 115, 116], "tr": [12, 61], "track": [71, 87, 99, 100], "tradit": [24, 65, 138, 139], "traffic": [12, 20, 49, 55, 105, 109], "transfer": 86, "transit": 109, "translat": [20, 103], "transport": [20, 59, 87], "tre": 99, "treat": [20, 30], "tree": [34, 55, 59, 98, 104, 128], "trigger": [20, 100], "trivial": 136, "troubl": [51, 98, 119], "troubleshoot": [20, 48, 49, 51, 53, 59, 113], "true": [4, 7, 8, 18, 20, 24, 30, 33, 35, 36, 37, 38, 39, 45, 47, 58, 62, 64, 65, 69, 85, 86, 87, 90, 107, 127, 138, 144], "trust": [2, 17, 18, 29, 41, 57, 99, 109], "trustedci": 101, "truststor": [17, 18], "truststore_hostname_verification_polici": 18, "truststore_password": 18, "truststorespi": 17, "truthi": 101, "try": [6, 49, 51, 57, 58, 62, 63, 87, 89, 102, 103, 104, 105, 106, 107, 111, 119, 144], "tue": 12, "tuesdai": 98, "tuft": 53, "tune": 48, "tunnel": [46, 47], "turbovnc": [41, 42, 43, 91, 92, 108], "turbovncserv": 92, "turn": [13, 20, 32, 60, 64, 65, 66, 105, 140], "tutori": [1, 17, 18, 19, 54, 59, 64, 100, 111, 114, 117, 118, 123, 124, 132, 133, 138, 139], "tweak": 87, "twice": 108, "two": [1, 8, 14, 15, 17, 20, 24, 29, 35, 36, 46, 51, 55, 58, 64, 65, 86, 95, 96, 98, 99, 100, 102, 103, 104, 105, 106, 107, 118, 124, 133, 134, 142, 143, 144, 145], "txt": [7, 20, 85, 86, 143], "txt_erb": 20, "type": [4, 17, 18, 20, 23, 24, 31, 35, 36, 37, 47, 51, 52, 58, 64, 65, 74, 85, 86, 98, 104, 107, 118, 121, 124, 126, 127, 128, 129, 133, 136, 138, 139, 143, 145], "typic": [23, 24, 30, 31, 47, 51, 60, 85, 87, 99, 104, 118, 124, 133, 145], "u": [14, 17, 18, 24, 65, 71, 74, 78, 81, 82, 98, 102, 103, 105, 108, 111, 115, 138, 140], "ubuntu": [2, 49, 55, 57, 59, 104, 106, 107, 108], "ucla": [53, 99], "ug": 68, "ui": [15, 16, 17, 20, 36, 64], "uid": [4, 12, 20, 30, 58, 64, 65, 85, 86, 104, 107, 138, 139], "ultim": 20, "umask": [46, 128], "un": [29, 35], "unabl": [20, 24, 27, 46, 65, 68, 71], "unauthor": 53, "unavail": [20, 104], "unchang": [99, 100], "uncheck": [35, 37], "unchecked_valu": 37, "uncom": 18, "under": [4, 10, 19, 20, 22, 24, 29, 36, 41, 45, 46, 47, 56, 60, 71, 74, 78, 82, 83, 85, 87, 88, 89, 93, 97, 99, 100, 106, 109, 114, 115, 116, 118, 119, 121, 124, 127, 129, 133, 134, 142, 143, 144], "undergradu": 104, "underli": [121, 129], "underneath": [20, 22, 23, 24, 98, 115, 116], "underscor": [20, 35, 36], "understand": [45, 87, 138, 139], "undertow": 18, "underwai": [102, 109], "undesir": 103, "unencrypt": 109, "unexpect": 68, "unicod": 101, "uninstal": [104, 105], "unintend": [20, 85], "uniqu": [7, 20, 46, 85, 99, 107, 108, 118, 124, 133], "unit": [4, 18, 20, 138], "univa": [68, 99], "univers": [53, 54, 103, 107, 127], "unix": [0, 2, 20, 36, 81, 85, 86, 87, 91, 141], "unknown": [57, 65], "unless": [20, 23, 45, 84, 85, 93, 127], "unlik": [12, 58, 111], "unnecessari": 87, "unpack": 18, "unprivileg": [20, 30, 65], "unread": 20, "unsaf": 86, "unset": [10, 13, 19, 20, 138], "unshar": 65, "unsupport": 58, "unsuspect": 41, "untest": 122, "until": [16, 20, 34, 46, 65, 71, 98, 99, 100, 107, 128], "untouch": 47, "unus": [64, 102], "uofu": 54, "up": [1, 11, 13, 20, 21, 22, 24, 28, 33, 36, 40, 41, 45, 46, 57, 58, 64, 65, 73, 75, 87, 95, 96, 97, 98, 100, 104, 105, 107, 108, 110, 111, 115, 118, 124, 128, 133, 137, 138, 139, 140, 142, 143], "updat": [4, 5, 16, 19, 20, 27, 29, 39, 41, 44, 53, 55, 59, 64, 65, 77, 84, 85, 86, 92, 94, 95, 96, 97, 98, 99, 101, 103, 109, 119, 121, 129, 136, 138, 142, 143, 144], "update_ood_port": [4, 10, 13, 19, 20, 41, 84, 100, 101, 102, 103, 104, 105, 106, 107], "upgrad": [10, 20, 41, 71, 94, 109, 145], "upload": [53, 85, 86, 104, 107], "upload_en": [20, 86], "upon": [24, 109], "upper": [5, 12, 16, 111], "uppercas": [36, 107], "uppi": 104, "upstream": 20, "upto": 20, "uri": [4, 11, 17, 19, 20, 47, 74, 77, 85, 87, 142], "url": [2, 11, 12, 16, 17, 19, 29, 38, 41, 47, 53, 54, 58, 65, 74, 82, 83, 85, 86, 87, 99, 104, 111, 112, 118, 120, 124, 125, 133, 135, 142, 144], "url_field": 36, "urldecod": 12, "us": [0, 1, 2, 3, 4, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 68, 69, 70, 71, 72, 77, 84, 85, 86, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 101, 102, 106, 107, 108, 111, 112, 113, 114, 117, 118, 119, 121, 122, 123, 124, 126, 127, 129, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144], "usabl": [16, 104], "usag": [20, 27, 29, 58, 64, 66, 84, 87, 99, 101, 107], "use_job_pod_reap": 64, "use_mainten": [20, 87], "use_nfs_home_dir": 60, "use_rewrit": [20, 87, 101], "use_uid": 65, "useabl": 58, "useless": 86, "user": [1, 2, 4, 5, 6, 8, 9, 10, 11, 13, 14, 17, 18, 19, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 35, 37, 39, 41, 42, 44, 45, 46, 47, 51, 53, 55, 56, 58, 59, 60, 62, 68, 71, 74, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 89, 90, 91, 93, 95, 97, 98, 99, 100, 101, 103, 104, 105, 108, 109, 114, 115, 116, 117, 118, 119, 121, 123, 124, 126, 127, 128, 129, 130, 132, 133, 134, 136, 138, 139, 140, 142, 143, 144], "user1": 20, "user_defined_context": 119, "user_env": [12, 87], "user_map": 12, "user_map_cmd": [7, 8, 12, 87, 104], "user_map_match": [12, 13, 87, 104], "user_nam": 20, "user_path": 136, "user_regex": 85, "user_set": 86, "user_settings_fil": 86, "useradd": [4, 18], "userattr": 4, "userinfo": [7, 16], "userknownhostsfil": 65, "usermatch": 4, "usermod": 29, "usernam": [4, 5, 7, 12, 20, 27, 52, 58, 63, 64, 85, 87, 91, 104, 105, 107, 118, 138], "username_prefix": 64, "usernameplacehold": 20, "usersearch": 4, "usr": [2, 4, 20, 23, 29, 30, 41, 42, 52, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 82, 85, 91, 92, 104, 134, 138, 139, 143], "usual": [20, 62, 108, 111], "utah": [53, 54], "utf": [62, 92], "util": [7, 29, 45, 65, 89, 95, 96, 97, 105, 107, 108, 127, 138, 142, 143, 144, 145], "utility_img": 138, "uuid": [32, 65], "uuid_s": 65, "uuid_tmux": 65, "uuidgen": 65, "uwsgi_temp": 82, "v": [5, 52, 64, 84, 87, 90, 102], "v0": 134, "v1": [16, 28, 53, 62, 64, 94, 138], "v2": [15, 20, 41, 42, 45, 53, 56, 63, 64, 65, 66, 67, 68, 69, 72, 88, 94, 115], "v3": [53, 94, 145], "v4": [53, 94], "v8314": [99, 100], "vagrant": 60, "valid": [2, 8, 10, 13, 17, 19, 20, 22, 62, 63, 64, 72, 85, 86, 87, 101, 102, 107, 119, 121, 126, 127, 129, 134], "valu": [4, 5, 12, 16, 17, 18, 20, 21, 31, 34, 36, 37, 38, 39, 41, 42, 44, 45, 47, 49, 58, 60, 62, 64, 65, 66, 67, 68, 86, 87, 89, 93, 101, 103, 107, 115, 116, 118, 119, 121, 124, 126, 127, 129, 133, 134], "var": [4, 12, 18, 20, 23, 24, 29, 30, 44, 51, 60, 62, 65, 68, 71, 74, 81, 82, 85, 87, 92, 93, 96, 97, 98, 99, 100, 102, 103, 104, 118, 119, 120, 124, 125, 133, 134, 135, 139, 142, 143, 144], "varaibl": 64, "vari": [17, 20, 36, 49, 87, 145], "variabl": [12, 20, 23, 29, 30, 32, 34, 36, 42, 45, 46, 47, 62, 64, 71, 85, 86, 87, 89, 90, 91, 93, 99, 101, 102, 103, 104, 105, 107, 111, 115, 121, 129, 134, 138, 139], "variant": [20, 35, 44], "variat": [12, 36], "varieti": 29, "variou": [4, 20, 36, 47, 55, 56, 59, 85, 86, 87, 103, 109], "vdi": [20, 98], "ve": [20, 36, 37, 58, 61, 64, 65, 68, 92, 103, 104, 106, 107, 120, 142], "vector": 62, "vendor": [17, 18, 99, 100, 144], "vendor_rubi": 85, "venv": 143, "verbatim": 127, "verbos": 87, "verheyd": 102, "veri": [1, 24, 36, 41, 51, 63, 69, 86, 89, 105, 107, 118, 124, 133], "verif": 18, "verifi": [5, 14, 17, 18, 19, 20, 40, 55, 56, 64, 98, 99, 100, 102, 103, 104, 106], "version": [1, 4, 5, 12, 15, 20, 27, 33, 35, 36, 37, 44, 49, 51, 52, 53, 58, 64, 65, 84, 85, 86, 94, 102, 103, 104, 106, 107, 108, 109, 122, 127, 128, 134, 136, 142, 143, 144], "vglrun": 128, "vi": [2, 20, 61, 127, 128], "via": [0, 2, 4, 7, 15, 18, 19, 20, 29, 48, 58, 60, 62, 93, 95, 100, 109, 127], "view": [17, 20, 28, 29, 31, 34, 56, 64, 89, 96, 97, 104, 105, 109, 118, 119, 121, 124, 129, 133, 142, 143, 144], "viewer": 20, "vigil": 109, "vim": 111, "virtual": [87, 106, 141], "virtualbox": 60, "virtualgl": [128, 131], "virtualhost": [18, 48, 59], "virut": 87, "visibl": [35, 103, 104], "visit": [20, 47, 107, 109], "visual": [0, 54, 104, 127, 128], "vm": [108, 111], "vmd": 54, "vnc": [28, 31, 36, 37, 41, 42, 43, 46, 49, 58, 65, 68, 87, 88, 89, 95, 127, 128, 129, 140], "vnc_arg": 91, "vnc_clean": 91, "vnc_contain": [45, 92], "vnc_passwd": 91, "vncserver": 91, "volum": 20, "volume2": 20, "volvo": [36, 115, 116], "vpn": 102, "vuej": 126, "vulner": [20, 53, 105], "w": [5, 27, 30, 41, 64, 85, 87], "wa": [20, 32, 35, 36, 46, 51, 52, 63, 65, 86, 87, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 118, 124, 133, 134, 139], "wai": [12, 20, 30, 36, 44, 45, 47, 59, 64, 65, 71, 98, 99, 100, 102, 103, 104, 105, 107, 111, 134, 138, 139], "wait": [46, 62, 86, 91, 100, 119, 127, 140], "walk": [1, 21, 27, 40, 97, 114, 115, 117, 119, 123, 127, 132, 134, 138, 139, 144], "wall": [45, 46, 90], "wall_tim": [36, 45, 90, 138, 139], "walltim": [65, 71, 103], "want": [18, 19, 20, 22, 23, 24, 27, 30, 32, 33, 35, 36, 37, 41, 44, 45, 46, 47, 49, 51, 56, 58, 59, 64, 85, 90, 98, 99, 100, 101, 102, 103, 104, 107, 109, 111, 115, 116, 118, 121, 124, 127, 128, 129, 133, 138, 139, 142], "wantedbi": 18, "warn": [29, 41, 51, 53, 58, 71, 87, 98, 101, 104, 105, 118, 124, 133], "wd": 101, "we": [1, 8, 10, 12, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 29, 30, 34, 35, 36, 41, 42, 44, 45, 46, 47, 49, 53, 54, 55, 56, 57, 58, 59, 61, 62, 64, 65, 71, 86, 87, 89, 92, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 114, 115, 116, 118, 119, 121, 124, 127, 128, 129, 131, 133, 134, 136, 138, 139, 140, 142, 143, 144, 145], "weak": 101, "web": [0, 4, 10, 13, 15, 16, 17, 19, 20, 26, 27, 28, 29, 36, 42, 45, 46, 47, 49, 51, 52, 59, 60, 62, 65, 74, 75, 76, 85, 86, 87, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 115, 116, 119, 121, 129, 141, 143, 144], "web_2": 104, "web_3": 106, "web_4": [59, 107], "webdev07": 18, "webframework": 103, "webinar": 53, "webpack": 126, "webpag": [35, 49], "webserv": 18, "websit": [3, 53, 87], "websocket": [53, 91, 108, 142, 143, 144], "websockfii": 91, "websockfiy_cmd": 91, "websockifi": [41, 42, 43, 91, 92, 105, 108], "websockify_cmd": [41, 42, 91], "websockify_heartbeat_second": 91, "wed": 12, "week": [47, 145], "welcom": [29, 86, 145], "welcome_html": 20, "well": [4, 7, 8, 12, 19, 20, 24, 45, 47, 48, 49, 51, 54, 59, 64, 78, 83, 85, 86, 87, 97, 98, 99, 100, 103, 105, 114, 123, 127, 139], "went": 98, "were": [12, 18, 20, 27, 36, 53, 75, 84, 86, 98, 99, 100, 101, 102, 103, 104], "westersund": 107, "wget": [2, 18, 52, 59, 64, 104, 106, 107], "what": [7, 8, 12, 17, 20, 35, 36, 39, 41, 45, 51, 54, 55, 58, 59, 64, 65, 68, 85, 86, 87, 91, 92, 102, 104, 105, 109, 111, 115, 116, 127, 138, 144], "whatev": [20, 22, 49, 99, 111, 127, 128], "whati": 134, "when": [1, 4, 11, 12, 13, 16, 18, 19, 20, 22, 23, 24, 26, 29, 32, 34, 35, 36, 37, 38, 39, 45, 46, 47, 49, 51, 57, 58, 60, 62, 63, 64, 65, 66, 69, 82, 84, 85, 86, 87, 89, 90, 93, 96, 97, 98, 99, 100, 102, 103, 105, 106, 107, 108, 111, 112, 113, 115, 116, 118, 119, 121, 124, 127, 128, 129, 130, 133, 134, 138, 139, 142, 143], "whenev": [24, 98, 101], "where": [10, 12, 18, 20, 26, 29, 30, 35, 36, 37, 39, 46, 47, 51, 56, 57, 64, 65, 68, 81, 85, 86, 87, 90, 99, 101, 102, 103, 105, 107, 108, 115, 116, 118, 119, 121, 124, 127, 129, 133, 134, 136, 138, 139, 141, 142, 143, 144, 145], "whether": [18, 36, 51, 58, 65, 86, 90, 98, 101, 118, 124, 126, 133], "which": [4, 7, 11, 14, 15, 18, 19, 20, 22, 23, 24, 27, 30, 31, 34, 35, 45, 49, 51, 54, 58, 60, 62, 64, 65, 86, 90, 93, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 115, 116, 121, 127, 128, 129, 134, 136, 137, 138, 139, 140, 142, 143, 144, 145], "whichev": 20, "while": [5, 20, 35, 49, 54, 86, 102, 103, 107, 109, 111, 119, 140, 142], "white": 20, "whitelist": 100, "whitelist_path": [99, 105, 107], "who": [30, 53, 79, 101, 103, 105, 106, 107], "whoami": 64, "whoever": 29, "whole": [86, 103, 111, 127, 139], "whom": 29, "whorka": 105, "whose": [20, 36, 99], "why": [27, 29, 130], "wide": [36, 64, 98], "widest": 108, "widet": 106, "widget": [20, 28, 31, 33, 36, 86, 90, 115, 116, 127], "width": 20, "widthperc": 128, "wildcard": [20, 85, 87], "wildfli": 18, "willing": [103, 108], "window": [20, 38, 47, 113, 123, 130, 131], "wipe": 10, "wish": [20, 27, 29, 36, 47, 64, 86, 92, 103, 105, 106, 107], "wisniewski": 107, "within": [10, 12, 20, 21, 25, 34, 36, 38, 43, 46, 47, 65, 85, 86, 87, 106, 107, 109, 110, 115, 116, 117, 119, 121, 122, 123, 129, 130, 131, 132, 137, 142, 143, 144, 145], "without": [1, 5, 20, 36, 44, 48, 53, 56, 58, 59, 62, 65, 85, 86, 87, 98, 99, 100, 102, 103, 104, 105, 123, 134, 136], "won": [19, 36, 56, 82, 87, 104, 115, 116, 143, 144], "word": [35, 101, 111, 112], "work": [1, 4, 9, 14, 18, 20, 22, 27, 29, 30, 34, 36, 39, 40, 44, 45, 47, 51, 52, 53, 54, 56, 58, 59, 61, 64, 65, 85, 87, 89, 90, 98, 99, 100, 101, 102, 103, 104, 106, 110, 111, 112, 114, 118, 119, 122, 124, 127, 128, 130, 133, 134, 136, 138, 139, 140, 142, 144], "work_dir": 89, "workaround": 69, "workbench": 54, "workdir": 90, "worker": [58, 64, 139], "workflow": [20, 46, 104], "working_dir": 138, "workspac": 46, "workspacenam": 128, "world": [19, 87, 142, 143, 144], "worth": 12, "would": [1, 10, 12, 18, 19, 20, 22, 23, 24, 27, 29, 35, 36, 41, 44, 45, 46, 51, 53, 54, 55, 59, 60, 64, 78, 86, 101, 102, 104, 121, 129, 139, 140, 145], "wouldn": [121, 129], "wrap": [36, 42, 45, 62, 89, 101, 105, 107, 139], "wrapper": [45, 53, 56, 58, 62, 63, 65, 66, 67, 68, 69, 72, 85, 89, 104, 107, 141, 143], "writabl": 71, "write": [12, 18, 27, 36, 51, 58, 83, 85, 104, 105, 106, 138, 139, 141], "written": [4, 24, 34, 36, 65, 89, 91, 99, 101, 102, 105, 107, 144], "wrong": [49, 111], "wrote": 105, "wsgi": [28, 141, 143], "wss": 20, "www": [15, 18, 20, 24, 29, 30, 44, 58, 65, 71, 74, 85, 87, 93, 96, 98, 102, 118, 120, 121, 124, 125, 127, 129, 130, 133, 135, 142, 143, 144], "x": [4, 12, 18, 20, 29, 61, 64, 82, 87, 99, 102, 103, 104, 105, 106, 107, 127, 128, 134, 137, 143], "x11": [61, 91, 92], "x86_64": [59, 92, 102, 104, 108], "x_scl": [85, 93], "xalt": 128, "xauth": 92, "xdg_cache_hom": 128, "xdg_config_hom": [106, 128], "xdg_data_dir": 93, "xdg_data_hom": 128, "xdmod": 53, "xdmod_url_warning_messag": 20, "xdmod_url_warning_message_seconds_after_job_complet": 20, "xdmod_widget_job": 20, "xdmod_widget_job_effici": 20, "xf": 52, "xfce": [21, 25, 65, 92, 123, 131, 140], "xfce4": 128, "xfsettingsd": 128, "xfwm4": 128, "xhr": 100, "xml": [2, 5, 7, 17, 18, 103], "xorg": 92, "xr": [29, 82], "xrender": 130, "xsede": 7, "xsetroot": 128, "xstartup": 91, "xstata": 140, "xxx": 145, "xxxx": 86, "xxxxxxxxxxxx": 86, "xy": 41, "xy001": 41, "xy125": 41, "xzf": 18, "y": [5, 66, 92, 99, 100, 101, 102, 103, 104, 105, 106, 107], "yaml": [4, 10, 19, 20, 22, 23, 24, 35, 36, 41, 45, 56, 58, 63, 64, 65, 66, 67, 68, 69, 72, 84, 85, 86, 93, 97, 98, 102, 115, 121, 129, 139], "ye": [36, 37, 54, 62], "yet": [54, 144], "yml": [2, 4, 7, 8, 10, 11, 13, 16, 19, 20, 22, 23, 24, 28, 29, 30, 31, 33, 34, 41, 42, 44, 46, 53, 56, 58, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 84, 89, 90, 93, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 113, 115, 116, 119, 121, 126, 127, 129, 134, 142, 143, 144], "you": [1, 4, 5, 6, 7, 10, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 63, 64, 65, 66, 68, 69, 71, 78, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 131, 132, 133, 134, 135, 137, 138, 139, 140, 142, 143, 144], "your": [1, 2, 4, 5, 7, 10, 13, 14, 15, 17, 20, 21, 22, 23, 24, 27, 28, 29, 31, 36, 37, 40, 41, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 59, 63, 64, 65, 68, 69, 70, 71, 86, 87, 88, 93, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 112, 114, 115, 117, 118, 119, 120, 121, 123, 124, 125, 127, 128, 129, 132, 133, 134, 135, 138, 139, 142, 143, 144], "yum": [2, 4, 5, 18, 19, 52, 57, 59, 60, 92, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 136], "yyi": 145, "z": [10, 13, 36, 41], "za": 36, "zh": 103, "zip": 29, "zone": [4, 60], "zoolei": 102, "zzz": 145}, "titles": ["Architecture", "2. Authentication", "SAML Authentication with Active Directory Federated Services (ADFS) and mod_auth_mellon", "CAS", "OpenID Connect with Dex", "Two Factor Auth using Duo with Keycloak", "Other Insecure Options", "NSF ACCESS", "OpenID Connect", "Overview", "1. Configure Apache Authentication", "3. Configure Logout", "2. Setup User Mapping", "Shibboleth", "OpenID Connect with KeyCloak on RHEL7", "4. Add Custom Theme", "5. Configure Keycloak with CILogon", "2. Configure Keycloak", "1. Install Keycloak", "3. Configure OnDemand to authenticate with Keycloak", "Customizations", "Enable Interactive Desktop", "2. Add a Cluster", "4. Custom Job Submission", "3. Modify Form Attributes", "1. Software Requirements", "Glossary", "Adding Google Analytics", "App Development", "App Sharing", "Enabling App Development", "Interactive Apps", "Adding Additional Information to the session cards", "Advanced Interactive Application Configurations", "Connection Parameters conn_params", "Dynamic Form Widgets", "User Form (form.yml.erb)", "Form Widgets", "Manifest yml files", "Saving interactive application settings", "Setup Interactive Apps", "3. Enable Reverse Proxy", "2. Modify Cluster Configuration", "1. Software Requirements", "Sub-Apps and Reconfiguring existing apps", "Job Submission (submit.yml.erb)", "Render Template", "Connection View", "Debugging and Monitoring", "Apache httpd tips", "Debugging Interactive Apps", "Logging", "Prometheus Monitoring", "Open OnDemand", "Install Other Interactive Apps", "Installation", "Cluster Configuration", "3. Secure Apache httpd", "Cluster Config Schema v2", "1. Install Software", "4. Add SELinux", "Advanced Resource Manager Configurations", "A Working Example of a bin_overrides Script", "Cloudy Cluster", "Kubernetes", "LinuxHost", "LSF", "PBS Professional", "Grid Engine", "Slurm", "Systemd", "Test Configuration", "Torque", "Configuration Reference", "nginx_stage app", "nginx_stage app_clean", "nginx_stage app_list", "nginx_stage app_reset", "nginx_stage nginx", "nginx_stage nginx_clean", "nginx_stage nginx_list", "nginx_stage nginx_show", "nginx_stage pun", "Usage", "ood-portal-generator", "nginx_stage.yml", "ondemand.d/*.yml files", "ood_portal.yml", "submit.yml.erb", "Basic Batch Connect Options", "Batch Connect Script Options", "Batch Connect VNC Options", "Batch Connect VNC Container Options", "PUN environment", "Release Notes", "v1.0 Release Notes", "v1.1 Release Notes", "v1.2 Release Notes", "v1.3 Release Notes", "v1.4 Release Notes", "v1.5 Release Notes", "v1.6 Release Notes", "v1.7 Release Notes", "v1.8 Release Notes", "v2.0 Release Notes", "v3.0 Release Notes", "v3.1 Release Notes", "v4.0 Release Notes", "Requirements", "Security", "Developing The OOD Dashboard", "Developing the Dashboard App", "Developing the Shell App", "Tutorials: Interactive Apps", "Add Custom Queues/Partitions", "Use a Global Static List", "Use a Local Static List", "Add a Jupyter App", "2. Copy Jupyter App", "3. Customize Attributes", "5. Deploy Jupyter App", "4. Modify Submit Parameters", "1. Software Requirements", "Add a MATLAB App", "2. Copy MATLAB App", "7. Deploy MATLAB App", "6. Edit Form.js", "3. Customize Attributes", "4. Edit Launch Script", "5. Modify Submit Parameters", "8. Known Issues", "1. Software Requirements", "Add an RStudio App", "1. Copy RStudio App", "4. Customize Attributes", "5. Deploy RStudio App", "3. Setup Singularity", "2. Software Requirements", "Add a Jupyter App on a Kubernetes Cluster", "Add a Jupyter App on a Kubernetes Cluster that behaves like HPC compute", "Troubleshooting Interactive Apps", "Tutorials: Passenger Apps", "Starter NodeJS Application", "Starter Python Application", "Starter Ruby Application", "Versioning Policy"], "titleterms": {"": [20, 99], "0": [95, 96, 104, 105, 107], "04": 105, "1": [57, 59, 65, 95, 96, 97, 106], "11": 103, "12": [95, 106], "14": 104, "15": [95, 96], "17": 96, "18": [99, 105], "2": [57, 59, 65, 95, 96, 97, 98, 99], "2023": 106, "22": 105, "29": 104, "2fa": 102, "3": [30, 57, 59, 95, 98, 99, 100], "30": 102, "4": [30, 59, 95, 99, 100, 106], "5": [30, 95, 96, 99, 100, 101, 102], "6": [30, 96, 99, 101, 102, 103], "7": [102, 103, 106], "8": [103, 104], "A": [58, 62], "If": 130, "No": 104, "The": [29, 65, 110, 136, 139, 140], "To": 111, "Tos": 53, "aarch64": 106, "abil": [99, 101, 102, 103], "abl": 50, "accept": 107, "access": [0, 7, 20, 29], "account": [98, 102], "acknowledg": 107, "acl": 58, "activ": [2, 95, 96, 98, 100, 102, 104], "activejob": [102, 104], "ad": [27, 32, 47, 95, 101, 102, 103, 104, 106], "adapt": [0, 23, 101, 102], "add": [10, 15, 16, 17, 19, 20, 22, 24, 59, 60, 99, 100, 101, 102, 103, 111, 114, 115, 116, 117, 123, 132, 138, 139, 142], "addit": [32, 103], "adf": 2, "administr": [105, 106], "advanc": [12, 33, 61, 66, 106], "advantag": 109, "after": [46, 60, 101], "alert": 102, "all": [99, 104], "allow": 20, "allowlist": [20, 103], "altern": 136, "alwai": 101, "amazon": 106, "an": [31, 58, 102, 104, 132], "analyt": [27, 106], "ani": 65, "announc": [20, 98, 107], "apach": [4, 10, 18, 19, 41, 49, 57, 101, 102, 104, 105, 106], "app": [0, 20, 28, 29, 30, 31, 40, 44, 50, 54, 64, 74, 95, 96, 98, 99, 100, 102, 103, 104, 105, 107, 111, 112, 113, 117, 118, 120, 123, 124, 125, 132, 133, 135, 138, 139, 140, 141, 142, 143, 144], "app_clean": 75, "app_list": 76, "app_reset": 77, "applic": [20, 33, 39, 65, 95, 96, 97, 98, 99, 100, 101, 107, 142, 143, 144], "approach": 65, "ar": [103, 105, 107], "architectur": [0, 108], "arm64": 106, "arrai": [20, 100, 101], "asset": 87, "attribut": [24, 36, 104, 115, 116, 119, 127, 134], "audienc": 64, "audit": [101, 109], "auth": 5, "authent": [0, 1, 2, 9, 10, 19, 64, 103], "auto": [20, 105], "autogener": 99, "autoload": 107, "automat": [12, 20, 36, 105], "avail": 104, "background": 140, "backport": 145, "balanc": [20, 102], "bar": 20, "base": [20, 35, 98, 99], "basic": [89, 100, 143], "batch": [20, 36, 45, 88, 89, 90, 91, 92, 99, 102, 103, 107], "batch_connect": 58, "batchconnect": 101, "becaus": 140, "been": [105, 107], "befor": 46, "behav": 139, "behind": [4, 103, 105], "being": 50, "beta": 103, "better": [98, 99, 103], "between": [104, 139], "bin_overrid": [58, 62], "blacklist": [105, 107], "block": 20, "boot": [142, 143], "bootstrap": 64, "brand": [20, 102], "break": [58, 104, 105, 106, 107], "broker": 102, "browser": 108, "bu": 65, "bug": 101, "build": [55, 59, 112, 136], "bundler": 104, "button": 101, "ca": [3, 57], "cach": [36, 103], "can": [29, 107], "cancel": 20, "cannot": 140, "card": [20, 32, 33, 36, 102, 104], "categori": 20, "ccq": 103, "cento": 106, "cgroup": 65, "chang": [20, 24, 45, 57, 95, 96, 98, 99, 100, 101, 104, 105, 106, 107], "charact": 20, "checkbox": 106, "chines": 103, "choic": 33, "chrome": 103, "cilogon": [16, 102], "clean": 107, "cleanup": 46, "client": [7, 17], "cloudi": 63, "cluster": [22, 36, 42, 56, 58, 63, 64, 65, 98, 102, 103, 115, 138, 139], "code": [24, 29, 36], "collect": 107, "command": [12, 20, 73, 83, 98], "comment": 109, "common": [63, 68], "commun": [53, 64], "complet": [32, 50, 103, 106], "compon": [95, 96, 97, 98], "compos": [20, 96, 98, 101, 102], "compress": [101, 107], "comput": [101, 102, 139], "conf": 102, "config": [19, 56, 58, 98, 102, 144], "configmap": 138, "configur": [2, 4, 5, 10, 11, 12, 16, 17, 19, 20, 27, 33, 36, 42, 45, 52, 56, 61, 64, 65, 71, 73, 85, 86, 87, 98, 101, 103, 104, 105, 107, 111, 115], "conn_param": 34, "connect": [4, 8, 14, 20, 34, 36, 45, 47, 50, 87, 88, 89, 90, 91, 92, 99, 102, 103, 106, 107], "consider": 109, "contain": [0, 65, 92, 138, 139], "content": 107, "context": [0, 46, 105], "contribut": 53, "control": [29, 101, 104, 109], "copi": [99, 103, 118, 124, 133], "core": 99, "creat": [20, 111, 112, 143], "css": 20, "custom": [4, 15, 20, 23, 36, 58, 100, 104, 105, 106, 114, 115, 116, 119, 127, 134], "customiz": 99, "d": [65, 86, 104], "dai": [20, 104], "dashboard": [0, 20, 29, 52, 95, 96, 98, 99, 101, 102, 103, 104, 110, 111], "data": [51, 107], "debian": 106, "debug": [12, 48, 50, 98, 103], "dedic": 30, "def": 92, "default": [20, 24, 30, 74, 82, 99, 103, 105, 107], "defin": 36, "delai": 107, "delet": [39, 105, 107], "demonstr": 39, "depend": [59, 102, 104, 105, 106, 107, 144, 145], "deploi": [64, 120, 125, 135], "deprec": [105, 106, 107], "desktop": [0, 21, 24, 95, 98, 140], "detail": [20, 98, 99, 100, 101, 102, 103, 104, 105, 106], "dev": [111, 112], "develop": [28, 30, 99, 110, 111, 112], "dex": [4, 12, 20, 57, 103, 105], "diagram": 0, "differ": 18, "dir": 99, "direct": [104, 105, 106, 107], "directori": [2, 20, 98, 99, 104, 105, 111], "disabl": [20, 99, 101, 102, 103, 105, 106, 107], "disclosur": 109, "discover": 99, "disk": 20, "dismiss": 107, "displai": [33, 36, 98, 105], "document": [100, 102, 105], "down": 58, "download": [20, 106, 136], "drop": [102, 103, 105], "duo": [5, 100, 102], "dure": [105, 107], "dynam": [35, 45, 106], "easier": 100, "edit": [39, 57, 107, 126, 128, 142], "editor": 107, "effect": 57, "effici": 107, "el6": 102, "el8": 102, "el9": 105, "element": 35, "embed": 98, "enabl": [20, 21, 29, 30, 39, 41, 59, 98, 99, 101], "enforc": [64, 65], "engin": [68, 101], "enhanc": [99, 104, 107], "entir": 35, "entri": 102, "env": 111, "environ": [68, 93, 99, 143], "erb": [32, 36, 45, 46, 88, 104, 106], "error": [20, 65, 99, 101, 112, 130, 140], "etc": 98, "everi": 102, "everyon": 30, "exampl": [12, 29, 34, 36, 45, 47, 58, 62, 74, 75, 76, 77, 78, 79, 80, 81, 82, 88], "exchang": 64, "execut": [29, 45], "exist": [44, 65], "experiment": 99, "export": 52, "express": 12, "extend": 103, "factor": 5, "fals": 107, "featur": [105, 106, 107], "feder": 2, "fetch": 101, "field": [24, 98, 103], "file": [12, 20, 29, 38, 46, 57, 73, 86, 92, 95, 101, 102, 103, 104, 105, 106, 107, 111, 143, 144], "fileset": 20, "finish": 140, "firefox": 99, "firewal": 4, "firewalld": 60, "first": 58, "fix": [20, 99, 101, 105], "flask": 143, "flow": 0, "fluxbox": 128, "form": [20, 24, 35, 36, 37, 101, 105, 107, 115, 116, 126], "format": 104, "formerli": 96, "framework": 142, "from": [4, 52, 55, 59, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104], "front": 18, "full": [138, 139], "fulli": 20, "gem": [102, 103, 104], "gener": [19, 20, 54, 74, 77, 78, 79, 82, 84, 87, 95, 102, 103], "get": [53, 130], "gke": 64, "global": [36, 45, 88, 107, 115], "globu": 106, "glossari": 26, "googl": [27, 106], "grafana": [20, 52, 102], "grid": [68, 101], "gridengin": 103, "guid": [21, 28, 40, 117, 123, 132], "ha": [104, 105, 107], "handl": [103, 115, 116], "hard": [24, 36], "hardwar": 108, "have": [98, 105, 107], "header": 107, "help": [20, 24, 98, 105], "hide": [20, 35, 98, 107], "home": [20, 99, 100], "hook": [46, 64], "host": [0, 2, 18, 20, 30, 65, 99, 102, 103], "how": 53, "hpc": 139, "html": [32, 98, 101, 106], "httpd": [49, 57, 106], "i": [98, 99, 101, 103, 105, 107, 140], "icon": 104, "ident": [16, 102], "identifi": 107, "ie": 103, "ignor": 98, "illeg": 20, "imag": [64, 136], "improv": [99, 100, 101, 102, 106], "includ": 99, "incommon": 7, "individu": 20, "info": [27, 32, 103], "inform": [10, 32, 47], "infrastructur": [95, 96, 97, 98, 99, 100, 101], "init": 138, "initi": [18, 105, 107, 142], "input": 63, "insecur": 6, "instal": [2, 4, 5, 18, 19, 29, 52, 54, 55, 59, 74, 82, 98, 102, 144], "instanc": 16, "instantli": 140, "instead": 98, "instruct": [47, 107], "integr": [20, 103, 104, 106], "interact": [20, 21, 31, 33, 39, 40, 50, 54, 98, 104, 105, 107, 113, 140], "interfac": [104, 107], "introduct": 109, "invalid": 68, "invok": 128, "issu": [63, 68, 99, 112, 130], "item": [20, 36, 98, 107], "itself": 140, "j": [35, 126, 142], "java": [130, 140], "javascript": [99, 106], "job": [0, 20, 23, 45, 58, 65, 68, 95, 96, 98, 100, 101, 102, 103, 104, 115, 116, 140], "json": 105, "jupyt": [34, 117, 118, 120, 138, 139], "just": 65, "kei": [20, 99], "keycloak": [5, 14, 16, 17, 18, 19, 64, 100, 102], "know": 111, "known": 130, "kuberenet": 64, "kubernet": [64, 138, 139], "kyverno": 64, "label": [24, 35, 107], "land": 104, "larg": 104, "launch": [20, 44, 65, 104, 105, 128], "layout": [20, 104], "ldap": [4, 17], "level": 98, "libcgroup": 65, "librari": 65, "like": 139, "limit": [20, 65, 109], "link": [20, 98, 102, 104], "linux": [0, 102, 106], "linuxhost": [23, 24, 65], "list": [98, 115, 116], "load": [65, 105], "local": [20, 101, 103, 111, 116], "locat": [49, 50, 105], "log": [49, 50, 51, 98], "login": 58, "logo": 103, "logout": [11, 87], "longer": [98, 104], "lowercas": 107, "lsf": [66, 101], "made": 33, "main": [19, 45, 46], "mainten": [20, 102], "major": [104, 145], "make": [30, 98], "malform": 102, "manag": [4, 61, 64, 104, 109, 121, 128, 129], "mani": 101, "manifest": [20, 38, 101, 104], "manual": 20, "map": [7, 12, 16, 74, 107], "mapfil": 12, "markdown": 101, "match": 102, "mate": 128, "matlab": [123, 124, 125, 128, 140], "max": [35, 103], "maxim": 140, "md": [32, 106], "memcach": 104, "menu": [20, 102], "messag": [20, 24, 104], "meta": 58, "metadata": 104, "min": 35, "minim": 24, "minor": 145, "miss": [20, 99], "mod_auth_mellon": 2, "mod_auth_openidc": [19, 103], "mod_ood_proxi": 95, "mode": [20, 99, 102], "modifi": [24, 42, 115, 121, 129], "modul": [9, 10], "monitor": [48, 52], "more": 27, "motd": 20, "mount": [138, 139], "move": 140, "multipl": [98, 101, 103], "my": [95, 96], "name": [20, 68, 98, 102], "nativ": [47, 103], "navbar": [99, 105], "navconfig": [105, 107], "navig": 20, "new": [17, 98, 102, 103, 104, 105, 106, 107], "nginx": [78, 87, 100], "nginx_clean": [79, 102, 107], "nginx_list": 80, "nginx_show": 81, "nginx_stag": [74, 75, 76, 77, 78, 79, 80, 81, 82, 85, 101], "nightli": 145, "node": [61, 64, 98, 101, 102, 142], "nodej": [99, 104, 142], "none": 99, "note": [94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "notebook": 34, "novnc": [103, 107], "now": [102, 103, 104, 107], "nsf": 7, "number": 145, "object": 46, "offer": 101, "oidc": [7, 64], "old": [105, 112], "ondemand": [4, 10, 17, 19, 20, 27, 30, 53, 57, 64, 86, 100, 101, 102, 103, 104], "onli": [57, 58], "ood": [2, 19, 20, 84, 95, 102, 103, 110, 111], "ood_auth_map": 104, "ood_port": [57, 87], "ood_ssh_host": 101, "open": [27, 53, 57, 64, 98, 101, 104], "openid": [4, 8, 14, 87], "oper": 108, "option": [6, 20, 30, 35, 45, 74, 77, 78, 79, 81, 82, 84, 85, 87, 88, 89, 90, 91, 92, 98, 99, 101, 105, 106], "other": [0, 6, 35, 54, 103, 121, 129], "overrid": 20, "overview": [0, 9, 20, 29, 73], "own": [35, 107], "packag": [4, 105, 106], "page": [20, 99, 100, 104, 105], "panel": [47, 103], "paramet": [34, 45, 121, 129], "partit": 114, "pass": 101, "passeng": [0, 99, 100, 141], "password": 47, "past": [99, 103], "patch": 145, "path": 106, "pb": [23, 67, 121, 129], "pbspro": 101, "peer": [29, 100], "per": [64, 87], "percent": 102, "perform": [49, 66, 100], "period": 98, "permiss": 29, "pid": 101, "pin": [20, 104], "ping": 20, "place": 18, "polici": [64, 109, 145], "poll": 107, "poll_delai": 107, "pong": 20, "port": 20, "portal": [10, 19, 57, 84, 95, 102, 103], "possibl": 114, "post": 47, "ppc64le": 106, "predefin": [20, 36], "prepar": 2, "privat": 64, "process": 52, "profession": [23, 67, 121, 129], "profil": [20, 86, 105], "project": [20, 102], "prometheu": 52, "prompt": 63, "properti": 86, "protect": 103, "provid": [16, 104], "proxi": [4, 41, 47, 87, 105], "public": 87, "publish": [142, 143, 144], "pun": [82, 93, 99, 107], "python": 143, "qo": 103, "qualiti": [101, 107], "queri": 27, "queue": 114, "quick": [21, 40, 44, 105, 117, 123, 132], "quota": [20, 99, 101], "r": 100, "rail": 144, "rais": 101, "rb": 144, "re": 19, "realm": 17, "rebuild": 98, "recent": 105, "reconfigur": 44, "redhat": 106, "redirect": 87, "reduc": 102, "refer": [4, 53, 73, 109], "regener": 102, "regex": 104, "regist": 16, "registr": [7, 87], "registri": 64, "regular": 12, "releas": [94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "relev": 109, "remot": [12, 20, 105], "remov": [16, 24, 101, 107], "render": [46, 101], "report": 109, "repositori": 59, "request": [0, 138], "requir": [25, 41, 43, 74, 78, 81, 82, 98, 99, 104, 107, 108, 122, 131, 137], "resiz": 140, "resourc": [61, 65, 121, 129, 138], "respond": 107, "restart": [49, 57, 102], "retain": 103, "revers": [4, 41, 47, 87, 105], "rewriteengin": 101, "rhel7": 14, "root": 107, "rpm": [52, 98], "rstudio": [0, 100, 132, 133, 135], "ru": 144, "rubi": [99, 103, 104, 144], "run": [98, 101, 102, 105], "runtim": 107, "saml": 2, "sanit": [10, 102], "save": [39, 107], "schedul": 103, "schema": 58, "scl": [100, 104], "script": [12, 20, 45, 46, 62, 90, 98, 102, 128], "secret": 99, "secur": [57, 99, 101, 105, 109], "select": [20, 35], "selector": 106, "selinux": [60, 102, 105, 107], "separ": 18, "server": [18, 45], "servic": [2, 4, 49, 57, 59], "session": [0, 10, 20, 32, 33, 36, 46, 47, 51, 98, 102, 105, 107], "set": [20, 35, 39, 45, 66, 88, 99, 101, 102, 106, 107, 111], "setup": [9, 12, 40, 136], "sever": 99, "sge": [99, 100], "share": [0, 29, 65, 100, 102, 104], "shell": [0, 20, 68, 95, 98, 99, 101, 102, 103, 104, 106, 112], "shibboleth": [7, 13], "shortcut": 20, "show": [49, 102], "signific": 105, "simpl": 88, "sinatra": [103, 144], "singular": 136, "size": [20, 102], "slice": 65, "slurm": [23, 69, 99, 100, 101, 103, 121, 129, 139], "softwar": [25, 43, 59, 65, 107, 108, 122, 131, 137], "solut": 114, "sourc": [4, 52, 55, 59], "spec": [138, 139], "special": [53, 102, 103], "specif": [65, 102], "specifi": [30, 45], "spi": 5, "ssh": [20, 99, 102], "stage": 31, "stale": 101, "start": [18, 21, 40, 53, 59, 117, 123, 132], "starter": [92, 142, 143, 144], "state": 65, "static": [115, 116], "statu": 107, "step": [18, 41], "store": 98, "streamlin": 103, "string": 101, "styliz": 47, "sub": 44, "submiss": [23, 45, 101, 115, 116], "submit": [36, 45, 88, 105, 121, 129, 138, 139], "suggest": 102, "support": [16, 20, 86, 98, 99, 100, 101, 102, 103, 105, 106, 108, 145], "svg": 103, "switch": 139, "system": [0, 20, 29, 51, 107, 108], "systemd": [65, 70], "tabl": 107, "tag": 145, "taglin": 20, "take": 57, "target": 65, "templat": [20, 45, 46, 54, 101], "termin": 101, "test": [52, 71], "text": [20, 100, 107], "thank": [53, 102, 103, 105], "thei": 98, "theme": [15, 20, 104], "thing": 111, "throw": 140, "ticket": [20, 105], "tighter": 104, "time": 145, "tip": 49, "titl": 102, "token": 64, "top": 98, "torqu": [23, 72, 100, 103, 121, 129], "troubleshoot": [65, 140], "tune": 49, "tutori": [14, 53, 110, 113, 141], "two": 5, "type": 45, "ubuntu": 105, "ug": 99, "unauthor": 20, "under": 98, "understand": 20, "undetermin": 65, "updat": [57, 60, 100, 102, 104, 105, 106, 107, 145], "upgrad": [95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "upload": [20, 103, 106], "url": [20, 101], "us": [5, 19, 20, 29, 39, 64, 100, 103, 104, 105, 115, 116, 128, 143], "usag": 83, "user": [0, 7, 12, 16, 20, 36, 57, 64, 65, 87, 102, 106, 107], "v0": 95, "v1": [30, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104], "v2": [58, 95, 96, 104], "v3": [105, 106], "v4": 107, "valu": [24, 35], "vari": 100, "verif": 98, "verifi": [41, 59], "version": [95, 96, 97, 98, 99, 100, 101, 105, 112, 145], "via": [52, 103], "view": [47, 103], "virtual": 143, "virtualhost": 49, "visual": 61, "vnc": [0, 45, 47, 91, 92, 101, 103], "vulner": 109, "walltim": 64, "warn": [20, 99, 102], "web": [64, 142], "websocket": 20, "when": [101, 140], "whether": 104, "which": 36, "while": 65, "whitelist": [99, 105, 107], "who": 29, "widget": [35, 37, 104, 105, 106, 107], "window": [98, 104, 128, 140], "without": [50, 128], "work": [41, 62], "wrapper": [20, 102, 142, 144], "write": 144, "xdmod": [20, 103, 107], "xfce": [24, 98, 128], "yml": [36, 38, 45, 57, 85, 86, 87, 88, 138, 139], "you": 130, "your": [16, 35]}}) \ No newline at end of file