MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / sortedRunPluginNames

Function sortedRunPluginNames

benchmark/core.go:387–394  ·  view source on GitHub ↗
(results map[string]PluginRunResult)

Source from the content-addressed store, hash-verified

385}
386
387func sortedRunPluginNames(results map[string]PluginRunResult) []string {
388 names := make([]string, 0, len(results))
389 for name := range results {
390 names = append(names, name)
391 }
392 sort.Strings(names)
393 return names
394}
395
396func runPluginNames(run BenchmarkRun) []string {
397 if len(run.PluginOrder) == 0 {

Callers 2

runPluginNamesFunction · 0.85
normalizeRunPluginOrderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected