(moduleCount int)
| 937 | } |
| 938 | |
| 939 | func moduleResolveParallelism(moduleCount int) int { |
| 940 | if moduleCount <= 1 { |
| 941 | return 1 |
| 942 | } |
| 943 | if moduleCount > maxParallelModuleResolves { |
| 944 | return maxParallelModuleResolves |
| 945 | } |
| 946 | return moduleCount |
| 947 | } |
| 948 | |
| 949 | func moduleProgressName(mod pendingModule) string { |
| 950 | if mod.Name != "" { |
no outgoing calls