MCPcopy Index your code
hub / github.com/triton-inference-server/server / comment

Method comment

build.py:187–195  ·  view source on GitHub ↗
(self, msg="")

Source from the content-addressed store, hash-verified

185 self._file.write("#" * cnt + "\n")
186
187 def comment(self, msg=""):
188 if not isinstance(msg, str):
189 try:
190 for m in msg:
191 self._file.write(f"# {msg}\n")
192 return
193 except TypeError:
194 pass
195 self._file.write(f"# {msg}\n")
196
197 def comment_verbose(self, msg=""):
198 if self._verbose:

Callers 9

comment_verboseMethod · 0.95
headerMethod · 0.95
core_buildFunction · 0.80
backend_buildFunction · 0.80
backend_cloneFunction · 0.80
repo_agent_buildFunction · 0.80
cache_buildFunction · 0.80
cibase_buildFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected