- Sort Score
- Result 10 results
- Languages All
Results 711 - 720 of 745 for utf8 (0.02 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 113.6K bytes - Viewed (0) -
docs/sts/web-identity.md
``` ## Sample Response ``` <?xml version="1.0" encoding="UTF-8"?> <AssumeRoleWithWebIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> <AssumeRoleWithWebIdentityResult> <AssumedRoleUser> <Arn/> <AssumeRoleId/> </AssumedRoleUser>
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
cmd/api-errors.go
HTTPStatusCode: http.StatusBadRequest, }, ErrFilterValueInvalid: { Code: "InvalidArgument", Description: "Size of filter rule value cannot exceed 1024 bytes in UTF-8 representation", HTTPStatusCode: http.StatusBadRequest, }, ErrOverlappingConfigs: { Code: "InvalidArgument",
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 93K bytes - Viewed (1) -
src/test/java/jcifs/netbios/NameTest.java
@BeforeEach void setUp() { // Setup default mock behavior lenient().when(mockConfig.getNetbiosScope()).thenReturn("DEFAULT.SCOPE"); lenient().when(mockConfig.getOemEncoding()).thenReturn("UTF-8"); } @Test void constructor_withConfigOnly_shouldInitializeFields() throws Exception { Name name = new Name(mockConfig); Field configField = Name.class.getDeclaredField("config");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbRandomAccessFileTest.java
doNothing().when(raf).write(any(byte[].class), anyInt(), anyInt()); doNothing().when(raf).writeShort(anyInt()); raf.writeUTF("é"); // 2-byte UTF-8 char // size prefix should be 2, and then write called with len=2 verify(raf).writeShort(eq(2)); verify(raf).write(any(byte[].class), eq(0), eq(2)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
final String encodedName = URLEncoder.encode(name, Constants.UTF_8_CHARSET).replace("+", "%20"); response.header("Content-Disposition", "attachment; filename=\"" + name + "\"; filename*=utf-8''" + encodedName); response.header("Pragma", "no-cache"); response.header("Cache-Control", "no-cache"); response.header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertEquals("test", systemHelper.normalizeConfigPath(" test ")); } public void test_encodeUrlFilter_specialChars() { systemHelper.filterPathEncoding = "UTF-8"; String result = systemHelper.encodeUrlFilter("test{}|\\"); assertEquals("test{}|\\", result); result = systemHelper.encodeUrlFilter("test^path");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
String password = npa.getPassword(); String userInfo = this.url.getUserInfo(); if (userInfo != null) { userInfo = URLDecoder.decode(userInfo, "UTF-8"); int index = userInfo.indexOf(':'); user = index != -1 ? userInfo.substring(0, index) : userInfo; if (index != -1) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
} try { final String json = mapper.writeValueAsString(compactList); final byte[] compressed = gzipCompress(json.getBytes(StandardCharsets.UTF_8)); return Base64.getUrlEncoder().withoutPadding().encodeToString(compressed); } catch (final Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
viewHelper.setActionHook(actionHook); assertEquals(actionHook, viewHelper.getActionHook()); viewHelper.setEncodeUrlLink(true); viewHelper.setUrlLinkEncoding("UTF-8"); viewHelper.setOriginalHighlightTagPre("<mark>"); viewHelper.setOriginalHighlightTagPost("</mark>"); viewHelper.setCacheTemplateName("cache"); viewHelper.setFacetCacheDuration(600L);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0)