Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/StackExchange/httpunit
/ functions
Functions
233 in github.com/StackExchange/httpunit
⨍
Functions
233
◇
Types & classes
83
↓ 1 callers
Function
isEmpty
(rv reflect.Value)
_third_party/github.com/BurntSushi/toml/encode.go:476
↓ 1 callers
Method
isImplicit
isImplicit returns true if the key group pointed to by the key was created implicitly.
_third_party/github.com/BurntSushi/toml/parse.go:385
↓ 1 callers
Function
isUnifiable
(rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:475
↓ 1 callers
Function
isZero
(rv reflect.Value)
_third_party/github.com/BurntSushi/toml/encode.go:457
↓ 1 callers
Function
lex
(input string)
_third_party/github.com/BurntSushi/toml/lex.go:88
↓ 1 callers
Function
lexStringEscape
(lx *lexer)
_third_party/github.com/BurntSushi/toml/lex.go:572
↓ 1 callers
Function
mismatch
(user reflect.Value, expected string, data interface{})
_third_party/github.com/BurntSushi/toml/decode.go:489
↓ 1 callers
Method
nextItem
()
_third_party/github.com/BurntSushi/toml/lex.go:77
↓ 1 callers
Function
parse
(data string)
_third_party/github.com/BurntSushi/toml/parse.go:40
↓ 1 callers
Method
removeImplicit
removeImplicit stops tagging the given key as having been implicitly created.
_third_party/github.com/BurntSushi/toml/parse.go:379
↓ 1 callers
Method
safeEncode
(key Key, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/encode.go:94
↓ 1 callers
Function
stripEscapedWhitespace
(s string)
_third_party/github.com/BurntSushi/toml/parse.go:407
↓ 1 callers
Method
testConnect
()
httpunit.go:459
↓ 1 callers
Method
testHTTP
()
httpunit.go:475
↓ 1 callers
Function
tomlArrayType
tomlArrayType returns the element type of a TOML array. The type returned may be nil if it cannot be determined (e.g., a nil slice or a zero length sl
_third_party/github.com/BurntSushi/toml/encode.go:413
↓ 1 callers
Method
topLevel
(item item)
_third_party/github.com/BurntSushi/toml/parse.go:99
↓ 1 callers
Function
typeFields
typeFields returns a list of fields that TOML should recognize for the given type. The algorithm is breadth-first search over the set of structs to in
_third_party/github.com/BurntSushi/toml/type_fields.go:67
↓ 1 callers
Method
typeOfArray
typeOfArray returns a tomlType for an array given a list of types of its values. In the current spec, if an array is homogeneous, then its type is al
_third_party/github.com/BurntSushi/toml/type_check.go:77
↓ 1 callers
Method
typeString
()
_third_party/github.com/BurntSushi/toml/type_check.go:25
↓ 1 callers
Method
unifyAnything
(data interface{}, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:415
↓ 1 callers
Method
unifyArray
(data interface{}, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:292
↓ 1 callers
Method
unifyBool
(data interface{}, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:407
↓ 1 callers
Method
unifyDatetime
(data interface{}, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:329
↓ 1 callers
Method
unifyFloat64
(data interface{}, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:345
↓ 1 callers
Method
unifyInt
(data interface{}, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:360
↓ 1 callers
Method
unifyMap
(mapping interface{}, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:267
↓ 1 callers
Method
unifySlice
(data interface{}, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:305
↓ 1 callers
Method
unifyString
(data interface{}, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:337
↓ 1 callers
Method
unifyStruct
(mapping interface{}, rv reflect.Value)
_third_party/github.com/BurntSushi/toml/decode.go:225
↓ 1 callers
Method
unifyText
(data interface{}, v TextUnmarshaler)
_third_party/github.com/BurntSushi/toml/decode.go:420
Function
BenchmarkSortInt32New
(b *testing.B)
_third_party/github.com/bradfitz/slice/slice_test.go:131
Function
BenchmarkSortInt32Old
(b *testing.B)
_third_party/github.com/bradfitz/slice/slice_test.go:144
Function
BenchmarkSortInt64New
(b *testing.B)
_third_party/github.com/bradfitz/slice/slice_test.go:107
Function
BenchmarkSortInt64Old
(b *testing.B)
_third_party/github.com/bradfitz/slice/slice_test.go:120
Function
BenchmarkSortStructNew
(b *testing.B)
_third_party/github.com/bradfitz/slice/slice_test.go:166
Function
BenchmarkSortStructOld
(b *testing.B)
_third_party/github.com/bradfitz/slice/slice_test.go:155
Function
DecodeFile
DecodeFile is just like Decode, except it will automatically read the contents of the file at `fpath` and decode it for you.
_third_party/github.com/BurntSushi/toml/decode.go:119
Function
DecodeReader
DecodeReader is just like Decode, except it will consume all bytes from the reader and decode it for you.
_third_party/github.com/BurntSushi/toml/decode.go:129
Function
ExampleDecode
()
_third_party/github.com/BurntSushi/toml/decode_test.go:529
Function
ExampleEncoder_Encode
()
_third_party/github.com/BurntSushi/toml/encode_test.go:519
Function
ExampleMetaData_PrimitiveDecode
()
_third_party/github.com/BurntSushi/toml/decode_test.go:471
Function
Example_strictDecoding
Example StrictDecoding shows how to detect whether there are keys in the TOML document that weren't decoded into the value given. This is useful for r
_third_party/github.com/BurntSushi/toml/decode_test.go:640
Function
Example_unmarshalTOML
Example UnmarshalTOML shows how to implement a struct type that knows how to unmarshal itself. The struct must take full responsibility for mapping th
_third_party/github.com/BurntSushi/toml/decode_test.go:666
Function
Example_unmarshaler
Example Unmarshaler shows how to decode TOML strings into your own custom data type.
_third_party/github.com/BurntSushi/toml/decode_test.go:594
Function
ExtractHiera
* ExtractHiera returns listener members from a hiera sets.json file. For example, the following file would create three entries for the given IPs and
httpunit.go:50
Method
Keys
Keys returns a slice of every key in the TOML data, including key groups. Each key is itself a slice, where the first element is the top of the hierar
_third_party/github.com/BurntSushi/toml/decode_meta.go:99
Method
Len
()
_third_party/github.com/BurntSushi/toml/type_fields.go:48
Method
Len
()
_third_party/github.com/bradfitz/slice/slice_test.go:182
Method
Len
()
_third_party/github.com/bradfitz/slice/slice_test.go:189
Method
Len
()
_third_party/github.com/bradfitz/slice/slice_test.go:195
Method
Less
(i, j int)
_third_party/github.com/BurntSushi/toml/type_fields.go:32
Method
Less
(i, j int)
_third_party/github.com/BurntSushi/toml/type_fields.go:52
Method
Less
(i, j int)
_third_party/github.com/bradfitz/slice/slice.go:109
Method
Less
(i, j int)
_third_party/github.com/bradfitz/slice/slice_test.go:30
Method
Less
(i, j int)
_third_party/github.com/bradfitz/slice/slice_test.go:183
Method
Less
(i, j int)
_third_party/github.com/bradfitz/slice/slice_test.go:190
Method
Name
()
_third_party/github.com/BurntSushi/toml/decode_test.go:926
Method
Name
()
_third_party/github.com/BurntSushi/toml/decode_test.go:937
Method
Name
()
_third_party/github.com/BurntSushi/toml/decode_test.go:948
Function
PrimitiveDecode
DEPRECATED! Use MetaData.PrimitiveDecode instead.
_third_party/github.com/BurntSushi/toml/decode.go:47
Method
String
()
_third_party/github.com/BurntSushi/toml/type_check.go:29
Method
String
()
_third_party/github.com/BurntSushi/toml/lex.go:830
Method
Swap
(i, j int)
_third_party/github.com/BurntSushi/toml/type_fields.go:30
Method
Swap
(i, j int)
_third_party/github.com/BurntSushi/toml/type_fields.go:50
Method
Swap
(i, j int)
_third_party/github.com/bradfitz/slice/slice.go:121
Method
Swap
(i, j int)
_third_party/github.com/bradfitz/slice/slice.go:133
Method
Swap
(i, j int)
_third_party/github.com/bradfitz/slice/slice.go:146
Method
Swap
(i, j int)
_third_party/github.com/bradfitz/slice/slice.go:159
Method
Swap
(i, j int)
_third_party/github.com/bradfitz/slice/slice.go:178
Method
Swap
(i, j int)
_third_party/github.com/bradfitz/slice/slice_test.go:184
Method
Swap
(i, j int)
_third_party/github.com/bradfitz/slice/slice_test.go:191
Method
Test
Test performs this test case.
httpunit.go:445
Function
TestCase
Case insensitive matching tests. A bit more comprehensive than needed given the current implementation, but implementations change. Probably still mis
_third_party/github.com/BurntSushi/toml/decode_test.go:174
Function
TestDecodeArrayWrongSize
(t *testing.T)
_third_party/github.com/BurntSushi/toml/decode_test.go:300
Function
TestDecodeEmbedded
(t *testing.T)
_third_party/github.com/BurntSushi/toml/decode_test.go:79
Function
TestDecodeLargeIntoSmallInt
(t *testing.T)
_third_party/github.com/BurntSushi/toml/decode_test.go:307
Function
TestDecodeSimple
(t *testing.T)
_third_party/github.com/BurntSushi/toml/decode_test.go:15
Function
TestDecodeSimpleArray
(t *testing.T)
_third_party/github.com/BurntSushi/toml/decode_test.go:293
Function
TestDecodeSizedInts
(t *testing.T)
_third_party/github.com/BurntSushi/toml/decode_test.go:317
Function
TestEncode
XXX(burntsushi) I think these tests probably should be removed. They are good, but they ought to be obsolete by toml-test.
_third_party/github.com/BurntSushi/toml/encode_test.go:62
Function
TestEncodeArrayHashWithNormalHashOrder
(t *testing.T)
_third_party/github.com/BurntSushi/toml/encode_test.go:436
Function
TestEncodeNestedTableArrays
(t *testing.T)
_third_party/github.com/BurntSushi/toml/encode_test.go:396
Function
TestEncodeRoundTrip
(t *testing.T)
_third_party/github.com/BurntSushi/toml/encode_test.go:12
Function
TestEncodeWithOmitEmpty
(t *testing.T)
_third_party/github.com/BurntSushi/toml/encode_test.go:458
Function
TestEncodeWithOmitZero
(t *testing.T)
_third_party/github.com/BurntSushi/toml/encode_test.go:472
Function
TestIPMapResolve
(t *testing.T)
httpunit_test.go:5
Function
TestPointers
(t *testing.T)
_third_party/github.com/BurntSushi/toml/decode_test.go:239
Function
TestSort
(t *testing.T)
_third_party/github.com/bradfitz/slice/slice_test.go:73
Function
TestSort3
(t *testing.T)
_third_party/github.com/bradfitz/slice/slice_test.go:55
Function
TestSortStruct
(t *testing.T)
_third_party/github.com/bradfitz/slice/slice_test.go:90
Function
TestSwapMem
(t *testing.T)
_third_party/github.com/bradfitz/slice/slice_test.go:36
Function
TestTableArrays
(t *testing.T)
_third_party/github.com/BurntSushi/toml/decode_test.go:122
Function
TestUnmarshaler
(t *testing.T)
_third_party/github.com/BurntSushi/toml/decode_test.go:352
Method
UnmarshalTOML
(p interface{})
_third_party/github.com/BurntSushi/toml/decode_test.go:431
Method
UnmarshalTOML
(data interface{})
_third_party/github.com/BurntSushi/toml/decode_test.go:841
Method
UnmarshalText
(text []byte)
_third_party/github.com/BurntSushi/toml/decode_test.go:586
Function
init
()
_third_party/github.com/BurntSushi/toml/decode_test.go:11
Function
isStringType
(ty itemType)
_third_party/github.com/BurntSushi/toml/parse.go:495
Function
isValidKeyName
(s string)
_third_party/github.com/BurntSushi/toml/encode.go:549
Function
lexArrayEnd
lexArrayEnd finishes the lexing of an array. It assumes that a ']' has just been consumed.
_third_party/github.com/BurntSushi/toml/lex.go:464
← previous
next →
101–200 of 233, ranked by callers