MCPcopy Create free account

hub / github.com/crgimenes/grupo-estudos-golang / functions

Functions264 in github.com/crgimenes/grupo-estudos-golang

↓ 15 callersMethodError
()
error_handling/main.go:16
↓ 12 callersFunctionpopulaMapa
** populaMapa - função que popula um mapa reduzido com o resultado do mapa maior */
goalfabeto/goalfabeto.go:71
↓ 4 callersMethodInsert
(name string)
sql_database_access/main.go:19
↓ 4 callersFunctionParseDelimited
(data string, comma rune)
csv_tsv_tabular/main.go:16
↓ 4 callersFunctionWork
(ctx context.Context, d time.Duration)
context_cancellation/main.go:9
↓ 3 callersFunctionFirstSignal
(timeout time.Duration)
channels_select/main.go:8
↓ 3 callersMethodHandler
(w http.ResponseWriter, r *http.Request)
rest_api_crud/main.go:26
↓ 3 callersFunctionIsNewerVersion
(current, latest string)
binary_autoupdate/main.go:9
↓ 3 callersFunctionMin
(a, b T)
generics/main.go:8
↓ 3 callersFunctionReadFirstLine
(r io.Reader)
io_streams_files/main.go:11
↓ 3 callersFunctionStructFieldNames
(v any)
reflection/main.go:8
↓ 3 callersFunctiondescribe
(v any)
interfaces/main.go:21
↓ 3 callersFunctiondivide
(a, b float64)
functions/main.go:5
↓ 3 callersFunctionerrorPage
(w http.ResponseWriter, msg string)
embed_e_templates/main.go:32
↓ 3 callersFunctionprintTemplate
(page string, w http.ResponseWriter, data any)
embed_e_templates/main.go:20
↓ 3 callersFunctionsafeDivide
(a, b int)
defer_panic_recover/main.go:15
↓ 2 callersMethodBirthday
()
structs_methods_composition/main.go:14
↓ 2 callersFunctionBuildMessage
(from, to, subject, body string)
smtp_email/main.go:8
↓ 2 callersFunctionBuscaRequest
BuscaRequest Busca pagina BC
godolar/godolar.go:17
↓ 2 callersFunctionCRC32
(data []byte)
checksums/main.go:12
↓ 2 callersFunctionCRC64
(data []byte)
checksums/main.go:16
↓ 2 callersFunctionCompareVersions
(a, b string)
binary_autoupdate/main.go:14
↓ 2 callersFunctionConcurrentSquare
(values []int)
goroutines_waitgroup/main.go:8
↓ 2 callersFunctionFormatRows
(rows [][]string)
csv_tsv_tabular/main.go:36
↓ 2 callersFunctionGzipBytes
(data []byte)
compression_archiving/main.go:11
↓ 2 callersFunctionHealthHandler
(w http.ResponseWriter, r *http.Request)
http_fundamentals/main.go:12
↓ 2 callersMethodLabel
()
structs_methods_composition/main.go:10
↓ 2 callersFunctionLines
(data []string)
range-over-func/e2/main.go:8
↓ 2 callersMethodList
()
sql_database_access/main.go:26
↓ 2 callersFunctionMapSlice
(in []T, fn func(T) U)
generics/main.go:15
↓ 2 callersFunctionMontaAlfabeto
*MontaAlfabeto - função que monta o mapa com alfabeto desejado */
goalfabeto/goalfabeto.go:96
↓ 2 callersFunctionMostraTabela
*MostraTabela - função que imprime a tabela gerada. Tendo uma única coluna, imprime o valor do índice Tendo mais que uma coluna, imprime o slice intei
goalfabeto/goalfabeto.go:55
↓ 2 callersFunctionNewTimerDone
(d time.Duration)
time_dates_timezones_timers/main.go:12
↓ 2 callersFunctionNewUserStore
()
sql_database_access/main.go:15
↓ 2 callersFunctionNormalizeSpace
(s string)
testing_in_go/normalize.go:5
↓ 2 callersFunctionParseCSVLine
(line string)
fuzzing/parser.go:8
↓ 2 callersFunctionParseDate
(layout, value string, loc *time.Location)
time_dates_timezones_timers/main.go:8
↓ 2 callersFunctionParseKeyValues
(data string)
text_parsing_regexp/main.go:13
↓ 2 callersFunctionReadEnv
(key string)
env_and_exec/main.go:10
↓ 2 callersFunctionRenderHTML
(name string)
embed_and_templates/main.go:26
↓ 2 callersFunctionRenderText
(name string)
embed_and_templates/main.go:14
↓ 2 callersFunctionRunEcho
(msg string)
env_and_exec/main.go:15
↓ 2 callersFunctionSHA256
(data []byte)
checksums/main.go:20
↓ 2 callersFunctionSMTPAuth
(user, pass, host string)
smtp_email/main.go:16
↓ 2 callersFunctionSumSquares
(n int)
benchmark_profiling/sumsquares.go:3
↓ 2 callersFunctionTrataRequest
TrataRequest Recebe o conteudo da pagina e retorna os valores de compra e venda
godolar/godolar.go:28
↓ 2 callersFunctionUngzipBytes
(data []byte)
compression_archiving/main.go:28
↓ 2 callersFunctionZipFileNames
(data []byte)
compression_archiving/main.go:68
↓ 2 callersFunctionZipSingleFile
(name string, content []byte)
compression_archiving/main.go:46
↓ 2 callersFunctionadd
go:generate go run ./cmd/gen
go_tooling/main.go:7
↓ 2 callersFunctionclassify
(n int)
control_flow_and_operators/main.go:5
↓ 2 callersFunctioncopySlice
(src []int)
arrays_slices_maps/main.go:5
↓ 2 callersFunctiondeferOrder
()
defer_panic_recover/main.go:25
↓ 2 callersFunctiondescribeLevel
(level LogLevel)
variables_constants_types/main.go:14
↓ 2 callersFunctionfindUserName
(id int)
error_handling/main.go:20
↓ 2 callersFunctionhasUTF8BOM
(b []byte)
strings_runes_utf8_bom/main.go:12
↓ 2 callersFunctionhelloMessage
()
hello_world/main.go:5
↓ 2 callersFunctionincrement
(v *int)
pointers_scope_shadowing/main.go:5
↓ 2 callersFunctionmakeAdder
(base int)
functions/main.go:20
↓ 2 callersFunctionparse
(flag bool)
pointers_scope_shadowing/main.go:9
↓ 2 callersFunctionparseAge
(input string)
error_handling/main.go:30
↓ 2 callersFunctionparseVersion
(v string)
binary_autoupdate/main.go:34
↓ 2 callersFunctionreadAll
(r io.Reader)
interfaces/main.go:34
↓ 2 callersFunctionrun
(args []string, in io.Reader, out io.Writer)
cli_project/main.go:12
↓ 2 callersFunctionruneCount
(s string)
strings_runes_utf8_bom/main.go:8
↓ 2 callersFunctionsum
(values []int)
control_flow_and_operators/main.go:19
↓ 2 callersFunctionupdateTerminalSize
()
fireworks/main.go:42
↓ 2 callersFunctionwordFreq
(words []string)
arrays_slices_maps/main.go:11
↓ 2 callersFunctionwrite
(w io.Writer, msg string)
lua/launcher/launcher.go:24
↓ 1 callersFunctionDecodeJSON
(data []byte)
json_xml/main.go:14
↓ 1 callersFunctionEncodeXML
(u User)
json_xml/main.go:20
↓ 1 callersFunctionFakeResponse
(site string)
godolar/godolar_test.go:93
↓ 1 callersFunctionFillSyncMap
(values []string)
sync_and_race_conditions/main.go:22
↓ 1 callersFunctionGETMap
GETMap - função GET que retorna a tabela de alfabetos disponíveis
goalfabeto/goalfabeto.go:133
↓ 1 callersFunctionHandleLine
(conn net.Conn)
low_level_networking/main.go:10
↓ 1 callersFunctionHello
(name string)
packages_and_modules/greetings/greetings.go:5
↓ 1 callersMethodInc
()
sync_and_race_conditions/main.go:10
↓ 1 callersFunctionListFiles
(root string)
filesystem_iofs/main.go:9
↓ 1 callersFunctionLogRequest
(logger *slog.Logger, path string, status int, durationMS int64)
service_observability/main.go:14
↓ 1 callersFunctionNewBufferLogger
()
service_observability/main.go:8
↓ 1 callersFunctionNewStore
()
rest_api_crud/main.go:22
↓ 1 callersFunctionPetSematary
(pet []petType)
range-over-func/e3/main.go:14
↓ 1 callersFunctionRequestIDMiddleware
(next http.Handler)
http_middleware_templates_sessions/main.go:9
↓ 1 callersFunctionSessionHandler
(w http.ResponseWriter, r *http.Request)
http_middleware_templates_sessions/main.go:16
↓ 1 callersMethodSpeak
()
interfaces/main.go:10
↓ 1 callersFunctionUserService
(w http.ResponseWriter, r *http.Request)
microservices_intro/main.go:10
↓ 1 callersMethodValue
()
sync_and_race_conditions/main.go:16
↓ 1 callersFunctionWaitForShutdown
(parent context.Context, sigs <-chan os.Signal)
signals_graceful_shutdown/main.go:10
↓ 1 callersFunctionassertEqual
(t *testing.T, got, want string)
testing_in_go/normalize_test.go:8
↓ 1 callersFunctioncloser
(c io.Closer)
goenglish/main.go:37
↓ 1 callersFunctionconvertePalavra
** convertePalavra - função que converte a palavra desejada ao alfabeto desejado */
goalfabeto/goalfabeto.go:84
↓ 1 callersFunctiondivideOrPanic
(a, b int)
defer_panic_recover/main.go:8
↓ 1 callersFunctiondrawBanner
()
fireworks/main.go:100
↓ 1 callersFunctiondrawExplosion
(x, y int, maxRadius int)
fireworks/main.go:74
↓ 1 callersFunctionexecHelper
(path, name string, arg ...string)
sitegen/main.go:26
↓ 1 callersFunctionexecHelper
()
lua/launcher/launcher.go:33
↓ 1 callersFunctionfileExists
(path string)
sitegen/main.go:54
↓ 1 callersFunctionformatBody
(body []byte)
goenglish/main.go:44
↓ 1 callersFunctiongetLastNews
Retorna as últimas notícias do Uol:
crawler/crawler.go:41
↓ 1 callersFunctiongetOpenAI
(user, query string)
telegram/main.go:20
next →1–100 of 264, ranked by callers