- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for enc (0.01 sec)
-
android/guava-tests/test/com/google/common/io/BaseEncodingTest.java
BaseEncoding enc = base32().withPadChar('~'); testEncodingWithCasing(enc, "", ""); testEncodingWithCasing(enc, "f", "MY~~~~~~"); testEncodingWithCasing(enc, "fo", "MZXQ~~~~"); testEncodingWithCasing(enc, "foo", "MZXW6~~~"); testEncodingWithCasing(enc, "foob", "MZXW6YQ~"); testEncodingWithCasing(enc, "fooba", "MZXW6YTB"); testEncodingWithCasing(enc, "foobar", "MZXW6YTBOI~~~~~~"); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/BaseEncodingTest.java
BaseEncoding enc = base32().withPadChar('~'); testEncodingWithCasing(enc, "", ""); testEncodingWithCasing(enc, "f", "MY~~~~~~"); testEncodingWithCasing(enc, "fo", "MZXQ~~~~"); testEncodingWithCasing(enc, "foo", "MZXW6~~~"); testEncodingWithCasing(enc, "foob", "MZXW6YQ~"); testEncodingWithCasing(enc, "fooba", "MZXW6YTB"); testEncodingWithCasing(enc, "foobar", "MZXW6YTBOI~~~~~~"); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
if (pageEnc != null) { enc = pageEnc; } else if (urlQueue.getEncoding() != null) { enc = urlQueue.getEncoding(); } } } } else { enc = fessConfig.getCrawlerDocumentFileNameEncoding(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
* @param request the HTTP request containing the query string * @param enc the character encoding to use for decoding * @return a map of parameter names to their decoded values * @throws IOException if an error occurs during parameter parsing */ protected Map<String, String[]> getParameterMapFromQueryString(final HttpServletRequest request, final String enc) throws IOException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
cmd/callhome.go
header := struct { Version string `json:"version"` }{Version: healthInfo.Version} enc := json.NewEncoder(gzWriter) if e := enc.Encode(header); e != nil { internalLogIf(ctx, fmt.Errorf("Could not encode health info header: %w", e)) return nil } if e := enc.Encode(healthInfo); e != nil { internalLogIf(ctx, fmt.Errorf("Could not encode health info: %w", e)) return nil }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.3K bytes - Viewed (0)