MCPcopy Create free account
hub / github.com/aboutcode-org/scancode-toolkit / whole_query_run

Method whole_query_run

src/licensedcode/query.py:306–317  ·  view source on GitHub ↗

Return a query run built from the whole range of query tokens.

(self)

Source from the content-addressed store, hash-verified

304 return length
305
306 def whole_query_run(self):
307 """
308 Return a query run built from the whole range of query tokens.
309 """
310 if not self._whole_query_run:
311 self._whole_query_run = QueryRun(
312 query=self,
313 start=0,
314 end=len(self.tokens) - 1,
315 )
316
317 return self._whole_query_run
318
319 def spdx_lid_query_runs_and_text(self):
320 """

Callers 9

get_undetected_matchesFunction · 0.95
get_matchFunction · 0.80
get_spdx_id_matchesMethod · 0.80
get_exact_matchesMethod · 0.80
match_queryMethod · 0.80
test_match_freertosMethod · 0.80

Calls 1

QueryRunClass · 0.85