- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for 0xefbbbf (0.06 sec)
-
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<!-- UTF-16BE BOM --> <match value="0xfeff" type="string" offset="0"/> <!-- UTF-16LE BOM --> <match value="0xfffe" type="string" offset="0"/> <!-- UTF-8 BOM --> <match value="0xefbbbf" type="string" offset="0"/> </magic> <glob pattern="*.txt"/> <glob pattern="*.text"/> <glob pattern="*.def"/> <glob pattern="*.list"/> <glob pattern="*.in"/>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Sep 21 06:46:43 UTC 2023 - 298.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt
return candidate } @JvmField val EMPTY_BYTE_ARRAY: ByteArray = ByteArray(0) /** Byte order marks. */ internal val UNICODE_BOMS = Options.of( // UTF-8. "efbbbf".decodeHex(), // UTF-16BE. "feff".decodeHex(), // UTF-32LE. "fffe0000".decodeHex(), // UTF-16LE. "fffe".decodeHex(), // UTF-32BE. "0000feff".decodeHex(), ) /**
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon May 13 13:42:37 UTC 2024 - 11K bytes - Viewed (0)