MCPcopy Index your code
hub / github.com/aws/aws-cli / communicate

Method communicate

awscli/utils.py:81–87  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

79 return getattr(self.initialize(), item)
80
81 def communicate(self, *args, **kwargs):
82 # if pager process has not been created yet it means we didn't
83 # write to its stdin and there is no reason to create it just
84 # to call `communicate` so we can ignore this call
85 if self._process is not None or args or kwargs:
86 return getattr(self.initialize(), 'communicate')(*args, **kwargs)
87 return None, None
88
89 def _do_popen(self):
90 try:

Callers 15

get_pager_streamMethod · 0.95
runFunction · 0.45
_send_output_to_pagerMethod · 0.45
_send_output_to_pagerMethod · 0.45
_convert_doc_contentMethod · 0.45
_convert_doc_contentMethod · 0.45
awsFunction · 0.45
_wait_and_collect_memFunction · 0.45
_get_memory_with_psFunction · 0.45
installMethod · 0.45

Calls 1

initializeMethod · 0.95

Tested by 4

awsFunction · 0.36
_wait_and_collect_memFunction · 0.36
_get_memory_with_psFunction · 0.36