- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for xenc (0.02 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/EncodingHelperTest.java
enc = "UTF-8"; assertEquals("UTF-8", encodingHelper.normalize(enc)); enc = "Shift_JIS"; assertEquals("Shift_JIS", encodingHelper.normalize(enc)); enc = "S-JIS"; assertEquals("Shift_JIS", encodingHelper.normalize(enc)); } public void test_normalize_null() { String enc; enc = null; assertNull(encodingHelper.normalize(enc));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvSingleHost.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
docs/site-replication/run-ssec-object-replication-with-compression.sh
echo "Loading objects to source MinIO instance" ./mc cp /tmp/data/plainfile minio1/test-bucket --insecure ./mc cp /tmp/data/encrypted minio1/test-bucket/encrypted --enc-c "minio1/test-bucket/encrypted=${TEST_MINIO_ENC_KEY}" --insecure ./mc cp /tmp/data/defpartsize minio1/test-bucket/defpartsize --enc-c "minio1/test-bucket/defpartsize=${TEST_MINIO_ENC_KEY}" --insecure # Below should fail as compression and SSEC used at the same time
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/net/URLUtil.java
* @param enc * The encoding scheme. Must not be {@literal null} or empty. * @return The string encoded in <code>application/x-www-form-urlencoded</code> format. */ public static String encode(final String s, final String enc) { assertArgumentNotEmpty("s", s); assertArgumentNotEmpty("enc", enc); try {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/EncodableTest.java
void encodeZeroLengthDoesNotModifyDestination() { byte[] src = makeSeq(10); Encodable enc = new ByteEncodable(src, 5, 0); // zero length byte[] dst = new byte[8]; Arrays.fill(dst, (byte) 0x7A); int written = enc.encode(dst, 3); assertEquals(0, enc.size(), "size() must be zero"); assertEquals(0, written, "encode() must return zero for zero length");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0) -
buildscripts/heal-manual.go
} start, _, err := madmClnt.Heal(context.Background(), "healing-rewrite-bucket", "", opts, "", false, false) if err != nil { log.Fatalln(err) } fmt.Println("Healstart sequence ===") enc := json.NewEncoder(os.Stdout) if err = enc.Encode(&start); err != nil { log.Fatalln(err) } fmt.Println() for { _, status, err := madmClnt.Heal(context.Background(), "healing-rewrite-bucket", "", opts, start.ClientToken, false, false)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 27 09:47:58 UTC 2024 - 2.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/EncodingHelper.java
* * @param enc the encoding string to normalize * @return the normalized encoding or the default encoding if the input is blank */ public String normalize(final String enc) { if (StringUtil.isBlank(enc)) { return defaultEncoding; } final String newEnc = encodingMap.get(toLowerCase(enc)); if (StringUtil.isBlank(newEnc)) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
} buf.append("; charset="); final String enc; if (encoding == null) { enc = LaRequestUtil.getOptionalRequest().map(HttpServletRequest::getCharacterEncoding).orElse(Constants.UTF_8); } else { enc = encoding; } buf.append(enc); final HttpServletResponse response = LaResponseUtil.getResponse();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/TextTransformer.java
} } private String getResourceName(final ResponseData responseData) { String name = responseData.getUrl(); final String enc = responseData.getCharSet(); if (name == null || enc == null) { return null; } name = name.replaceAll("/+$", ""); final int idx = name.lastIndexOf('/'); if (idx >= 0) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvPairs.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0)