body_hash
stringlengths
64
64
body
stringlengths
23
109k
docstring
stringlengths
1
57k
path
stringlengths
4
198
name
stringlengths
1
115
repository_name
stringlengths
7
111
repository_stars
float64
0
191k
lang
stringclasses
1 value
body_without_docstring
stringlengths
14
108k
unified
stringlengths
45
133k
45bdaf105f1b8f3daabee340dfa853ae762c1da7addcd294774ea6ef38aac375
@click.command('clone', short_help='download any file using sharing link or file ID it will be automatically tracked henceforth') @click.argument('payload') def download(payload): '\n clone: download a file/folder using either the sharing link or using the file ID for the file\n ' if (payload != None): ...
clone: download a file/folder using either the sharing link or using the file ID for the file
drive_cli/actions.py
download
ahegde3/drive-cli
0
python
@click.command('clone', short_help='download any file using sharing link or file ID it will be automatically tracked henceforth') @click.argument('payload') def download(payload): '\n \n ' if (payload != None): fid = utils.get_fid(payload) else: click.secho('argument error', fg='red') ...
@click.command('clone', short_help='download any file using sharing link or file ID it will be automatically tracked henceforth') @click.argument('payload') def download(payload): '\n \n ' if (payload != None): fid = utils.get_fid(payload) else: click.secho('argument error', fg='red') ...
c3c8b9c7bdeffd76e29b4e3e1245321e2ad2160722bf357b999a20a50b5b2d18
@click.command('add_remote', short_help='upload any existing file to drive') @click.option('--file', help='specify the partcular file to uploaded else entire directory is uploaded') @click.option('--pid', help='specify particular folder id/sharing_link of the folder under which remote must must be added') def create_re...
add_remote: create remote equivalent for existing file/folder in local device
drive_cli/actions.py
create_remote
ahegde3/drive-cli
0
python
@click.command('add_remote', short_help='upload any existing file to drive') @click.option('--file', help='specify the partcular file to uploaded else entire directory is uploaded') @click.option('--pid', help='specify particular folder id/sharing_link of the folder under which remote must must be added') def create_re...
@click.command('add_remote', short_help='upload any existing file to drive') @click.option('--file', help='specify the partcular file to uploaded else entire directory is uploaded') @click.option('--pid', help='specify particular folder id/sharing_link of the folder under which remote must must be added') def create_re...
d591ac73ef7fd401363cafd1bb2263ec486b60102a599cfbdaaccd4f6ca4c63d
@click.command('rm', short_help='delete a particular file in drive') @click.option('--file', help='specify the partcular file to deleted else entire directory is deleted') @click.option('--id', help='delete untracked file directly using id or sharing link, can be used even for unlinked files') def delete(file, id): ...
rm: delete a particular file/folder from the directory in the remote drive
drive_cli/actions.py
delete
ahegde3/drive-cli
0
python
@click.command('rm', short_help='delete a particular file in drive') @click.option('--file', help='specify the partcular file to deleted else entire directory is deleted') @click.option('--id', help='delete untracked file directly using id or sharing link, can be used even for unlinked files') def delete(file, id): ...
@click.command('rm', short_help='delete a particular file in drive') @click.option('--file', help='specify the partcular file to deleted else entire directory is deleted') @click.option('--id', help='delete untracked file directly using id or sharing link, can be used even for unlinked files') def delete(file, id): ...
668d0904d4aa4547243a6a6dcfda0ba92df0b42f7203e9a8f23363ce713acf38
@click.command('ls', short_help='list out all the files present in this directory in the drive for tracked directories') def list_out(): '\n ls: Print files belonging to a folder in the drive folder of the current directory\n ' data = utils.drive_data() token = os.path.join(dirpath, 'token.json') ...
ls: Print files belonging to a folder in the drive folder of the current directory
drive_cli/actions.py
list_out
ahegde3/drive-cli
0
python
@click.command('ls', short_help='list out all the files present in this directory in the drive for tracked directories') def list_out(): '\n \n ' data = utils.drive_data() token = os.path.join(dirpath, 'token.json') store = file.Storage(token) creds = store.get() service = build('drive', '...
@click.command('ls', short_help='list out all the files present in this directory in the drive for tracked directories') def list_out(): '\n \n ' data = utils.drive_data() token = os.path.join(dirpath, 'token.json') store = file.Storage(token) creds = store.get() service = build('drive', '...
20aa4254477ae62e3bf14821492f3e08efcc37070fae002a5804c2732914b4fb
@click.command('status', short_help='list changes committed since last sync') def status(): '\n status: get a change log of files changed since you had the last sync(push/pull/clone)\n ' cwd = os.getcwd() data = utils.drive_data() if (cwd not in data.keys()): click.secho('following directo...
status: get a change log of files changed since you had the last sync(push/pull/clone)
drive_cli/actions.py
status
ahegde3/drive-cli
0
python
@click.command('status', short_help='list changes committed since last sync') def status(): '\n \n ' cwd = os.getcwd() data = utils.drive_data() if (cwd not in data.keys()): click.secho('following directory has not been tracked: \nuse drive add_remote or drive clone ', fg='red') sy...
@click.command('status', short_help='list changes committed since last sync') def status(): '\n \n ' cwd = os.getcwd() data = utils.drive_data() if (cwd not in data.keys()): click.secho('following directory has not been tracked: \nuse drive add_remote or drive clone ', fg='red') sy...
0a69e940cfed6199c493a0898d0f1e684bb5c2eea60b3dd7613ff1d879da4889
@click.command('push', short_help='push modification from local files to the drive') def push(): '\n push the latest changes from your local folder that has been added/cloned to google drive.\n ' data = utils.drive_data() cwd = os.getcwd() if (cwd not in data.keys()): click.secho('followin...
push the latest changes from your local folder that has been added/cloned to google drive.
drive_cli/actions.py
push
ahegde3/drive-cli
0
python
@click.command('push', short_help='push modification from local files to the drive') def push(): '\n \n ' data = utils.drive_data() cwd = os.getcwd() if (cwd not in data.keys()): click.secho('following directory has not been tracked: \nuse drive add_remote or drive clone ', fg='red') ...
@click.command('push', short_help='push modification from local files to the drive') def push(): '\n \n ' data = utils.drive_data() cwd = os.getcwd() if (cwd not in data.keys()): click.secho('following directory has not been tracked: \nuse drive add_remote or drive clone ', fg='red') ...
465b22bc9bd2b99965dcbaafb91e07f5180e691d5ca1b8da20d9a6c9d33a49b7
@click.command('share', short_help='share file using file id or link') @click.argument('fid') @click.option('--role', default='reader', help=role_help) @click.option('--type', default='user', help=type_help) @click.option('--message', default='shared via drive-cli', help=message_help) def share(fid, role, type, message...
share file/folder using using either the sharing link or using the file ID
drive_cli/actions.py
share
ahegde3/drive-cli
0
python
@click.command('share', short_help='share file using file id or link') @click.argument('fid') @click.option('--role', default='reader', help=role_help) @click.option('--type', default='user', help=type_help) @click.option('--message', default='shared via drive-cli', help=message_help) def share(fid, role, type, message...
@click.command('share', short_help='share file using file id or link') @click.argument('fid') @click.option('--role', default='reader', help=role_help) @click.option('--type', default='user', help=type_help) @click.option('--message', default='shared via drive-cli', help=message_help) def share(fid, role, type, message...
bf3efb8522b509c74facf7f98b359e4a5230b141cc851622e9696bb9de69a6ee
def files_children(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.file...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children(file_parent_id=file_parent_id_value, async_req=True) >>> result = t...
nodeum_sdk/api/files_api.py
files_children
nodeum-io/nodeum-sdk-python
0
python
def files_children(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.file...
def files_children(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.file...
fdecedcee623fd480b2623ea82f094b6f9ba5f46c567e28e4803e911a652c026
def files_children_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> th...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_with_http_info(file_parent_id=file_parent_id_value, async_req=True)...
nodeum_sdk/api/files_api.py
files_children_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def files_children_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> th...
def files_children_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> th...
442e285eebe75a40d613f05be435146383d24692b787c05239101aa476e56381
def files_children_by_container(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thre...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_by_container(container_id=container_id_value, file_parent_id=file_p...
nodeum_sdk/api/files_api.py
files_children_by_container
nodeum-io/nodeum-sdk-python
0
python
def files_children_by_container(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thre...
def files_children_by_container(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thre...
5a2810c3575a1e87284b54b4ea5919de25dece9c3974cd0c7a2e9add05a0981a
def files_children_by_container_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_by_container_with_http_info(container_id=container_id_value, file_p...
nodeum_sdk/api/files_api.py
files_children_by_container_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def files_children_by_container_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
def files_children_by_container_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
8dd9c50b671a3676765423ceb3253e50551ab0356a50b9e8f934aefe6e4e25af
def files_children_by_pool(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_by_pool(pool_id=pool_id_value, file_parent_id=file_parent_id_value,...
nodeum_sdk/api/files_api.py
files_children_by_pool
nodeum-io/nodeum-sdk-python
0
python
def files_children_by_pool(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ...
def files_children_by_pool(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ...
725539057f641a7123eaa23d2974bd3ba11f52fde4f26509eca7e4f5cd814c7c
def files_children_by_pool_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_by_pool_with_http_info(pool_id=pool_id_value, file_parent_id=file_p...
nodeum_sdk/api/files_api.py
files_children_by_pool_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def files_children_by_pool_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
def files_children_by_pool_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
c02ebe3e7df73f2a53da4675f552dfa394887f0ef51d830ddc9e71dc40a1fcba
def files_children_by_task(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_by_task(task_id=task_id_value, file_parent_id=file_parent_id_value,...
nodeum_sdk/api/files_api.py
files_children_by_task
nodeum-io/nodeum-sdk-python
0
python
def files_children_by_task(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ...
def files_children_by_task(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ...
eabd13bf0aee747a5789470d19f509247f3ad41644af4477a6c3c9df4d3c93fb
def files_children_by_task_with_http_info(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_by_task_with_http_info(task_id=task_id_value, file_parent_id=file_p...
nodeum_sdk/api/files_api.py
files_children_by_task_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def files_children_by_task_with_http_info(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
def files_children_by_task_with_http_info(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
c6c8e78c53b99c4ecc458722d7929390058de3ff94e10fc7bf734f579f9a3acd
def files_children_by_task_execution(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>>...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_by_task_execution(task_execution_id=task_execution_id_value, file_p...
nodeum_sdk/api/files_api.py
files_children_by_task_execution
nodeum-io/nodeum-sdk-python
0
python
def files_children_by_task_execution(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>>...
def files_children_by_task_execution(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>>...
cf594249a7a8f034dd45c0b7e9c858a424778a8949724dc95474ad8c63ed228d
def files_children_by_task_execution_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=Tr...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_by_task_execution_with_http_info(task_execution_id=task_execution_i...
nodeum_sdk/api/files_api.py
files_children_by_task_execution_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def files_children_by_task_execution_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=Tr...
def files_children_by_task_execution_with_http_info(self, **kwargs): 'Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=Tr...
b77e3e3e20e007c982091ae8279cf73b9326d072b99c9bb729058cd9ab1e8b68
def files_children_by_task_execution_by_task(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_by_task_execution_by_task(task_id=task_id_value, task_execution_id=...
nodeum_sdk/api/files_api.py
files_children_by_task_execution_by_task
nodeum-io/nodeum-sdk-python
0
python
def files_children_by_task_execution_by_task(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
def files_children_by_task_execution_by_task(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
9570225dd943688f400e57e90a2b35bf48ad1f5adcf4e6a55bc85b2c0da64601
def files_children_by_task_execution_by_task_with_http_info(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass asyn...
Lists files under a specific folder. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.files_children_by_task_execution_by_task_with_http_info(task_id=task_id_value, tas...
nodeum_sdk/api/files_api.py
files_children_by_task_execution_by_task_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def files_children_by_task_execution_by_task_with_http_info(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass asyn...
def files_children_by_task_execution_by_task_with_http_info(self, **kwargs): "Lists files under a specific folder. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass asyn...
7cbc95b2365be05ad90ea3d80cbad86c88941ef39fbf1e9685f63a48c664b7e4
def import_files_children_by_pool(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP...
Lists files under a specific folder on tape of pools, specific for Data Exchange. # noqa: E501 **API Key Scope**: import_files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.import_files_children_by_pool(...
nodeum_sdk/api/files_api.py
import_files_children_by_pool
nodeum-io/nodeum-sdk-python
0
python
def import_files_children_by_pool(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP...
def import_files_children_by_pool(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP...
4b978d66ce40457d2abda2041aa5bdc7b46473273692fc114e399c65fec3fc28
def import_files_children_by_pool_with_http_info(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n as...
Lists files under a specific folder on tape of pools, specific for Data Exchange. # noqa: E501 **API Key Scope**: import_files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.import_files_children_by_pool_...
nodeum_sdk/api/files_api.py
import_files_children_by_pool_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def import_files_children_by_pool_with_http_info(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n as...
def import_files_children_by_pool_with_http_info(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n as...
7e90b26a91a40a79868be81361fda9ce011e1304b0a03349aab2d0f91a577824
def index_files(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_files(async_req=T...
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files(async_req=True) >>> result = thread.get() :param async_req bool: execute request asyn...
nodeum_sdk/api/files_api.py
index_files
nodeum-io/nodeum-sdk-python
0
python
def index_files(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_files(async_req=T...
def index_files(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_files(async_req=T...
b0aaee65e49d943ee2aecf17588a01f1a6a816b8f515c638872b4c31e67ca3d6
def index_files_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_fi...
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execu...
nodeum_sdk/api/files_api.py
index_files_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_files_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_fi...
def index_files_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_fi...
aa7000c4bc910f0d158abc0a3a6bd20d72f0a7c199c3cb82cb28e72010578fed
def index_files_by_container(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_file...
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_by_container(container_id=container_id_value, async_req=True) >>> result = thread.get(...
nodeum_sdk/api/files_api.py
index_files_by_container
nodeum-io/nodeum-sdk-python
0
python
def index_files_by_container(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_file...
def index_files_by_container(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_file...
36247806de6859a59331585102fe8e4682afae14dbb83b5b87f2f30367d045e0
def index_files_by_container_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread =...
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_by_container_with_http_info(container_id=container_id_value, async_req=True) >>> resul...
nodeum_sdk/api/files_api.py
index_files_by_container_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_files_by_container_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread =...
def index_files_by_container_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread =...
122062d00c021892b5ce6dd12e3c8744d6abbcc2e8cc205e3461433d0c450904
def index_files_by_pool(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_files_by_...
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_by_pool(pool_id=pool_id_value, async_req=True) >>> result = thread.get() :param async...
nodeum_sdk/api/files_api.py
index_files_by_pool
nodeum-io/nodeum-sdk-python
0
python
def index_files_by_pool(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_files_by_...
def index_files_by_pool(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_files_by_...
8db190944456c06083e3fcd0ff08256880934f5a8ee1b584c36a3935d0e6e526
def index_files_by_pool_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api....
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_by_pool_with_http_info(pool_id=pool_id_value, async_req=True) >>> result = thread.get(...
nodeum_sdk/api/files_api.py
index_files_by_pool_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_files_by_pool_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api....
def index_files_by_pool_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api....
22e1a2e9941331c1e4d4ffc5baaf8ffdca21a3458679454575dddc31fb05a0c3
def index_files_by_task(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_files_by_...
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_by_task(task_id=task_id_value, async_req=True) >>> result = thread.get() :param async...
nodeum_sdk/api/files_api.py
index_files_by_task
nodeum-io/nodeum-sdk-python
0
python
def index_files_by_task(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_files_by_...
def index_files_by_task(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index_files_by_...
50b1bb169caa6a3eb283cde64a8ceadb0c446d7f427a9ecb9b95ba5c1fb7804b
def index_files_by_task_with_http_info(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api....
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_by_task_with_http_info(task_id=task_id_value, async_req=True) >>> result = thread.get(...
nodeum_sdk/api/files_api.py
index_files_by_task_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_files_by_task_with_http_info(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api....
def index_files_by_task_with_http_info(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api....
71b323dca7809028f8a04441daf484acac0b5991179953e65e1b9110270e24ae
def index_files_by_task_execution(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index...
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_by_task_execution(task_execution_id=task_execution_id_value, async_req=True) >>> resul...
nodeum_sdk/api/files_api.py
index_files_by_task_execution
nodeum-io/nodeum-sdk-python
0
python
def index_files_by_task_execution(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index...
def index_files_by_task_execution(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.index...
621cb446aeceb621aca927ab2372c7972a878eba170791950fad46b4cd14bb4e
def index_files_by_task_execution_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thr...
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_by_task_execution_with_http_info(task_execution_id=task_execution_id_value, async_req=...
nodeum_sdk/api/files_api.py
index_files_by_task_execution_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_files_by_task_execution_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thr...
def index_files_by_task_execution_with_http_info(self, **kwargs): 'Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thr...
20b2c552f54a858f32687741ec0178da1bd604cf60a5bb340bb92354550febf0
def index_files_by_task_execution_by_task(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = a...
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_by_task_execution_by_task(task_id=task_id_value, task_execution_id=task_execution_id_v...
nodeum_sdk/api/files_api.py
index_files_by_task_execution_by_task
nodeum-io/nodeum-sdk-python
0
python
def index_files_by_task_execution_by_task(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = a...
def index_files_by_task_execution_by_task(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = a...
0a24ffb16be925f865c2232ecd7fac53ea26ac42db6976917bae663493f08974
def index_files_by_task_execution_by_task_with_http_info(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
Lists files on root. # noqa: E501 **API Key Scope**: files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_files_by_task_execution_by_task_with_http_info(task_id=task_id_value, task_execution_id=task...
nodeum_sdk/api/files_api.py
index_files_by_task_execution_by_task_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_files_by_task_execution_by_task_with_http_info(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
def index_files_by_task_execution_by_task_with_http_info(self, **kwargs): "Lists files on root. # noqa: E501\n\n **API Key Scope**: files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
24de446b16fe99af334a5f2e4a2547e530ec019ab1642fd2e93f71f8d0751441
def index_import_files_by_pool(self, **kwargs): 'Lists files on root of tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pa...
Lists files on root of tape of pools, specific for Data Exchange. # noqa: E501 **API Key Scope**: import_files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_import_files_by_pool(pool_id=pool_id_val...
nodeum_sdk/api/files_api.py
index_import_files_by_pool
nodeum-io/nodeum-sdk-python
0
python
def index_import_files_by_pool(self, **kwargs): 'Lists files on root of tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pa...
def index_import_files_by_pool(self, **kwargs): 'Lists files on root of tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pa...
95c8a428c22a341060f5425d5a06e212e0a96582b42cc60d5279496a0964bcae
def index_import_files_by_pool_with_http_info(self, **kwargs): 'Lists files on root of tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP req...
Lists files on root of tape of pools, specific for Data Exchange. # noqa: E501 **API Key Scope**: import_files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_import_files_by_pool_with_http_info(pool...
nodeum_sdk/api/files_api.py
index_import_files_by_pool_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_import_files_by_pool_with_http_info(self, **kwargs): 'Lists files on root of tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP req...
def index_import_files_by_pool_with_http_info(self, **kwargs): 'Lists files on root of tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP req...
641edc2d4f95b3124265c7027e183bbd10a46add5ba0a3630be6a27b2b7153cc
def index_on_tapes_files_by_pool(self, **kwargs): 'Lists files on root of tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, ...
Lists files on root of tape of pools, specific for Active and Offline. # noqa: E501 **API Key Scope**: on_tapes_files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_on_tapes_files_by_pool(pool_id=po...
nodeum_sdk/api/files_api.py
index_on_tapes_files_by_pool
nodeum-io/nodeum-sdk-python
0
python
def index_on_tapes_files_by_pool(self, **kwargs): 'Lists files on root of tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, ...
def index_on_tapes_files_by_pool(self, **kwargs): 'Lists files on root of tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, ...
57cb380229b0f8b579d79ee460530c80aecb203d7ec6f1bc2a6fefa812af3f42
def index_on_tapes_files_by_pool_with_http_info(self, **kwargs): 'Lists files on root of tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous...
Lists files on root of tape of pools, specific for Active and Offline. # noqa: E501 **API Key Scope**: on_tapes_files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_on_tapes_files_by_pool_with_http_...
nodeum_sdk/api/files_api.py
index_on_tapes_files_by_pool_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_on_tapes_files_by_pool_with_http_info(self, **kwargs): 'Lists files on root of tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous...
def index_on_tapes_files_by_pool_with_http_info(self, **kwargs): 'Lists files on root of tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous...
5787784ae08ccfcb8a9c4586b21973d936da88b6d594132543da3cecba593c34
def index_tapes_by_file_by_pool(self, **kwargs): 'Displays tapes containing specific file, related to the specific pool. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pas...
Displays tapes containing specific file, related to the specific pool. # noqa: E501 **API Key Scope**: files / tapes # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_tapes_by_file_by_pool(pool_id=pool_id_valu...
nodeum_sdk/api/files_api.py
index_tapes_by_file_by_pool
nodeum-io/nodeum-sdk-python
0
python
def index_tapes_by_file_by_pool(self, **kwargs): 'Displays tapes containing specific file, related to the specific pool. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pas...
def index_tapes_by_file_by_pool(self, **kwargs): 'Displays tapes containing specific file, related to the specific pool. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pas...
79d237bf368b76ac358f67b918ffafbfda67125c9db15dca1f6b32842e213dbc
def index_tapes_by_file_by_pool_with_http_info(self, **kwargs): 'Displays tapes containing specific file, related to the specific pool. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP requ...
Displays tapes containing specific file, related to the specific pool. # noqa: E501 **API Key Scope**: files / tapes # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_tapes_by_file_by_pool_with_http_info(pool_...
nodeum_sdk/api/files_api.py
index_tapes_by_file_by_pool_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_tapes_by_file_by_pool_with_http_info(self, **kwargs): 'Displays tapes containing specific file, related to the specific pool. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP requ...
def index_tapes_by_file_by_pool_with_http_info(self, **kwargs): 'Displays tapes containing specific file, related to the specific pool. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP requ...
9c61d33ad650eb2731429f01598a7b799c66c3d779bbb3eba981db22ed3b3318
def index_tapes_by_file_by_task(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pas...
Displays tapes containing specific file, related to the specific task. # noqa: E501 **API Key Scope**: files / tapes # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_tapes_by_file_by_task(task_id=task_id_valu...
nodeum_sdk/api/files_api.py
index_tapes_by_file_by_task
nodeum-io/nodeum-sdk-python
0
python
def index_tapes_by_file_by_task(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pas...
def index_tapes_by_file_by_task(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pas...
c482e35ca21d843a39452dc700a1a6c42676e00661df86f7409ac55c05625066
def index_tapes_by_file_by_task_with_http_info(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP requ...
Displays tapes containing specific file, related to the specific task. # noqa: E501 **API Key Scope**: files / tapes # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_tapes_by_file_by_task_with_http_info(task_...
nodeum_sdk/api/files_api.py
index_tapes_by_file_by_task_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_tapes_by_file_by_task_with_http_info(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP requ...
def index_tapes_by_file_by_task_with_http_info(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP requ...
caddbc0da28cdeafa4f96066a8d57862429b3df3f704a83820c1a85e6447bae3
def index_tapes_by_file_by_task_execution(self, **kwargs): 'Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, ...
Displays tapes containing specific file, related to the specific task. # noqa: E501 **API Key Scope**: files / tapes # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_tapes_by_file_by_task_execution(task_execu...
nodeum_sdk/api/files_api.py
index_tapes_by_file_by_task_execution
nodeum-io/nodeum-sdk-python
0
python
def index_tapes_by_file_by_task_execution(self, **kwargs): 'Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, ...
def index_tapes_by_file_by_task_execution(self, **kwargs): 'Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, ...
7d27b9a105fa4bf90b57fab79e83100f88fd091039b29d6d1093e21d61a9ad71
def index_tapes_by_file_by_task_execution_with_http_info(self, **kwargs): 'Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous...
Displays tapes containing specific file, related to the specific task. # noqa: E501 **API Key Scope**: files / tapes # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_tapes_by_file_by_task_execution_with_http_...
nodeum_sdk/api/files_api.py
index_tapes_by_file_by_task_execution_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_tapes_by_file_by_task_execution_with_http_info(self, **kwargs): 'Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous...
def index_tapes_by_file_by_task_execution_with_http_info(self, **kwargs): 'Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous...
f983404fe5746f416f8beb7398e0efcff85d196cef9bb3cf97a8d2bcde0a533f
def index_tapes_by_file_by_task_execution_by_task(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP r...
Displays tapes containing specific file, related to the specific task. # noqa: E501 **API Key Scope**: files / tapes # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_tapes_by_file_by_task_execution_by_task(ta...
nodeum_sdk/api/files_api.py
index_tapes_by_file_by_task_execution_by_task
nodeum-io/nodeum-sdk-python
0
python
def index_tapes_by_file_by_task_execution_by_task(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP r...
def index_tapes_by_file_by_task_execution_by_task(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP r...
b36a2eb88dd2e94feb7a3baf84e481ff99bdca68d93eacc5ea1a30c468f61257
def index_tapes_by_file_by_task_execution_by_task_with_http_info(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asyn...
Displays tapes containing specific file, related to the specific task. # noqa: E501 **API Key Scope**: files / tapes # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.index_tapes_by_file_by_task_execution_by_task_wi...
nodeum_sdk/api/files_api.py
index_tapes_by_file_by_task_execution_by_task_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def index_tapes_by_file_by_task_execution_by_task_with_http_info(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asyn...
def index_tapes_by_file_by_task_execution_by_task_with_http_info(self, **kwargs): "Displays tapes containing specific file, related to the specific task. # noqa: E501\n\n **API Key Scope**: files / tapes # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asyn...
630575d37b4178343c2e94d60a5ff6e224c24920c1d96458cf23fa3208704134
def on_tapes_files_children_by_pool(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchro...
Lists files under a specific folder on tape of pools, specific for Active and Offline. # noqa: E501 **API Key Scope**: on_tapes_files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.on_tapes_files_children...
nodeum_sdk/api/files_api.py
on_tapes_files_children_by_pool
nodeum-io/nodeum-sdk-python
0
python
def on_tapes_files_children_by_pool(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchro...
def on_tapes_files_children_by_pool(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchro...
f4676fc026e08ff0685209d6f0ab55ca18af9499d051115980152420a8ec2d75
def on_tapes_files_children_by_pool_with_http_info(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n ...
Lists files under a specific folder on tape of pools, specific for Active and Offline. # noqa: E501 **API Key Scope**: on_tapes_files / index # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.on_tapes_files_children...
nodeum_sdk/api/files_api.py
on_tapes_files_children_by_pool_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def on_tapes_files_children_by_pool_with_http_info(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n ...
def on_tapes_files_children_by_pool_with_http_info(self, **kwargs): 'Lists files under a specific folder on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / index # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n ...
f0486151150e4d67845c59fe38ccc9cae01a4e58c3224d83abb1c9113f44856a
def show_file(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_file(file_id=fil...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file(file_id=file_id_value, async_req=True) >>> result = thread.get() :param async_req b...
nodeum_sdk/api/files_api.py
show_file
nodeum-io/nodeum-sdk-python
0
python
def show_file(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_file(file_id=fil...
def show_file(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_file(file_id=fil...
77a7c44ab63cfc6e61b8547f58d56b21195ae460c035c0f929c68be496bc18bc
def show_file_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_f...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_with_http_info(file_id=file_id_value, async_req=True) >>> result = thread.get() :pa...
nodeum_sdk/api/files_api.py
show_file_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def show_file_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_f...
def show_file_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_f...
99be00cffa926c3db5098813f92b0e6273ec676ec93f904a44b74ae4407baafd
def show_file_by_container(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_fil...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_by_container(container_id=container_id_value, file_id=file_id_value, async_req=True)...
nodeum_sdk/api/files_api.py
show_file_by_container
nodeum-io/nodeum-sdk-python
0
python
def show_file_by_container(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_fil...
def show_file_by_container(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_fil...
269bf5a8498b8fe91162c8bfa9f06fef5a05e4d0c6f77d3078903f04b0a4ec81
def show_file_by_container_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_by_container_with_http_info(container_id=container_id_value, file_id=file_id_value, ...
nodeum_sdk/api/files_api.py
show_file_by_container_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def show_file_by_container_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread...
def show_file_by_container_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread...
83d6930d7487ee3e03aaf21fdc44dee039c93b7e51eafcc1086c4481c3435d9c
def show_file_by_pool(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_file_by_...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_by_pool(pool_id=pool_id_value, file_id=file_id_value, async_req=True) >>> result = t...
nodeum_sdk/api/files_api.py
show_file_by_pool
nodeum-io/nodeum-sdk-python
0
python
def show_file_by_pool(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_file_by_...
def show_file_by_pool(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_file_by_...
6df640f56de4e4cf84ce6f727d7b2e86dcb5eae896f5fd5eca407cebdc5f9d9f
def show_file_by_pool_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ap...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_by_pool_with_http_info(pool_id=pool_id_value, file_id=file_id_value, async_req=True)...
nodeum_sdk/api/files_api.py
show_file_by_pool_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def show_file_by_pool_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ap...
def show_file_by_pool_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ap...
bbb608f01a522063e5f4556a3f3b99272e175e6e2904e9ccdf39d58ef9d499d3
def show_file_by_task(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_file_by_...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_by_task(task_id=task_id_value, file_id=file_id_value, async_req=True) >>> result = t...
nodeum_sdk/api/files_api.py
show_file_by_task
nodeum-io/nodeum-sdk-python
0
python
def show_file_by_task(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_file_by_...
def show_file_by_task(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.show_file_by_...
7acfdc9cb71e2489043c2d6836bc200a961e7798b4303574ce3fbe567aed14c5
def show_file_by_task_with_http_info(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ap...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_by_task_with_http_info(task_id=task_id_value, file_id=file_id_value, async_req=True)...
nodeum_sdk/api/files_api.py
show_file_by_task_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def show_file_by_task_with_http_info(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ap...
def show_file_by_task_with_http_info(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = ap...
b8a5cdcdb54d13b353cab0d7173e6943df91b3e817688b00190ac67072939b19
def show_file_by_task_execution(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.sho...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_by_task_execution(task_execution_id=task_execution_id_value, file_id=file_id_value, ...
nodeum_sdk/api/files_api.py
show_file_by_task_execution
nodeum-io/nodeum-sdk-python
0
python
def show_file_by_task_execution(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.sho...
def show_file_by_task_execution(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread = api.sho...
62bbb3351592c24b2291761a4a58dcc9f36ceb14a177ff2f3f60481275752700
def show_file_by_task_execution_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> t...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_by_task_execution_with_http_info(task_execution_id=task_execution_id_value, file_id=...
nodeum_sdk/api/files_api.py
show_file_by_task_execution_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def show_file_by_task_execution_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> t...
def show_file_by_task_execution_with_http_info(self, **kwargs): 'Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> t...
8f675cbebcd7035b18a7168bf29caa761f5923da5e939c8c94efe384bdd38bf4
def show_file_by_task_execution_by_task(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread =...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_by_task_execution_by_task(task_id=task_id_value, task_execution_id=task_execution_id...
nodeum_sdk/api/files_api.py
show_file_by_task_execution_by_task
nodeum-io/nodeum-sdk-python
0
python
def show_file_by_task_execution_by_task(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread =...
def show_file_by_task_execution_by_task(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n >>> thread =...
23031fac520c4eb0c685d083142783405ff017123cf9e54f4caa3c384f5bab77
def show_file_by_task_execution_by_task_with_http_info(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
Displays a specific file. # noqa: E501 **API Key Scope**: files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_file_by_task_execution_by_task_with_http_info(task_id=task_id_value, task_execution_id=ta...
nodeum_sdk/api/files_api.py
show_file_by_task_execution_by_task_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def show_file_by_task_execution_by_task_with_http_info(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
def show_file_by_task_execution_by_task_with_http_info(self, **kwargs): "Displays a specific file. # noqa: E501\n\n **API Key Scope**: files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async_req=True\n ...
07499e57ad6d79aa401ca7adc44dd3ac117b3499256be47a2f84f4e2124bac0a
def show_import_file_by_pool(self, **kwargs): 'Displays a specific file on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please ...
Displays a specific file on tape of pools, specific for Data Exchange. # noqa: E501 **API Key Scope**: import_files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_import_file_by_pool(pool_id=pool_id_v...
nodeum_sdk/api/files_api.py
show_import_file_by_pool
nodeum-io/nodeum-sdk-python
0
python
def show_import_file_by_pool(self, **kwargs): 'Displays a specific file on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please ...
def show_import_file_by_pool(self, **kwargs): 'Displays a specific file on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please ...
bfd6bd8b8dc9aeae4e5f37e34bd130113739ac10e6c82bfc589ecadb46bb5c43
def show_import_file_by_pool_with_http_info(self, **kwargs): 'Displays a specific file on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP r...
Displays a specific file on tape of pools, specific for Data Exchange. # noqa: E501 **API Key Scope**: import_files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_import_file_by_pool_with_http_info(po...
nodeum_sdk/api/files_api.py
show_import_file_by_pool_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def show_import_file_by_pool_with_http_info(self, **kwargs): 'Displays a specific file on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP r...
def show_import_file_by_pool_with_http_info(self, **kwargs): 'Displays a specific file on tape of pools, specific for Data Exchange. # noqa: E501\n\n **API Key Scope**: import_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP r...
6243f213a94058bb59e62e863e780a74521318066fe0c50d739cc24f18b7fe16
def show_on_tape_file_by_pool(self, **kwargs): 'Displays a specific file on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request,...
Displays a specific file on tape of pools, specific for Active and Offline. # noqa: E501 **API Key Scope**: on_tapes_files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_on_tape_file_by_pool(pool_id=p...
nodeum_sdk/api/files_api.py
show_on_tape_file_by_pool
nodeum-io/nodeum-sdk-python
0
python
def show_on_tape_file_by_pool(self, **kwargs): 'Displays a specific file on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request,...
def show_on_tape_file_by_pool(self, **kwargs): 'Displays a specific file on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request,...
8c8bab3e98840ad86d68a95179f073f9f5ee3d50aeaa03b4d018a84ab4bc6bef
def show_on_tape_file_by_pool_with_http_info(self, **kwargs): 'Displays a specific file on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronou...
Displays a specific file on tape of pools, specific for Active and Offline. # noqa: E501 **API Key Scope**: on_tapes_files / show # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.show_on_tape_file_by_pool_with_http...
nodeum_sdk/api/files_api.py
show_on_tape_file_by_pool_with_http_info
nodeum-io/nodeum-sdk-python
0
python
def show_on_tape_file_by_pool_with_http_info(self, **kwargs): 'Displays a specific file on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronou...
def show_on_tape_file_by_pool_with_http_info(self, **kwargs): 'Displays a specific file on tape of pools, specific for Active and Offline. # noqa: E501\n\n **API Key Scope**: on_tapes_files / show # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronou...
9335ad1847f74631d9fa44eb4a5f3fd9c06880f1b2987f676ea30ec575b43e3c
@gin.configurable('vgg', denylist=['example', 'prediction']) def vgg_loss(example: Mapping[(str, tf.Tensor)], prediction: Mapping[(str, tf.Tensor)], vgg_model_file: str, weights: Optional[List[float]]=None) -> tf.Tensor: "Perceptual loss for images in [0,1] color range.\n\n Args:\n example: A dictionary with th...
Perceptual loss for images in [0,1] color range. Args: example: A dictionary with the ground truth image as 'y'. prediction: The prediction dictionary with the image as 'image'. vgg_model_file: The path containing the vgg19 weights in MATLAB format. weights: An optional array of weights for different VGG layer...
losses/losses.py
vgg_loss
vsewall/frame-interpolation
521
python
@gin.configurable('vgg', denylist=['example', 'prediction']) def vgg_loss(example: Mapping[(str, tf.Tensor)], prediction: Mapping[(str, tf.Tensor)], vgg_model_file: str, weights: Optional[List[float]]=None) -> tf.Tensor: "Perceptual loss for images in [0,1] color range.\n\n Args:\n example: A dictionary with th...
@gin.configurable('vgg', denylist=['example', 'prediction']) def vgg_loss(example: Mapping[(str, tf.Tensor)], prediction: Mapping[(str, tf.Tensor)], vgg_model_file: str, weights: Optional[List[float]]=None) -> tf.Tensor: "Perceptual loss for images in [0,1] color range.\n\n Args:\n example: A dictionary with th...
e3e194acfb7a83fec0800a1dcb4a609fec251d6503272935b54d003522fe2f9c
@gin.configurable('style', denylist=['example', 'prediction']) def style_loss(example: Mapping[(str, tf.Tensor)], prediction: Mapping[(str, tf.Tensor)], vgg_model_file: str, weights: Optional[List[float]]=None) -> tf.Tensor: "Computes style loss from images in [0..1] color range.\n\n Args:\n example: A dictiona...
Computes style loss from images in [0..1] color range. Args: example: A dictionary with the ground truth image as 'y'. prediction: The prediction dictionary with the image as 'image'. vgg_model_file: The path containing the vgg19 weights in MATLAB format. weights: An optional array of weights for different VGG...
losses/losses.py
style_loss
vsewall/frame-interpolation
521
python
@gin.configurable('style', denylist=['example', 'prediction']) def style_loss(example: Mapping[(str, tf.Tensor)], prediction: Mapping[(str, tf.Tensor)], vgg_model_file: str, weights: Optional[List[float]]=None) -> tf.Tensor: "Computes style loss from images in [0..1] color range.\n\n Args:\n example: A dictiona...
@gin.configurable('style', denylist=['example', 'prediction']) def style_loss(example: Mapping[(str, tf.Tensor)], prediction: Mapping[(str, tf.Tensor)], vgg_model_file: str, weights: Optional[List[float]]=None) -> tf.Tensor: "Computes style loss from images in [0..1] color range.\n\n Args:\n example: A dictiona...
0f05a3777e73ebf27d87f26477096fde1b7da9e686f8cd2328725ac36249ee85
def l1_warped_loss(example: Mapping[(str, tf.Tensor)], prediction: Mapping[(str, tf.Tensor)]) -> tf.Tensor: "Computes an l1 loss using only warped images.\n\n Args:\n example: A dictionary with the ground truth image as 'y'.\n prediction: The prediction dictionary with the image(s) as 'x0_warped'\n and/...
Computes an l1 loss using only warped images. Args: example: A dictionary with the ground truth image as 'y'. prediction: The prediction dictionary with the image(s) as 'x0_warped' and/or 'x1_warped'. Returns: A tf.Tensor of a scalar representing the linear combination of l1 losses between prediction im...
losses/losses.py
l1_warped_loss
vsewall/frame-interpolation
521
python
def l1_warped_loss(example: Mapping[(str, tf.Tensor)], prediction: Mapping[(str, tf.Tensor)]) -> tf.Tensor: "Computes an l1 loss using only warped images.\n\n Args:\n example: A dictionary with the ground truth image as 'y'.\n prediction: The prediction dictionary with the image(s) as 'x0_warped'\n and/...
def l1_warped_loss(example: Mapping[(str, tf.Tensor)], prediction: Mapping[(str, tf.Tensor)]) -> tf.Tensor: "Computes an l1 loss using only warped images.\n\n Args:\n example: A dictionary with the ground truth image as 'y'.\n prediction: The prediction dictionary with the image(s) as 'x0_warped'\n and/...
b447d05ae54cc59d44cff5d6394f5b26c1568572a24eb5e9de25298e3338a999
def get_loss(loss_name: str) -> Callable[([Any, Any], tf.Tensor)]: 'Returns the loss function corresponding to the given name.' if (loss_name == 'l1'): return l1_loss elif (loss_name == 'l2'): return l2_loss elif (loss_name == 'ssim'): return ssim_loss elif (loss_name == 'vgg...
Returns the loss function corresponding to the given name.
losses/losses.py
get_loss
vsewall/frame-interpolation
521
python
def get_loss(loss_name: str) -> Callable[([Any, Any], tf.Tensor)]: if (loss_name == 'l1'): return l1_loss elif (loss_name == 'l2'): return l2_loss elif (loss_name == 'ssim'): return ssim_loss elif (loss_name == 'vgg'): return vgg_loss elif (loss_name == 'style'):...
def get_loss(loss_name: str) -> Callable[([Any, Any], tf.Tensor)]: if (loss_name == 'l1'): return l1_loss elif (loss_name == 'l2'): return l2_loss elif (loss_name == 'ssim'): return ssim_loss elif (loss_name == 'vgg'): return vgg_loss elif (loss_name == 'style'):...
3d98f353ef4d5d77ec7c99406951f934f3c5b186665f90a47476678a3fcb09a6
def get_loss_op(loss_name): 'Returns a function for creating a loss calculation op.' loss = get_loss(loss_name) return (lambda example, prediction: loss(example, prediction))
Returns a function for creating a loss calculation op.
losses/losses.py
get_loss_op
vsewall/frame-interpolation
521
python
def get_loss_op(loss_name): loss = get_loss(loss_name) return (lambda example, prediction: loss(example, prediction))
def get_loss_op(loss_name): loss = get_loss(loss_name) return (lambda example, prediction: loss(example, prediction))<|docstring|>Returns a function for creating a loss calculation op.<|endoftext|>
f199861da4cbe3aee10252fe0ab7edd92b92b20d88ee622eb7e419a43d5ab993
def get_weight_op(weight_schedule): 'Returns a function for creating an iteration dependent loss weight op.' return (lambda iterations: weight_schedule(iterations))
Returns a function for creating an iteration dependent loss weight op.
losses/losses.py
get_weight_op
vsewall/frame-interpolation
521
python
def get_weight_op(weight_schedule): return (lambda iterations: weight_schedule(iterations))
def get_weight_op(weight_schedule): return (lambda iterations: weight_schedule(iterations))<|docstring|>Returns a function for creating an iteration dependent loss weight op.<|endoftext|>
9c405180f4e95b063c0b3872358f8dd06ad4821c66137bece28bd6ce5ac68d64
def create_losses(loss_names: List[str], loss_weight_schedules: List[tf.keras.optimizers.schedules.LearningRateSchedule]) -> Dict[(str, Tuple[(Callable[([Any, Any], tf.Tensor)], Callable[([Any], tf.Tensor)])])]: "Returns a dictionary of functions for creating loss and loss_weight ops.\n\n As an example, create_los...
Returns a dictionary of functions for creating loss and loss_weight ops. As an example, create_losses(['l1', 'l2'], [PiecewiseConstantDecay(), PiecewiseConstantDecay()]) returns a dictionary with two keys, and each value being a tuple of ops for loss calculation and loss_weight sampling. Args: loss_names: Names o...
losses/losses.py
create_losses
vsewall/frame-interpolation
521
python
def create_losses(loss_names: List[str], loss_weight_schedules: List[tf.keras.optimizers.schedules.LearningRateSchedule]) -> Dict[(str, Tuple[(Callable[([Any, Any], tf.Tensor)], Callable[([Any], tf.Tensor)])])]: "Returns a dictionary of functions for creating loss and loss_weight ops.\n\n As an example, create_los...
def create_losses(loss_names: List[str], loss_weight_schedules: List[tf.keras.optimizers.schedules.LearningRateSchedule]) -> Dict[(str, Tuple[(Callable[([Any, Any], tf.Tensor)], Callable[([Any], tf.Tensor)])])]: "Returns a dictionary of functions for creating loss and loss_weight ops.\n\n As an example, create_los...
13510420acc12e9021e029fa46d39cc99e438ea682a68e9e301fc9212ab5879f
@gin.configurable def training_losses(loss_names: List[str], loss_weights: Optional[List[float]]=None, loss_weight_schedules: Optional[List[tf.keras.optimizers.schedules.LearningRateSchedule]]=None, loss_weight_parameters: Optional[List[Mapping[(str, List[Any])]]]=None) -> Mapping[(str, Tuple[(Callable[([Any, Any], tf....
Creates the training loss functions and loss weight schedules.
losses/losses.py
training_losses
vsewall/frame-interpolation
521
python
@gin.configurable def training_losses(loss_names: List[str], loss_weights: Optional[List[float]]=None, loss_weight_schedules: Optional[List[tf.keras.optimizers.schedules.LearningRateSchedule]]=None, loss_weight_parameters: Optional[List[Mapping[(str, List[Any])]]]=None) -> Mapping[(str, Tuple[(Callable[([Any, Any], tf....
@gin.configurable def training_losses(loss_names: List[str], loss_weights: Optional[List[float]]=None, loss_weight_schedules: Optional[List[tf.keras.optimizers.schedules.LearningRateSchedule]]=None, loss_weight_parameters: Optional[List[Mapping[(str, List[Any])]]]=None) -> Mapping[(str, Tuple[(Callable[([Any, Any], tf....
c0b33ed27e00035a01f5de7093c15d9eeaeed35a1f930aa6d891a5bf5e0a3652
@gin.configurable def test_losses(loss_names: List[str], loss_weights: Optional[List[float]]=None, loss_weight_schedules: Optional[List[tf.keras.optimizers.schedules.LearningRateSchedule]]=None, loss_weight_parameters: Optional[List[Mapping[(str, List[Any])]]]=None) -> Mapping[(str, Tuple[(Callable[([Any, Any], tf.Tens...
Creates the test loss functions and loss weight schedules.
losses/losses.py
test_losses
vsewall/frame-interpolation
521
python
@gin.configurable def test_losses(loss_names: List[str], loss_weights: Optional[List[float]]=None, loss_weight_schedules: Optional[List[tf.keras.optimizers.schedules.LearningRateSchedule]]=None, loss_weight_parameters: Optional[List[Mapping[(str, List[Any])]]]=None) -> Mapping[(str, Tuple[(Callable[([Any, Any], tf.Tens...
@gin.configurable def test_losses(loss_names: List[str], loss_weights: Optional[List[float]]=None, loss_weight_schedules: Optional[List[tf.keras.optimizers.schedules.LearningRateSchedule]]=None, loss_weight_parameters: Optional[List[Mapping[(str, List[Any])]]]=None) -> Mapping[(str, Tuple[(Callable[([Any, Any], tf.Tens...
c8d6616f2d7ee79bc1f252b475e856a04ae522637ec29b302e7cdbd4a576e8b0
def aggregate_batch_losses(batch_losses: List[Mapping[(str, float)]]) -> Mapping[(str, float)]: "Averages per batch losses into single dictionary for the whole epoch.\n\n As an example, if the batch_losses contained per batch losses:\n batch_losses = { {'l1': 0.2, 'ssim': 0.9}, {'l1': 0.3, 'ssim': 0.8}}\n The re...
Averages per batch losses into single dictionary for the whole epoch. As an example, if the batch_losses contained per batch losses: batch_losses = { {'l1': 0.2, 'ssim': 0.9}, {'l1': 0.3, 'ssim': 0.8}} The returned dictionary would look like: { 'l1': 0.25, 'ssim': 0.95 } Args: batch_losses: A list of dictionary obj...
losses/losses.py
aggregate_batch_losses
vsewall/frame-interpolation
521
python
def aggregate_batch_losses(batch_losses: List[Mapping[(str, float)]]) -> Mapping[(str, float)]: "Averages per batch losses into single dictionary for the whole epoch.\n\n As an example, if the batch_losses contained per batch losses:\n batch_losses = { {'l1': 0.2, 'ssim': 0.9}, {'l1': 0.3, 'ssim': 0.8}}\n The re...
def aggregate_batch_losses(batch_losses: List[Mapping[(str, float)]]) -> Mapping[(str, float)]: "Averages per batch losses into single dictionary for the whole epoch.\n\n As an example, if the batch_losses contained per batch losses:\n batch_losses = { {'l1': 0.2, 'ssim': 0.9}, {'l1': 0.3, 'ssim': 0.8}}\n The re...
6bb2bb6f7d10c0e45fd5629c3b15cc344c8dc062601508ef601ac5ea7e52fe7c
@staticmethod def is_valid_ttl(ttl): 'Check if provided ttl value is in supported format i.e 1h, 12h, 2d' return bool(re.match('\\d*d$|\\d*h$', ttl))
Check if provided ttl value is in supported format i.e 1h, 12h, 2d
modules/dbnd/src/targets/caching.py
is_valid_ttl
hugovk/dbnd
224
python
@staticmethod def is_valid_ttl(ttl): return bool(re.match('\\d*d$|\\d*h$', ttl))
@staticmethod def is_valid_ttl(ttl): return bool(re.match('\\d*d$|\\d*h$', ttl))<|docstring|>Check if provided ttl value is in supported format i.e 1h, 12h, 2d<|endoftext|>
9136b0f4cae5721a51639146f9c8ae473dedf5324fe1cb6393c3c8bd7324472d
@classmethod def read(cls, file_target): 'Read file cache and create new instance of DbndFileCache' cache_file_path = cls._resolve_cache_file_name(file_target.path) with open(cache_file_path, 'r+') as f: kwargs = json.loads(f.read()) return cls(**kwargs)
Read file cache and create new instance of DbndFileCache
modules/dbnd/src/targets/caching.py
read
hugovk/dbnd
224
python
@classmethod def read(cls, file_target): cache_file_path = cls._resolve_cache_file_name(file_target.path) with open(cache_file_path, 'r+') as f: kwargs = json.loads(f.read()) return cls(**kwargs)
@classmethod def read(cls, file_target): cache_file_path = cls._resolve_cache_file_name(file_target.path) with open(cache_file_path, 'r+') as f: kwargs = json.loads(f.read()) return cls(**kwargs)<|docstring|>Read file cache and create new instance of DbndFileCache<|endoftext|>
46a723794ae598a222f28fd38e16dd5d97f0d4460acd7446b518a568c3f7126d
def save(self): 'Save DbndFileCache instance to json-like cache file' data = {'file_path': self._file_path, 'local_md5': self._local_md5, 'remote_md5': self._remote_md5, 'created_at': self._created_at.strftime(DbndLocalFileMetadataRegistry._date_format), 'ttl': self._ttl} with open(self._cache_file_path, 'w...
Save DbndFileCache instance to json-like cache file
modules/dbnd/src/targets/caching.py
save
hugovk/dbnd
224
python
def save(self): data = {'file_path': self._file_path, 'local_md5': self._local_md5, 'remote_md5': self._remote_md5, 'created_at': self._created_at.strftime(DbndLocalFileMetadataRegistry._date_format), 'ttl': self._ttl} with open(self._cache_file_path, 'w+') as f: f.write(json.dumps(data))
def save(self): data = {'file_path': self._file_path, 'local_md5': self._local_md5, 'remote_md5': self._remote_md5, 'created_at': self._created_at.strftime(DbndLocalFileMetadataRegistry._date_format), 'ttl': self._ttl} with open(self._cache_file_path, 'w+') as f: f.write(json.dumps(data))<|docstrin...
87ee0c710c30110baaf0dc0571ddf3d5cda6f448c4d51f71ba83a14e008fabb3
@staticmethod def exists(file_target): 'Read existing cache file, if it not exists then return None' cache_file_path = DbndLocalFileMetadataRegistry._resolve_cache_file_name(file_target.path) return os.path.exists(cache_file_path)
Read existing cache file, if it not exists then return None
modules/dbnd/src/targets/caching.py
exists
hugovk/dbnd
224
python
@staticmethod def exists(file_target): cache_file_path = DbndLocalFileMetadataRegistry._resolve_cache_file_name(file_target.path) return os.path.exists(cache_file_path)
@staticmethod def exists(file_target): cache_file_path = DbndLocalFileMetadataRegistry._resolve_cache_file_name(file_target.path) return os.path.exists(cache_file_path)<|docstring|>Read existing cache file, if it not exists then return None<|endoftext|>
812b66060d42654a603a03af8a37dc16c9caab8de6dca9affab044fea83f5060
def delete(self): 'Remove cache file' if os.path.isfile(self._cache_file_path): os.remove(self._cache_file_path)
Remove cache file
modules/dbnd/src/targets/caching.py
delete
hugovk/dbnd
224
python
def delete(self): if os.path.isfile(self._cache_file_path): os.remove(self._cache_file_path)
def delete(self): if os.path.isfile(self._cache_file_path): os.remove(self._cache_file_path)<|docstring|>Remove cache file<|endoftext|>
daf532a040002c2ad27879ae79d7def69d35357334febdb8a423ad098bf9d7d6
@property def expired(self): 'Check if cache file is still valid' time_map = {'d': timedelta(days=1), 'h': timedelta(hours=1)} interval_type = self._ttl[(- 1)] interval_value = int(self._ttl[:(- 1)]) expired_at = (self._created_at + (interval_value * time_map[interval_type])) return (expired_at ...
Check if cache file is still valid
modules/dbnd/src/targets/caching.py
expired
hugovk/dbnd
224
python
@property def expired(self): time_map = {'d': timedelta(days=1), 'h': timedelta(hours=1)} interval_type = self._ttl[(- 1)] interval_value = int(self._ttl[:(- 1)]) expired_at = (self._created_at + (interval_value * time_map[interval_type])) return (expired_at < datetime.now())
@property def expired(self): time_map = {'d': timedelta(days=1), 'h': timedelta(hours=1)} interval_type = self._ttl[(- 1)] interval_value = int(self._ttl[:(- 1)]) expired_at = (self._created_at + (interval_value * time_map[interval_type])) return (expired_at < datetime.now())<|docstring|>Check ...
5b32b3e4792dc57794560dc1845abdc4899061f89d8c188771055ac1319c587f
def list(self, resource_group_name: str, cluster_name: str, **kwargs: Any) -> AsyncIterable['_models.PrivateEndpointConnectionListResult']: 'Returns the list of private endpoint connections.\n\n :param resource_group_name: The name of the resource group containing the Kusto cluster.\n :type resource_g...
Returns the list of private endpoint connections. :param resource_group_name: The name of the resource group containing the Kusto cluster. :type resource_group_name: str :param cluster_name: The name of the Kusto cluster. :type cluster_name: str :keyword callable cls: A custom type or function that will be passed the ...
sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/aio/operations/_private_endpoint_connections_operations.py
list
jayachithra/azure-sdk-for-python
2,728
python
def list(self, resource_group_name: str, cluster_name: str, **kwargs: Any) -> AsyncIterable['_models.PrivateEndpointConnectionListResult']: 'Returns the list of private endpoint connections.\n\n :param resource_group_name: The name of the resource group containing the Kusto cluster.\n :type resource_g...
def list(self, resource_group_name: str, cluster_name: str, **kwargs: Any) -> AsyncIterable['_models.PrivateEndpointConnectionListResult']: 'Returns the list of private endpoint connections.\n\n :param resource_group_name: The name of the resource group containing the Kusto cluster.\n :type resource_g...
abb36149d6a616413e919958fefbf6445187d476a5b3f651f621162df28c5c7c
async def get(self, resource_group_name: str, cluster_name: str, private_endpoint_connection_name: str, **kwargs: Any) -> '_models.PrivateEndpointConnection': 'Gets a private endpoint connection.\n\n :param resource_group_name: The name of the resource group containing the Kusto cluster.\n :type resou...
Gets a private endpoint connection. :param resource_group_name: The name of the resource group containing the Kusto cluster. :type resource_group_name: str :param cluster_name: The name of the Kusto cluster. :type cluster_name: str :param private_endpoint_connection_name: The name of the private endpoint connection. :...
sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/aio/operations/_private_endpoint_connections_operations.py
get
jayachithra/azure-sdk-for-python
2,728
python
async def get(self, resource_group_name: str, cluster_name: str, private_endpoint_connection_name: str, **kwargs: Any) -> '_models.PrivateEndpointConnection': 'Gets a private endpoint connection.\n\n :param resource_group_name: The name of the resource group containing the Kusto cluster.\n :type resou...
async def get(self, resource_group_name: str, cluster_name: str, private_endpoint_connection_name: str, **kwargs: Any) -> '_models.PrivateEndpointConnection': 'Gets a private endpoint connection.\n\n :param resource_group_name: The name of the resource group containing the Kusto cluster.\n :type resou...
4f7699d666c7845ca0fc5d0eb48cda6aa4c36310df0d8eff8f8e59fbb6ebb31b
async def begin_create_or_update(self, resource_group_name: str, cluster_name: str, private_endpoint_connection_name: str, parameters: '_models.PrivateEndpointConnection', **kwargs: Any) -> AsyncLROPoller['_models.PrivateEndpointConnection']: 'Approve or reject a private endpoint connection with a given name.\n\n ...
Approve or reject a private endpoint connection with a given name. :param resource_group_name: The name of the resource group containing the Kusto cluster. :type resource_group_name: str :param cluster_name: The name of the Kusto cluster. :type cluster_name: str :param private_endpoint_connection_name: The name of the...
sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/aio/operations/_private_endpoint_connections_operations.py
begin_create_or_update
jayachithra/azure-sdk-for-python
2,728
python
async def begin_create_or_update(self, resource_group_name: str, cluster_name: str, private_endpoint_connection_name: str, parameters: '_models.PrivateEndpointConnection', **kwargs: Any) -> AsyncLROPoller['_models.PrivateEndpointConnection']: 'Approve or reject a private endpoint connection with a given name.\n\n ...
async def begin_create_or_update(self, resource_group_name: str, cluster_name: str, private_endpoint_connection_name: str, parameters: '_models.PrivateEndpointConnection', **kwargs: Any) -> AsyncLROPoller['_models.PrivateEndpointConnection']: 'Approve or reject a private endpoint connection with a given name.\n\n ...
b1071932eb657c298ccbef09c2374055512ab335b8766a63b169bbeccdce6456
async def begin_delete(self, resource_group_name: str, cluster_name: str, private_endpoint_connection_name: str, **kwargs: Any) -> AsyncLROPoller[None]: 'Deletes a private endpoint connection with a given name.\n\n :param resource_group_name: The name of the resource group containing the Kusto cluster.\n ...
Deletes a private endpoint connection with a given name. :param resource_group_name: The name of the resource group containing the Kusto cluster. :type resource_group_name: str :param cluster_name: The name of the Kusto cluster. :type cluster_name: str :param private_endpoint_connection_name: The name of the private e...
sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/aio/operations/_private_endpoint_connections_operations.py
begin_delete
jayachithra/azure-sdk-for-python
2,728
python
async def begin_delete(self, resource_group_name: str, cluster_name: str, private_endpoint_connection_name: str, **kwargs: Any) -> AsyncLROPoller[None]: 'Deletes a private endpoint connection with a given name.\n\n :param resource_group_name: The name of the resource group containing the Kusto cluster.\n ...
async def begin_delete(self, resource_group_name: str, cluster_name: str, private_endpoint_connection_name: str, **kwargs: Any) -> AsyncLROPoller[None]: 'Deletes a private endpoint connection with a given name.\n\n :param resource_group_name: The name of the resource group containing the Kusto cluster.\n ...
963cfafc4acc3cf244cf1d01d7d6a3097c5c151cceb0e068af3fec36b26fe534
def __init__(self, url, message=None): '\n @param url: The url for the request.\n @type url: str\n @param message: The (optional) message to be send in the request.\n @type message: str\n ' self.url = url self.headers = {} self.message = message
@param url: The url for the request. @type url: str @param message: The (optional) message to be send in the request. @type message: str
suds/transport/__init__.py
__init__
ChristianTreo/interactive-tutorials
2,750
python
def __init__(self, url, message=None): '\n @param url: The url for the request.\n @type url: str\n @param message: The (optional) message to be send in the request.\n @type message: str\n ' self.url = url self.headers = {} self.message = message
def __init__(self, url, message=None): '\n @param url: The url for the request.\n @type url: str\n @param message: The (optional) message to be send in the request.\n @type message: str\n ' self.url = url self.headers = {} self.message = message<|docstring|>@param url:...
0152c9dd23219365cc78b9294008ca490a9463b994cb7bf8df6319962622e42a
def __init__(self, code, headers, message): '\n @param code: The http code returned.\n @type code: int\n @param headers: The http returned headers.\n @type headers: dict\n @param message: The (optional) reply message received.\n @type message: str\n ' self.code =...
@param code: The http code returned. @type code: int @param headers: The http returned headers. @type headers: dict @param message: The (optional) reply message received. @type message: str
suds/transport/__init__.py
__init__
ChristianTreo/interactive-tutorials
2,750
python
def __init__(self, code, headers, message): '\n @param code: The http code returned.\n @type code: int\n @param headers: The http returned headers.\n @type headers: dict\n @param message: The (optional) reply message received.\n @type message: str\n ' self.code =...
def __init__(self, code, headers, message): '\n @param code: The http code returned.\n @type code: int\n @param headers: The http returned headers.\n @type headers: dict\n @param message: The (optional) reply message received.\n @type message: str\n ' self.code =...
21c43a8756587e8ca71e8410e7bae9342e5bf4331cc583481f19e471b4830957
def __init__(self): '\n Constructor.\n ' from suds.transport.options import Options self.options = Options() del Options
Constructor.
suds/transport/__init__.py
__init__
ChristianTreo/interactive-tutorials
2,750
python
def __init__(self): '\n \n ' from suds.transport.options import Options self.options = Options() del Options
def __init__(self): '\n \n ' from suds.transport.options import Options self.options = Options() del Options<|docstring|>Constructor.<|endoftext|>
9e73d9d5844257273498f11c73b92eea4c3c2ffd44672d3db6249ec3b858b7ab
def open(self, request): '\n Open the url in the specified request.\n @param request: A transport request.\n @type request: L{Request}\n @return: An input stream.\n @rtype: stream\n @raise TransportError: On all transport errors.\n ' raise Exception('not-implemen...
Open the url in the specified request. @param request: A transport request. @type request: L{Request} @return: An input stream. @rtype: stream @raise TransportError: On all transport errors.
suds/transport/__init__.py
open
ChristianTreo/interactive-tutorials
2,750
python
def open(self, request): '\n Open the url in the specified request.\n @param request: A transport request.\n @type request: L{Request}\n @return: An input stream.\n @rtype: stream\n @raise TransportError: On all transport errors.\n ' raise Exception('not-implemen...
def open(self, request): '\n Open the url in the specified request.\n @param request: A transport request.\n @type request: L{Request}\n @return: An input stream.\n @rtype: stream\n @raise TransportError: On all transport errors.\n ' raise Exception('not-implemen...
4d8518c527db37e53b9b10b424f9560fd2e9b1a86a37bbec657b048f89288e5e
def send(self, request): '\n Send soap message. Implementations are expected to handle:\n - proxies\n - I{http} headers\n - cookies\n - sending message\n - brokering exceptions into L{TransportError}\n @param request: A transport request.\n ...
Send soap message. Implementations are expected to handle: - proxies - I{http} headers - cookies - sending message - brokering exceptions into L{TransportError} @param request: A transport request. @type request: L{Request} @return: The reply @rtype: L{Reply} @raise TransportError: On all transport...
suds/transport/__init__.py
send
ChristianTreo/interactive-tutorials
2,750
python
def send(self, request): '\n Send soap message. Implementations are expected to handle:\n - proxies\n - I{http} headers\n - cookies\n - sending message\n - brokering exceptions into L{TransportError}\n @param request: A transport request.\n ...
def send(self, request): '\n Send soap message. Implementations are expected to handle:\n - proxies\n - I{http} headers\n - cookies\n - sending message\n - brokering exceptions into L{TransportError}\n @param request: A transport request.\n ...
d1eaab421330bcfc152f0be9f7a081e99edfbea7b6a03b22aa32b522bddb751e
def forward(self, x, train=False): '\n :param x:\n :param train:\n :return:\n ' es_time = time.time() encoder = self.encoder(x, train) e_time = (time.time() - es_time) ed_time = time.time() (accu, law) = self.decoder(encoder) d_time = (time.time() - ed_time) r...
:param x: :param train: :return:
models/models_AL/Joint.py
forward
bamtercelboo/PyTorch-Bert-BiLSTM-ATT-LJP
10
python
def forward(self, x, train=False): '\n :param x:\n :param train:\n :return:\n ' es_time = time.time() encoder = self.encoder(x, train) e_time = (time.time() - es_time) ed_time = time.time() (accu, law) = self.decoder(encoder) d_time = (time.time() - ed_time) r...
def forward(self, x, train=False): '\n :param x:\n :param train:\n :return:\n ' es_time = time.time() encoder = self.encoder(x, train) e_time = (time.time() - es_time) ed_time = time.time() (accu, law) = self.decoder(encoder) d_time = (time.time() - ed_time) r...
e702271e60d18782af3432a2d871f24d3422574d569e473df77fced54540c8d2
def __init__(self, es, nu): '\n\n :param es:\n :param nu: The kinematic viscosity nu = mu / rho\n ' super(incompressibleNavierStokesBase, self).__init__(es) assert (isinstance(nu, (int, float)) and (nu >= 0)), f'kinematic viscosity = {nu} is wrong.' self._nu_ = nu self._velocit...
:param es: :param nu: The kinematic viscosity nu = mu / rho
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
__init__
mathischeap/mifem
1
python
def __init__(self, es, nu): '\n\n :param es:\n :param nu: The kinematic viscosity nu = mu / rho\n ' super(incompressibleNavierStokesBase, self).__init__(es) assert (isinstance(nu, (int, float)) and (nu >= 0)), f'kinematic viscosity = {nu} is wrong.' self._nu_ = nu self._velocit...
def __init__(self, es, nu): '\n\n :param es:\n :param nu: The kinematic viscosity nu = mu / rho\n ' super(incompressibleNavierStokesBase, self).__init__(es) assert (isinstance(nu, (int, float)) and (nu >= 0)), f'kinematic viscosity = {nu} is wrong.' self._nu_ = nu self._velocit...
708674e329285703b36b08d8e8da8b814f0ed99dd145216b5a16a9365b4b8fe7
@property def nu(self): 'The kinematic viscosity.' return self._nu_
The kinematic viscosity.
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
nu
mathischeap/mifem
1
python
@property def nu(self): return self._nu_
@property def nu(self): return self._nu_<|docstring|>The kinematic viscosity.<|endoftext|>
123309c8f3d0c3be2436f8d39ffe0e98ea7bab4c32fe5c121f3645fea73e19ee
@property def Re(self): 'Reynolds number. It will also depend on the computational domain and velocity.' raise NotImplementedError()
Reynolds number. It will also depend on the computational domain and velocity.
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
Re
mathischeap/mifem
1
python
@property def Re(self): raise NotImplementedError()
@property def Re(self): raise NotImplementedError()<|docstring|>Reynolds number. It will also depend on the computational domain and velocity.<|endoftext|>
80e22242719e0acd1c0ac2cc8b74fb1aa6682fd77b11e77385953d145b5cf969
@property def velocity(self): 'A scalar field of the kinetic energy distribution.' if (self._velocity_ is None): self._velocity_ = _2dCSCG_VectorField(self.mesh, [self.u, self.v], valid_time=self.valid_time, name='velocity') return self._velocity_
A scalar field of the kinetic energy distribution.
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
velocity
mathischeap/mifem
1
python
@property def velocity(self): if (self._velocity_ is None): self._velocity_ = _2dCSCG_VectorField(self.mesh, [self.u, self.v], valid_time=self.valid_time, name='velocity') return self._velocity_
@property def velocity(self): if (self._velocity_ is None): self._velocity_ = _2dCSCG_VectorField(self.mesh, [self.u, self.v], valid_time=self.valid_time, name='velocity') return self._velocity_<|docstring|>A scalar field of the kinetic energy distribution.<|endoftext|>
3ede615a97e900e43e339ef138a8d6ffbea2967abd25ac9f753ed43d6fae00b4
@property def vorticity(self): 'A scalar field of the kinetic energy distribution.' if (self._vorticity_ is None): self._vorticity_ = _2dCSCG_ScalarField(self.mesh, self.omega, valid_time=self.valid_time, name='vorticity') return self._vorticity_
A scalar field of the kinetic energy distribution.
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
vorticity
mathischeap/mifem
1
python
@property def vorticity(self): if (self._vorticity_ is None): self._vorticity_ = _2dCSCG_ScalarField(self.mesh, self.omega, valid_time=self.valid_time, name='vorticity') return self._vorticity_
@property def vorticity(self): if (self._vorticity_ is None): self._vorticity_ = _2dCSCG_ScalarField(self.mesh, self.omega, valid_time=self.valid_time, name='vorticity') return self._vorticity_<|docstring|>A scalar field of the kinetic energy distribution.<|endoftext|>
d0d70b4d3f6a530cfebfe21bdc23e4155d719d0fc530193ea0d893d3dbccaf1e
@property def pressure(self): 'A scalar field of the kinetic energy distribution.' if (self._pressure_ is None): self._pressure_ = _2dCSCG_ScalarField(self.mesh, self.p, valid_time=self.valid_time, name='pressure') return self._pressure_
A scalar field of the kinetic energy distribution.
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
pressure
mathischeap/mifem
1
python
@property def pressure(self): if (self._pressure_ is None): self._pressure_ = _2dCSCG_ScalarField(self.mesh, self.p, valid_time=self.valid_time, name='pressure') return self._pressure_
@property def pressure(self): if (self._pressure_ is None): self._pressure_ = _2dCSCG_ScalarField(self.mesh, self.p, valid_time=self.valid_time, name='pressure') return self._pressure_<|docstring|>A scalar field of the kinetic energy distribution.<|endoftext|>
068434078fc6c1648b254b4a9b6e1fd918a701cbe99b1cd86452a5c2bf03e8cd
@property def total_pressure(self): 'A scalar field of the kinetic energy distribution.' if (self._total_pressure_ is None): self._total_pressure_ = _2dCSCG_ScalarField(self.mesh, self._tp_, valid_time=self.valid_time, name='total pressure') return self._total_pressure_
A scalar field of the kinetic energy distribution.
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
total_pressure
mathischeap/mifem
1
python
@property def total_pressure(self): if (self._total_pressure_ is None): self._total_pressure_ = _2dCSCG_ScalarField(self.mesh, self._tp_, valid_time=self.valid_time, name='total pressure') return self._total_pressure_
@property def total_pressure(self): if (self._total_pressure_ is None): self._total_pressure_ = _2dCSCG_ScalarField(self.mesh, self._tp_, valid_time=self.valid_time, name='total pressure') return self._total_pressure_<|docstring|>A scalar field of the kinetic energy distribution.<|endoftext|>
fdf2d4fb5667fd0508385fea0b1f371e6ca8423b5530722cf2401ee618d3742d
@property def kinetic_energy_distribution(self): 'A scalar field of the kinetic energy distribution.' if (self._kinetic_energy_distribution_ is None): self._kinetic_energy_distribution_ = _2dCSCG_ScalarField(self.mesh, self.___kinetic_energy_distribution___, valid_time=self.valid_time, name='kinetic_ene...
A scalar field of the kinetic energy distribution.
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
kinetic_energy_distribution
mathischeap/mifem
1
python
@property def kinetic_energy_distribution(self): if (self._kinetic_energy_distribution_ is None): self._kinetic_energy_distribution_ = _2dCSCG_ScalarField(self.mesh, self.___kinetic_energy_distribution___, valid_time=self.valid_time, name='kinetic_energy') return self._kinetic_energy_distribution_
@property def kinetic_energy_distribution(self): if (self._kinetic_energy_distribution_ is None): self._kinetic_energy_distribution_ = _2dCSCG_ScalarField(self.mesh, self.___kinetic_energy_distribution___, valid_time=self.valid_time, name='kinetic_energy') return self._kinetic_energy_distribution_<...
878e0a09cf589cf9c65c0220519f717e9d75c3d9b50f26729183fa0b97383e9b
@property def body_force(self): 'A scalar field of the kinetic energy distribution.' if (self._body_force_ is None): self._body_force_ = _2dCSCG_VectorField(self.mesh, [self.fx, self.fy], valid_time=self.valid_time, name='body_force') return self._body_force_
A scalar field of the kinetic energy distribution.
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
body_force
mathischeap/mifem
1
python
@property def body_force(self): if (self._body_force_ is None): self._body_force_ = _2dCSCG_VectorField(self.mesh, [self.fx, self.fy], valid_time=self.valid_time, name='body_force') return self._body_force_
@property def body_force(self): if (self._body_force_ is None): self._body_force_ = _2dCSCG_VectorField(self.mesh, [self.fx, self.fy], valid_time=self.valid_time, name='body_force') return self._body_force_<|docstring|>A scalar field of the kinetic energy distribution.<|endoftext|>
e4b4e680fd196ae0e27feeebe5fa9b1e5f6b2b8e4fce7689fc7cb02c6addc44e
@staticmethod def source_term(t, x, y): 'By default, we have divergence free condition; the source term is zero.' return (0 * x)
By default, we have divergence free condition; the source term is zero.
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
source_term
mathischeap/mifem
1
python
@staticmethod def source_term(t, x, y): return (0 * x)
@staticmethod def source_term(t, x, y): return (0 * x)<|docstring|>By default, we have divergence free condition; the source term is zero.<|endoftext|>
981da0ccb1bdae37c85bac723d6392f868bd65b874d02935fbd78606fa63785c
def ___PreFrozenChecker___(self): 'Will be called before freezing self.' TS = self.___PRIVATE_generate_random_valid_time_instances___() (x, y) = self._mesh_.do.generate_random_coordinates() if (len(x) == 0): return for t in TS: try: fx = (((self.u_t(t, x, y) - (self.omega...
Will be called before freezing self.
objects/CSCG/_2d/exact_solutions/status/incompressible_Navier_Stokes/base.py
___PreFrozenChecker___
mathischeap/mifem
1
python
def ___PreFrozenChecker___(self): TS = self.___PRIVATE_generate_random_valid_time_instances___() (x, y) = self._mesh_.do.generate_random_coordinates() if (len(x) == 0): return for t in TS: try: fx = (((self.u_t(t, x, y) - (self.omega(t, x, y) * self.v(t, x, y))) + (self....
def ___PreFrozenChecker___(self): TS = self.___PRIVATE_generate_random_valid_time_instances___() (x, y) = self._mesh_.do.generate_random_coordinates() if (len(x) == 0): return for t in TS: try: fx = (((self.u_t(t, x, y) - (self.omega(t, x, y) * self.v(t, x, y))) + (self....