Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/GoesToEleven/csuf
/ functions
Functions
1,038 in github.com/GoesToEleven/csuf
⨍
Functions
1,038
◇
Types & classes
181
↓ 2 callers
Function
render
(w http.ResponseWriter, filename string, data interface{})
sp15/xx_in_process/13_go_web_shanghai/03/02/25_form/main.go:35
↓ 2 callers
Function
renderDocumentList
()
sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/views.js:332
↓ 2 callers
Function
renderDocumentList
()
sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/views.js:332
↓ 2 callers
Function
renderFile
(id, name)
sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/views.js:244
↓ 2 callers
Function
renderFile
(id, name)
sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/views.js:244
↓ 2 callers
Function
renderHeader
()
sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/views.js:3
↓ 2 callers
Function
renderHeader
()
sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/views.js:3
↓ 2 callers
Function
renderTemplate
(w http.ResponseWriter, tmpl string, p *Page)
sp15/03_gowiki/16_func-literals_closures.go:67
↓ 2 callers
Function
renderTemplate
* handle the errors in renderTemplate: BEFORE func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) { t, _ := template.ParseFiles(tmpl + "
sp15/03_gowiki/13_error_handling.go:37
↓ 2 callers
Function
renderTemplate
(w http.ResponseWriter, tmpl string, p *page)
sp15/03_gowiki/10_01_html-template_package.go:38
↓ 2 callers
Function
renderTemplate
modify the renderTemplate function to call the templates.ExecuteTemplate method with the name of the appropriate template:
sp15/03_gowiki/14_template_caching.go:57
↓ 2 callers
Function
renderTemplate
(w http.ResponseWriter, tmpl string, p *Page)
sp15/03_gowiki/11_handling_404.go:40
↓ 2 callers
Function
renderTemplate
(w http.ResponseWriter, tmpl string, p *Page)
sp15/03_gowiki/15_path_validation.go:70
↓ 2 callers
Function
renderTemplate
(w http.ResponseWriter, tmpl string, p *Page)
sp15/03_gowiki/12_saving_pages.go:29
↓ 2 callers
Function
renderTemplate
(w http.ResponseWriter, tmpl string, p *Page)
sp15/03_gowiki/10_02_html-template_package_NOTES.go:47
↓ 2 callers
Function
renderTemplate
(w http.ResponseWriter, tmpl string, p *Page)
sp15/00_student_code/shawn_b/gowiki/gowiki.go:66
↓ 2 callers
Function
renderView
(url)
sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/main.js:28
↓ 2 callers
Function
renderView
(url)
sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/main.js:28
↓ 2 callers
Function
say
(s string)
sp15/xx_in_process/13_go_web_shanghai/02/07/01_concurrency/main.go:8
↓ 2 callers
Function
serveError
(c appengine.Context, w http.ResponseWriter, err error)
sp15/04_bwpwg-master/blobstrex.go:20
↓ 2 callers
Function
setTokens
(list)
sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/hyperscript.js:333
↓ 2 callers
Function
setTokens
(list)
sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/hyperscript.js:379
↓ 2 callers
Function
shm_open
(name string, oflag, mode int)
sp15/xx_in_process/08_caleb/integration/shm/shm.go:20
↓ 2 callers
Function
sum
(a []int, c chan int)
sp15/xx_in_process/13_go_web_shanghai/02/07/02_channels/main.go:5
↓ 2 callers
Method
talk
()
sp15/02_golang-book/37_chp09_structs_embedded_types.go:10
↓ 2 callers
Function
timeTrack
(start time.Time, name string)
sp15/xx_in_process/13_go_web_shanghai/02/06/06_performance/main.go:64
↓ 2 callers
Function
view
(rw http.ResponseWriter, req *http.Request)
sp15/00_student_code/corey/4-6_assign/BulletinBoard.go:91
↓ 1 callers
Function
AuthenticateUser
AuthenticateUser checks the email & password against what's in the database
sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/users.go:29
↓ 1 callers
Function
AuthenticateUser
AuthenticateUser checks the email & password against what's in the database
sp15/xx_in_process/08_caleb/appengine/cms/users.go:29
↓ 1 callers
Function
Average
Finds the average of a series of numbers
sp15/00_student_code/shawn_b/golang-homework/golang_math/math.go:12
↓ 1 callers
Function
BasicAuth
(h httprouter.Handle, user, pass []byte)
sp15/xx_in_process/13_go_web_shanghai/03/02/24_schmidt_auth/main.go:13
↓ 1 callers
Function
ClassList
(elem)
sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/hyperscript.js:264
↓ 1 callers
Function
ClassList
(elem)
sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/hyperscript.js:310
↓ 1 callers
Function
CreateMessage
(greeting, name string)
sp15/01_samples/26_ignore_unused_variable.go:24
↓ 1 callers
Function
CreateMessage
(name string, greeting ...string)
sp15/01_samples/33_FUNCTION_TYPES.go:27
↓ 1 callers
Function
CreateMessage
(greeting, name string)
sp15/01_samples/21_returns.go:16
↓ 1 callers
Function
CreateMessage
VARIADIC FUNCTIONS a variable number of parameters of a certain type useful when we don't know how many parameters are going to be passed in
sp15/01_samples/31_ERROR_only_one_variadic_per_function.go:19
↓ 1 callers
Function
CreateMessage
VARIADIC FUNCTIONS a variable number of parameters of a certain type useful when we don't know how many parameters are going to be passed in
sp15/01_samples/30_ERROR_variadic_must_be_last_parameter.go:19
↓ 1 callers
Function
CreateMessage
YOU CAN ALSO NAME THE RETURN VALUES
sp15/01_samples/28_naming_return_value.go:17
↓ 1 callers
Function
CreateMessage
(greeting, name string)
sp15/01_samples/25_unused_return_is_error.go:25
↓ 1 callers
Function
CreateMessage
(greeting, name string)
sp15/01_samples/23_escaped_characters.go:14
↓ 1 callers
Function
CreateMessage
(name string, anotherString string, greeting ...string)
sp15/01_samples/35_wrong_way.go:26
↓ 1 callers
Function
CreateMessage
VARIADIC FUNCTIONS a variable number of arguments of a certain type useful when we don't know how many arguments are going to be passed in
sp15/01_samples/29_VARIADIC_functions.go:19
↓ 1 callers
Function
CreateMessage
VARIADIC FUNCTIONS a variable number of parameters of a certain type useful when we don't know how many parameters are going to be passed in
sp15/01_samples/32_len.go:19
↓ 1 callers
Function
CreateMessage
(greeting, name string)
sp15/01_samples/24_multiple_returns_mas.go:14
↓ 1 callers
Function
CreateMessage
(greeting, name string)
sp15/01_samples/22_multiple_returns.go:14
↓ 1 callers
Function
CreateMessage
(name string, greeting ...string)
sp15/01_samples/34_functions_declared_as_types.go:26
↓ 1 callers
Function
CreateMessage
(name string, greeting ...string)
sp15/01_samples/35_funcs_that_return_funcs.go:24
↓ 1 callers
Function
CreatePeople
()
sp15/00_student_code/corey/3-16_assign/FormLetter/FormLetter.go:17
↓ 1 callers
Function
CreateUser
CreateUser creates a new user record
sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/users.go:50
↓ 1 callers
Function
CreateUser
CreateUser creates a new user record
sp15/xx_in_process/08_caleb/appengine/cms/users.go:50
↓ 1 callers
Method
Deliver
()
sp15/xx_in_process/13_go_web_shanghai/03/02/27_form_email/main.go:82
↓ 1 callers
Method
FullName
()
sp15/00_student_code/corey/2-23_assign/2-23_assign.go:20
↓ 1 callers
Function
Get
Get is a function that is launched as a goroutine
sp15/04_bwpwg-master/weather.go:65
↓ 1 callers
Function
Get
Get is a function that is launched as a goroutine
sp15/04_bwpwg-master/weatherui.go:174
↓ 1 callers
Function
GetFlash
(w http.ResponseWriter, r *http.Request, name string)
sp15/xx_in_process/13_go_web_shanghai/03/02/28_cookie/flash.go:14
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/00_student_code/corey/3-11_quiz/3-11_quiz.go:22
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/00_student_code/shawn_b/samples/geoweb.go:25
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/00_student_code/shawn_b/misc/geoweb.go:90
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/06_ipweb.go:37
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/02_webtime.go:22
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/14_forms.go:59
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/weatherui.go:326
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/getcapital.go:104
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/trails.go:148
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/01_webapp.go:21
↓ 1 callers
Function
GetPort
()
sp15/04_bwpwg-master/webgmail.go:22
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/gomongohq.go:111
↓ 1 callers
Function
GetPort
WHY {{html .}} http://golang.org/pkg/html/template/#hdr-Typed_Strings Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/13_stringupper/stringupper.go:90
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/11_dosasite/dosasite.go:27
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/03_dosasite/dosasite.go:23
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/15_geoweb/geoweb.go:25
↓ 1 callers
Function
GetPort
Get the Port from the environment so we can run on Heroku
sp15/04_bwpwg-master/12_dosasite/dosasite.go:28
↓ 1 callers
Function
Greet
(person Contact)
sp15/01_samples/19_FUNCTIONS.go:14
↓ 1 callers
Method
Iterator
Iterator returns an iterator that can be used to traverse the trie in sorted order. The iterator starts before the first key value pair, so Next() sho
sp15/xx_in_process/08_caleb/trie/trie.go:104
↓ 1 callers
Function
Max
Finds the maximum value in a given slice of float64
sp15/00_student_code/corey/3-2_assign/Chapter12/min_max/min_max.go:18
↓ 1 callers
Function
Max
(xs []float64)
sp15/00_student_code/shawn_b/golang-homework/golang_math/math.go:25
↓ 1 callers
Function
Min
Finds the minimum value in a given slice of float64
sp15/00_student_code/corey/3-2_assign/Chapter12/min_max/min_max.go:4
↓ 1 callers
Function
Min
(xs []float64)
sp15/00_student_code/shawn_b/golang-homework/golang_math/math.go:20
↓ 1 callers
Function
Modify
(u **User)
sp15/xx_misc/saturday/pointers.go:23
↓ 1 callers
Function
Modify2
(u *User)
sp15/xx_misc/saturday/pointers.go:27
↓ 1 callers
Method
PrintFirst
()
sp15/00_student_code/corey/2-23_assign/slice_methods/slice_methods.go:9
↓ 1 callers
Function
Reverse
Reverse returns its argument string reversed rune-wise left to right.
sp15/00_student_code/corey/stringutil/reverse.go:5
↓ 1 callers
Method
SecondHalf
()
sp15/00_student_code/corey/2-23_assign/slice_methods/slice_methods.go:13
↓ 1 callers
Function
SetFlash
(w http.ResponseWriter, name string, value []byte)
sp15/xx_in_process/13_go_web_shanghai/03/02/28_cookie/flash.go:9
↓ 1 callers
Method
SetPerson
(p Person)
sp15/00_student_code/corey/3-16_assign/FormLetter/FormLetter.go:35
↓ 1 callers
Function
Sleep
( timeInMs time.Duration )
sp15/00_student_code/shawn_b/golang-homework/ch10_p2_sleepByChan.go:12
↓ 1 callers
Function
Sum
(xs []int64)
sp15/xx_in_process/08_caleb/integration/syso/sum.go:3
↓ 1 callers
Function
Sum
(xs []int64)
sp15/xx_in_process/08_caleb/integration/cgo/gcc/main.go:8
↓ 1 callers
Method
Validate
()
sp15/xx_in_process/13_go_web_shanghai/03/02/27_form_email/main.go:66
↓ 1 callers
Method
Validate
()
sp15/xx_in_process/13_go_web_shanghai/03/02/26_form_validate/main.go:62
↓ 1 callers
Function
add
(token)
sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/hyperscript.js:283
↓ 1 callers
Function
add
(token)
sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/hyperscript.js:329
↓ 1 callers
Function
addFloat
()
sp15/02_golang-book/07_chp03_types_floating_point.go:50
↓ 1 callers
Function
addFloatMas
()
sp15/02_golang-book/07_chp03_types_floating_point.go:54
↓ 1 callers
Function
addInt
()
sp15/02_golang-book/07_chp03_types_floating_point.go:46
↓ 1 callers
Method
area
()
sp15/00_student_code/corey/3-2_assign/Chapter 9/perimeter.go:25
↓ 1 callers
Method
area
()
sp15/00_student_code/corey/3-2_assign/Chapter 9/perimeter.go:37
↓ 1 callers
Method
area
()
sp15/00_student_code/shawn_b/golang-homework/ch9_p3_shapePerimeterInterface.go:31
↓ 1 callers
Method
area
()
sp15/00_student_code/shawn_b/golang-homework/ch9_p3_shapePerimeterInterface.go:43
← previous
next →
101–200 of 1,038, ranked by callers