Home
last modified time | relevance | path

Searched full:etc (Results 1 – 25 of 4354) sorted by relevance

12345678910>>...175

/third_party/tzdata/
Detcetera14 # instead of TZ='Etc/GMT+4' one can use the POSIX setting TZ='<-04>+4'.
21 Zone Etc/UTC 0 - UTC
27 Zone Etc/GMT 0 - GMT
32 # where functions like gmtime load "GMT" instead of the "Etc/UTC".
34 Link Etc/GMT GMT
40 # positive signs east of Greenwich. For example, TZ='Etc/GMT+4' uses
51 # so we moved the names into the Etc subdirectory.
54 Zone Etc/GMT-14 14 - +14
55 Zone Etc/GMT-13 13 - +13
56 Zone Etc/GMT-12 12 - +12
[all …]
Dbackward64 #Link GMT Etc/GMT
65 #Link GMT Etc/GMT+0
66 #Link GMT Etc/GMT-0
67 #Link GMT Etc/GMT0
68 #Link GMT Etc/Greenwich
70 Link Etc/GMT Etc/GMT+0
71 Link Etc/GMT Etc/GMT-0
72 Link Etc/GMT Etc/GMT0
73 Link Etc/GMT Etc/Greenwich
75 Link Etc/UTC Etc/UCT
[all …]
/third_party/ltp/testscripts/
Dautofs1.sh96 # Pick the floppy device name from /etc/fstab
98 # Create the /etc/auto.master
99 # Create the /etc/auto.media
104 floppy_dev=`grep floppy /etc/fstab | awk '{print $1}'`
124 echo "/AUTOFS/MEDIA /etc/auto.media" > /etc/auto.master
125 echo "floppy -fstype=ext2 :$floppy_dev" > /etc/auto.media
130 # Verify that "/etc/init.d/autofs start|restart|stop|status|reload"
137 /etc/init.d/autofs start
140 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
141 echo "FAILED: "/etc/init.d/autofs start""
[all …]
Dautofs4.sh91 # Pick the floppy device name from /etc/fstab
93 # Create the /etc/auto.master
94 # Create the /etc/auto.media
99 floppy_dev=`grep floppy /etc/fstab | awk '{print $1}'`
116 echo "/AUTOFS/MEDIA /etc/auto.media " > /etc/auto.master
117 echo "floppy -fstype=ext2 :$floppy_dev" > /etc/auto.media
122 # Verify that "/etc/init.d/autofs start|restart|stop|status|reload"
129 /etc/init.d/autofs start >/dev/null 2>&1
132 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
133 echo "FAILED: "/etc/init.d/autofs start""
[all …]
/third_party/icu/icu4c/source/test/testdata/
DtimezoneTypes.txt72 "Etc:GMT+0"{"Etc/GMT"}
73 "Etc:GMT-0"{"Etc/GMT"}
74 "Etc:GMT0"{"Etc/GMT"}
75 "Etc:Greenwich"{"Etc/GMT"}
76 "Etc:UCT"{"Etc/GMT"}
77 "Etc:UTC"{"Etc/GMT"}
78 "Etc:Universal"{"Etc/GMT"}
79 "Etc:Zulu"{"Etc/GMT"}
104 EST{"Etc/GMT+5"}
109 GMT{"Etc/GMT"}
[all …]
DwindowsZones.txt44 ZZ{"Etc/GMT-4"}
90 ZZ{"Etc/GMT+1"}
109 ZZ{"Etc/GMT+6"}
117 ZZ{"Etc/GMT-6"}
147 ZZ{"Etc/GMT-11"}
177 001{"Etc/GMT+12"}
178 ZZ{"Etc/GMT+12"}
195 ZZ{"Etc/GMT-3"}
294 ZZ{"Etc/GMT+10"}
442 ZZ{"Etc/GMT+3"}
[all …]
/third_party/skia/third_party/externals/icu/source/data/misc/
DtimezoneTypes.txt81 "Etc:GMT+0"{"Etc/GMT"}
82 "Etc:GMT-0"{"Etc/GMT"}
83 "Etc:GMT0"{"Etc/GMT"}
84 "Etc:Greenwich"{"Etc/GMT"}
85 "Etc:UCT"{"Etc/UTC"}
86 "Etc:Universal"{"Etc/UTC"}
87 "Etc:Zulu"{"Etc/UTC"}
112 EST{"Etc/GMT+5"}
117 GMT{"Etc/GMT"}
118 GMT+0{"Etc/GMT"}
[all …]
DwindowsZones.txt45 ZZ{"Etc/GMT-4"}
107 ZZ{"Etc/GMT+1"}
126 ZZ{"Etc/GMT+6"}
135 ZZ{"Etc/GMT-6"}
165 ZZ{"Etc/GMT-11"}
203 001{"Etc/GMT+12"}
204 ZZ{"Etc/GMT+12"}
219 ZZ{"Etc/GMT-3"}
330 ZZ{"Etc/GMT+10"}
363 ZZ{"Etc/GMT-14"}
[all …]
/third_party/icu/icu4c/source/data/misc/
DtimezoneTypes.txt124 "Etc:GMT+0"{"Etc/GMT"}
125 "Etc:GMT-0"{"Etc/GMT"}
126 "Etc:GMT0"{"Etc/GMT"}
127 "Etc:Greenwich"{"Etc/GMT"}
128 "Etc:UCT"{"Etc/UTC"}
129 "Etc:Universal"{"Etc/UTC"}
130 "Etc:Zulu"{"Etc/UTC"}
160 EST{"Etc/GMT+5"}
165 GMT{"Etc/GMT"}
166 GMT+0{"Etc/GMT"}
[all …]
DwindowsZones.txt45 ZZ{"Etc/GMT-4"}
107 ZZ{"Etc/GMT+1"}
126 ZZ{"Etc/GMT+6"}
134 ZZ{"Etc/GMT-6"}
164 ZZ{"Etc/GMT-11"}
199 001{"Etc/GMT+12"}
200 ZZ{"Etc/GMT+12"}
215 ZZ{"Etc/GMT-3"}
322 ZZ{"Etc/GMT+10"}
355 ZZ{"Etc/GMT-14"}
[all …]
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
Dlinkat.c30 int fd1 = creat("/etc/test.txt", CREAT_MODE); in linkat_0100()
38 int result = linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat.txt", AT_SYMLINK_FOLLOW); in linkat_0100()
40 EXPECT_EQ("linkat_0100", access("/etc/linkat.txt", F_OK), 0); in linkat_0100()
41 system("rm -f /etc/linkat.txt"); in linkat_0100()
51 int fd1 = creat("/etc/test.txt", CREAT_MODE); in linkat_0200()
53 if (access("/etc/linkat.txt", F_OK) != 0) { in linkat_0200()
54 system("touch /etc/test.txt"); in linkat_0200()
61 int result = linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat.txt", AT_SYMLINK_FOLLOW); in linkat_0200()
64 …EXPECT_NE("linkat_0200", linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat.txt", AT_SYMLINK_FOLLOW), … in linkat_0200()
66 system("rm -f /etc/linkat.txt"); in linkat_0200()
[all …]
Dlink.c29 system("touch /etc/a.txt"); in link_0100()
30 int result = link("/etc/a.txt", "/etc/a_link.txt"); in link_0100()
32 EXPECT_EQ("link_0100", access("/etc/a_link.txt", F_OK), 0); in link_0100()
33 system("rm -f /etc/a_link.txt"); in link_0100()
43 if (access("/etc/a_link.txt", F_OK) != 0) { in link_0200()
44 int result = link("/etc/a.txt", "/etc/a_link.txt"); in link_0200()
47 EXPECT_NE("link_0200", link("/etc/a.txt", "/etc/a_link.txt"), 0); in link_0200()
49 system("rm -f /etc/a_link.txt"); in link_0200()
63 if (access("/etc/a.txt", F_OK) == 0) { in link_0300()
64 system("rm -f /etc/a.txt"); in link_0300()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/format/
DTimeZoneAliases.txt63 Etc/GMT+0 ; Etc/GMT
64 Etc/GMT-0 ; Etc/GMT
65 Etc/GMT0 ; Etc/GMT
66 Etc/Greenwich ; Etc/GMT
67 Etc/Universal ; Etc/UTC
68 Etc/Zulu ; Etc/UTC
80 GMT ; Etc/GMT
81 GMT+0 ; Etc/GMT+0
82 GMT-0 ; Etc/GMT-0
83 GMT0 ; Etc/GMT0
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTimeZoneAliases.txt63 Etc/GMT+0 ; Etc/GMT
64 Etc/GMT-0 ; Etc/GMT
65 Etc/GMT0 ; Etc/GMT
66 Etc/Greenwich ; Etc/GMT
67 Etc/Universal ; Etc/UTC
68 Etc/Zulu ; Etc/UTC
80 GMT ; Etc/GMT
81 GMT+0 ; Etc/GMT+0
82 GMT-0 ; Etc/GMT-0
83 GMT0 ; Etc/GMT0
[all …]
/third_party/ltp/testcases/kdump/lib/
Dtest.sh197 echo "ext3 ${EXT3_PART}" >/etc/kdump.conf
199 echo "core_collector makedumpfile ${MAKE_OPTIONS}" >>/etc/kdump.conf
201 /etc/init.d/kdump restart
206 echo "ext3 LABEL=${EXT3_LABEL}" >/etc/kdump.conf
208 echo "core_collector makedumpfile ${MAKE_OPTIONS}" >>/etc/kdump.conf
210 /etc/init.d/kdump restart
215 echo "ext3 UUID=${EXT3_UID}" >/etc/kdump.conf
217 echo "core_collector makedumpfile ${MAKE_OPTIONS}" >>/etc/kdump.conf
219 /etc/init.d/kdump restart
224 echo "raw ${RAW_PART}" >/etc/kdump.conf
[all …]
/third_party/toybox/tests/
Duseradd.test25 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] &&
31 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] &&
37 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] &&
43 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] &&
50 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] &&
56 grep '^$user:.*dir' /etc/passwd $arg && [ -d $PWD/dir ] &&
63 grep '^$user:.*$gecos' /etc/passwd $arg && [ -d /home/$user ] &&
69 grep '^$user:.*$shl$' /etc/passwd $arg && [ -d /home/$user ] &&
74 g_id=`grep $g_name':.*:.*' /etc/group | cut -d : -f 3`
76 grep '^$user:.*:.*:$g_id:.*' /etc/passwd $arg && [ -d /home/$user ] &&
[all …]
Dgroupadd.test26 grep '^toyTestGroup:' /etc/group $arg && groupdel toyTestGroup $arg &&
29 grep '^toy1Test2Group3:' /etc/group $arg && groupdel toy1Test2Group3 $arg &&
32 grep '^987654321:' /etc/group $arg && groupdel 987654321 $arg &&
35 grep '^toy.1Test-2Group.3:' /etc/group $arg &&
40 grep '^$_s210:' /etc/group $arg && groupdel $_s210 $arg && echo 'yes'" \
43 grep '^toyTestGroup:' /etc/group $arg && groupdel toyTestGroup $arg &&
46 "groupadd -g 49999 -S toyTestGroup && grep '^toyTestGroup:' /etc/group $arg &&
49 grep '^toyTestGroup:' /etc/group $arg && groupdel toyTestGroup $arg &&
52 grep '^toyTestGroup:' /etc/group $arg && groupadd $USER toyTestGroup &&
53 grep '^toyTestGroup:.*:.*:.*$USER.*' /etc/group $arg &&
[all …]
/third_party/skia/third_party/externals/angle2/extensions/
DANGLE_lossy_etc_decode.txt39 specify that Ericsson Texture Compression (ETC) decoding must not be lossy.
41 compressed textures in the ETC formats in OpenGL ES, for lower memory
44 This extension uses the same ETC compression format as OpenGL ES 3.0
47 dimensions are either 2 or 1). And the requirement that ETC decoding must
51 Also see OpenGL ES 3.0 specification appendix C.2 (ETC Compressed Texture
104 If <internalformat> is one of the ETC lossy decode formats listed in
107 The GL and the ETC texture compression algorithm support only 2D images
111 <internalformat> is one of the lossy decode ETC-format values from
121 If the internal format of the texture image being modified is an ETC-format
124 4x4 texel block boundaries, since ETC encoding makes it difficult to modify
[all …]
/third_party/node/deps/npm/node_modules/cssesc/
DREADME.md91 cssesc('Lorem ipsum "dolor" sit \'amet\' etc.');
92 // → 'Lorem ipsum "dolor" sit \\\'amet\\\' etc.'
93 // → "Lorem ipsum \"dolor\" sit \\'amet\\' etc."
95 cssesc('Lorem ipsum "dolor" sit \'amet\' etc.', {
98 // → 'Lorem ipsum "dolor" sit \\\'amet\\\' etc.'
99 // → "Lorem ipsum \"dolor\" sit \\'amet\\' etc."
105 cssesc('Lorem ipsum "dolor" sit \'amet\' etc.', {
108 // → 'Lorem ipsum \\"dolor\\" sit \'amet\' etc.'
109 // → "Lorem ipsum \\\"dolor\\\" sit 'amet' etc."
117 cssesc('Lorem ipsum "dolor" sit \'amet\' etc.', {
[all …]
/third_party/mesa3d/.gitlab-ci/container/
Dcreate-rootfs.sh119 rm -rf /etc/localtime
120 cp /usr/share/zoneinfo/Etc/UTC /etc/localtime
143 # Dropping documentation, localization, i18n files, etc
222 rm -rf etc/apt
223 rm -rf etc/dpkg
230 # ca-certificates are in /etc drop the source
243 rm -rf etc/init.d
244 rm -rf etc/rc[0-6S].d
247 rm -rf etc/init
263 find usr etc -name '*systemd-resolve*' -prune -exec rm -r {} \;
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/doc/docbook/
Dwpa_supplicant.conf.sgml68 ca_cert="/etc/cert/ca.pem"
69 client_cert="/etc/cert/user.pem"
70 private_key="/etc/cert/user.prv"
90 ca_cert="/etc/cert/ca.pem"
113 ca_cert="/etc/cert/ca.pem"
133 ca_cert="/etc/cert/ca.pem"
134 client_cert="/etc/cert/user.pem"
135 private_key="/etc/cert/user.prv"
162 ca_cert="/etc/cert/ca.pem"
163 client_cert="/etc/cert/user.pem"
[all …]
/third_party/ltp/testcases/kernel/security/integrity/ima/
DREADME.md95 # mkdir /etc/keys
97 # keyctl pipe "$user_key" > /etc/keys/kmk-user.blob
99 # keyctl pipe "$evm_key" >/etc/keys/evm.blob
100 # cat <<END >/etc/sysconfig/masterkey
102 MASTERKEY="/etc/keys/kmk-user.blob"
104 # cat <<END >/etc/sysconfig/evm
105 EVMKEY="/etc/keys/evm.blob"
114 # cp -r /etc/keys /mnt/etc/ # Debian based distributions: use /target instead of /mnt
115 # cp /etc/sysconfig/{evm,masterkey} /mnt/etc/sysconfig/
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Ddtfmtsym.h240 * Gets month strings. For example: "January", "February", etc.
248 * Sets month strings. For example: "January", "February", etc.
257 * Gets short month strings. For example: "Jan", "Feb", etc.
266 * Sets short month strings. For example: "Jan", "Feb", etc.
312 * Gets month strings by width and context. For example: "January", "February", etc.
322 * Sets month strings by width and context. For example: "January", "February", etc.
333 * Gets wide weekday strings. For example: "Sunday", "Monday", etc.
342 * Sets wide weekday strings. For example: "Sunday", "Monday", etc.
350 * Gets abbreviated weekday strings. For example: "Sun", "Mon", etc. (Note: The method name is
351 * misleading; it does not get the CLDR-style "short" weekday strings, e.g. "Su", "Mo", etc.)
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/doc/docbook/
Dwpa_supplicant.conf.sgml72 ca_cert="/etc/cert/ca.pem"
73 client_cert="/etc/cert/user.pem"
74 private_key="/etc/cert/user.prv"
94 ca_cert="/etc/cert/ca.pem"
117 ca_cert="/etc/cert/ca.pem"
137 ca_cert="/etc/cert/ca.pem"
138 client_cert="/etc/cert/user.pem"
139 private_key="/etc/cert/user.prv"
166 ca_cert="/etc/cert/ca.pem"
167 client_cert="/etc/cert/user.pem"
[all …]
/third_party/node/deps/icu-small/source/i18n/unicode/
Ddtfmtsym.h240 * Gets month strings. For example: "January", "February", etc.
248 * Sets month strings. For example: "January", "February", etc.
257 * Gets short month strings. For example: "Jan", "Feb", etc.
266 * Sets short month strings. For example: "Jan", "Feb", etc.
312 * Gets month strings by width and context. For example: "January", "February", etc.
322 * Sets month strings by width and context. For example: "January", "February", etc.
333 * Gets wide weekday strings. For example: "Sunday", "Monday", etc.
342 * Sets wide weekday strings. For example: "Sunday", "Monday", etc.
350 * Gets abbreviated weekday strings. For example: "Sun", "Mon", etc. (Note: The method name is
351 * misleading; it does not get the CLDR-style "short" weekday strings, e.g. "Su", "Mo", etc.)
[all …]

12345678910>>...175