- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 596 for Characters (0.08 sec)
-
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
assertEquals("Second instance", exception2.getMessage()); assertEquals("Third instance", exception3.getMessage()); } public void test_specialCharactersInMessage() { // Test with special characters in message String messageWithSpecialChars = "Error: offset > 1000 && offset < 2000 | \"quotes\" 'single' \n\t tab"; ResultOffsetExceededException exception = new ResultOffsetExceededException(messageWithSpecialChars);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/ItemForm.java
public String path; /** * Default constructor. */ public ItemForm() { // Default constructor } /** The name of the storage item, limited to 100 characters */ @Size(max = 100) public String name; /** The file to be uploaded for the storage item */ public MultipartFormFile uploadFile;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java
@CanIgnoreReturnValue public B named(String name) { if (name.contains("(")) { throw new IllegalArgumentException( "Eclipse hides all characters after " + "'('; please use '[]' or other characters instead of parentheses"); } this.name = name; return self(); } public String getName() { return name; } // Test suppression
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComRenameTest.java
assertEquals((byte) 0x04, dst[2]); // Second buffer format byte } /** * Test writeBytesWireFormat with special characters in file names */ @Test @DisplayName("Test writeBytesWireFormat with special characters in file names") public void testWriteBytesWireFormatSpecialCharacters() { // Given String oldFileName = "file with spaces.txt";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K 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) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
assertNotNull(enumInstance.info); } } @Test @DisplayName("getEntries should properly convert DFS roots with special characters") void testGetEntries_specialCharacters() throws Exception { // Create array with special character names netdfs.DfsEnumArray200 specialArray = new netdfs.DfsEnumArray200(); specialArray.count = 3; specialArray.s = new netdfs.DfsInfo200[3];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java
public String id; /** * The username of the user who last updated this web authentication configuration. * Used for audit trail purposes to track who made changes. * Maximum length is 255 characters. */ @Size(max = 255) public String updatedBy; /** * The timestamp when this web authentication configuration was last updated.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/io/Files.java
* Returns a new {@link CharSource} for reading character data from the given file using the given * character set. * * @since 14.0 */ public static CharSource asCharSource(File file, Charset charset) { return asByteSource(file).asCharSource(charset); } /** * Returns a new {@link CharSink} for writing character data to the given file using the given
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
docs/en/docs/tutorial/header-params.md
`Header` has a little extra functionality on top of what `Path`, `Query` and `Cookie` provide. Most of the standard headers are separated by a "hyphen" character, also known as the "minus symbol" (`-`). But a variable like `user-agent` is invalid in Python. So, by default, `Header` will convert the parameter names characters from underscore (`_`) to hyphen (`-`) to extract and document the headers.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3K 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)