clearml-server/server/schema/services
allegroai 7816b402bb Enhance ES7 initialization and migration support
Support older task hyper-parameter migration on pre-population
2020-08-10 08:53:41 +03:00
..
_api_defaults.conf Initial commit 2019-06-11 00:24:35 +03:00
_common.conf Initial commit 2019-06-11 00:24:35 +03:00
auth.conf Enhance ES7 initialization and migration support 2020-08-10 08:53:41 +03:00
debug.conf Add debug.ping endpoint 2020-08-10 08:35:34 +03:00
events.conf Support order parameter in events.get_task_log 2020-08-10 08:37:41 +03:00
models.conf Move to ElasticSearch 7 2020-08-10 08:30:40 +03:00
organization.conf Support tags-per-project in tags related services 2020-06-21 23:54:05 +03:00
projects.conf Add support for Task hyper-parameter sections and meta-data 2020-08-10 08:45:25 +03:00
queues.conf Add API version 2.4 with new trains-server capabilities including DevOps and scheduling 2019-10-25 15:36:58 +03:00
README.md Initial commit 2019-06-11 00:24:35 +03:00
server.conf Add server uid to server.info response in API v2.8 2020-06-01 13:01:31 +03:00
tasks.conf Add support for Task hyper-parameter sections and meta-data 2020-08-10 08:45:25 +03:00
users.conf Support filtering users by activity in projects 2020-06-01 11:55:40 +03:00
workers.conf Add support for field exclusion in get_all endpoints 2020-08-10 08:48:48 +03:00

Writing descriptions

There are two options for writing parameters descriptions. Mixing between the two will result in output which is not Sphinx friendly. Whatever you choose, lines are subject to wrapping.

  • non-strict whitespace - Break the string however you like. Newlines and sequences of tabs/spaces are replaced by one space. Example:
    get_all {
        "1.5" {
            description: """This will all appear
            as one long
            sentence.
            Break lines wherever you
            like.
            """
        }
    }
    
    Becomes:
    class GetAllRequest(...):
        """
        This will all appear as one long sentence. Break lines wherever you
        like.
        """
    
  • strict whitespace - Single newlines will be replaced by spaces. Double newlines become a single newline WITH INDENTATION PRESERVED, so if uniform indentation is requried for all lines you MUST start new lines at the first column. Example:
    get_all {
        "1.5" {
            description: """
    Some general sentence.
    
    - separate lines must have double newlines between them
    
    - must begin at first column even though the "description" key is indented
    
    - you can use single newlines, the lines will be
      joined
    
        -- sub bullet: this line's leading spaces are preserved
    """
        }
    }
    
    Becomes:
    class GetAllRequest(...):
        """
        Some general sentence.
        - separate lines must have double newlines between them
        - must begin at first column even though the "description" key is indented
        - you can use single newlines, the lines will be joined
            -- sub bullet: this line's leading spaces are preserved
        """