Company overview
AlfaBit
Última vacante: Sin datos
- Vacantes
- 0
- Entrevistas
- 1
- Preguntas
- 12
- Tareas
- 0
Published in the selected period
Vacantes · 0
No vacancies were found for the selected period.
Published records
Entrevistas · 1
Other direction
Entrevistas · 1
Grouped by direction
Preguntas y tareas · 12
Other direction
Preguntas · 10
GetFiles ejemplo de función que necesita ser optimizada. func GetFiles(ctx context.Context, names ...string) (resultado map[string][]byte, err error) { if len(names) == 0 { return nil, nil } var wg sync.WaitGroup wg.Add(len(names)) resultado = make(map[string][]byte, len(names)) for _, name := range names { context, _ := context.WithCancel(ctx) go func() { resultado[name], err = GetFile(ctx, name) if err != nil { return nil, err } }() } wg.Wait() return resultado, nil }
Project Manager
Preguntas · 2