- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 338 for charactersOf (0.05 sec)
-
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
System.arraycopy(buffer, Smb2Constants.SMB2_HEADER_LENGTH + 8, actualPath, 0, pathBytes.length); assertArrayEquals(pathBytes, actualPath); } @Test @DisplayName("Should handle Unicode characters in path") void testUnicodePathHandling() throws Exception { // Given String unicodePath = "\\\\server\\共享文件夹\\テスト";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
assertEquals(expectedFilename, fileBothDirectoryInfo.getFilename()); } @Test @DisplayName("Test decode with special characters in filename") void testDecodeWithSpecialCharactersInFilename() throws SMBProtocolDecodingException { // Prepare test data with special characters String expectedFilename = "file-name_2024#******@****.***";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.9K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameTest.java
void writeWireFormat_withMaxLengthName_shouldHandleCorrectly() { String maxName = "123456789012345"; // 15 characters Name name = new Name(mockConfig, maxName, 0x20, null); byte[] dst = new byte[100]; int length = name.writeWireFormat(dst, 0); // Should encode all 15 characters assertTrue(length >= 34); assertEquals(0x20, dst[0]); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
</dependency> ``` ## Version 3.3.1 _2016-05-28_ * Fix: The plaintext check in HttpLoggingInterceptor incorrectly classified newline characters as control characters. This is fixed. * Fix: Don't crash reading non-ASCII characters in HTTP/2 headers or in cached HTTP headers. * Fix: Retain the response body when an attempt to open a web socket returns a non-101 response code.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Name.java
static final String OEM_ENCODING = Config.getProperty("jcifs.smb1.encoding", Charset.defaultCharset().displayName()); /** The NetBIOS name (up to 15 characters) */ public String name; /** The NetBIOS scope identifier */ public String scope; /** The NetBIOS name type/suffix (hexadecimal code) */ public int hexCode;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
assertEquals("Not Found: Parent: ", exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withSpecialCharacters() { // Test with URLs containing special characters String parentUrl = "http://example.com/parent?query=test&id=123"; String url = "http://example.com/child#fragment"; ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.8K bytes - Viewed (0) -
docs/en/docs/advanced/security/http-basic-auth.md
`secrets.compare_digest()` needs to take `bytes` or a `str` that only contains ASCII characters (the ones in English), this means it wouldn't work with characters like `á`, as in `Sebastián`. To handle that, we first convert the `username` and `password` to `bytes` encoding them with UTF-8.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 5K bytes - Viewed (0) -
cmd/build-constants.go
// ReleaseTag - release tag in TAG.%Y-%m-%dT%H-%M-%SZ. ReleaseTag = "DEVELOPMENT.GOGET" // CommitID - latest commit id. CommitID = "DEVELOPMENT.GOGET" // ShortCommitID - first 12 characters from CommitID. ShortCommitID = "DEVELOPMENT.GOGET" // CopyrightYear - dynamic value of the copyright end year CopyrightYear = "0000" // MinioReleaseTagTimeLayout - release tag time layout.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed May 01 17:57:52 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/UploadForm.java
*/ @Required public MultipartFormFile designFile; /** * The name for the design file being uploaded. * Must not contain invalid file system characters like backslash, colon, asterisk, etc. */ @Pattern(regexp = "^[^\\\\|/|:|\\*|?|\"|<|>|\\|]+$", message = "{errors.design_file_name_is_invalid}") public String designFileName; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FessAppService.java
public abstract class FessAppService { /** * Default constructor. */ public FessAppService() { // Default constructor } /** * Wraps a query string with wildcard characters to enable partial matching. * This method ensures that the query string is surrounded by asterisks (*) * to support prefix and suffix matching in search operations. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)