update packaging
[platform/core/system/edge-orchestration.git] / vendor / gopkg.in / go-ini / ini.v1 / testdata / full.ini
1 ; Package name
2 NAME        = ini
3 ; Package version
4 VERSION     = v1
5 ; Package import path
6 IMPORT_PATH = gopkg.in/%(NAME)s.%(VERSION)s
7
8 # Information about package author
9 # Bio can be written in multiple lines.
10 [author]
11 NAME   = Unknwon
12 E-MAIL = u@gogs.io
13 GITHUB = https://github.com/%(NAME)s
14 BIO    = """Gopher.
15 Coding addict.
16 Good man.
17 """  # Succeeding comment
18
19 [package]
20 CLONE_URL = https://%(IMPORT_PATH)s
21
22 [package.sub]
23 UNUSED_KEY = should be deleted
24
25 [features]
26 -: Support read/write comments of keys and sections
27 -: Support auto-increment of key names
28 -: Support load multiple files to overwrite key values
29
30 [types]
31 STRING     = str
32 BOOL       = true
33 BOOL_FALSE = false
34 FLOAT64    = 1.25
35 INT        = 10
36 TIME       = 2015-01-01T20:17:05Z
37 DURATION   = 2h45m
38 UINT       = 3
39 HEX_NUMBER = 0x3000
40
41 [array]
42 STRINGS  = en, zh, de
43 FLOAT64S = 1.1, 2.2, 3.3
44 INTS     = 1, 2, 3
45 UINTS    = 1, 2, 3
46 TIMES    = 2015-01-01T20:17:05Z,2015-01-01T20:17:05Z,2015-01-01T20:17:05Z
47
48 [note]
49 empty_lines = next line is empty\
50
51 ; Comment before the section
52 [comments] ; This is a comment for the section too
53 ; Comment before key
54 key  = "value"
55 key2 = "value2" ; This is a comment for key2
56 key3 = "one", "two", "three"
57
58 [string escapes]
59 key1 = value1, value2, value3
60 key2 = value1\, value2
61 key3 = val\ue1, value2
62 key4 = value1\\, value\\\\2
63 key5 = value1\,, value2
64 key6 = aaa bbb\ and\ space ccc
65
66 [advance]
67 value with quotes      = "some value"
68 value quote2 again     = 'some value'
69 includes comment sign  = `my#password`
70 includes comment sign2 = `my;password`
71 true                   = 2+3=5
72 "1+1=2"                = true
73 """6+1=7"""            = true
74 """`5+5`"""            = 10
75 `"6+6"`                = 12
76 `7-2=4`                = false
77 ADDRESS                = `404 road,
78 NotFound, State, 50000`
79 two_lines = how about \
80         continuation lines?
81 lots_of_lines = 1 \
82         2 \
83         3 \
84         4 \