- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 67 for formatted (0.04 sec)
-
src/test/java/jcifs/dcerpc/UUIDTest.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
* * @param bulkResponse The bulk response containing potential failures. * @param ignoreAlreadyExists Whether to ignore already existing document failures. * @return The formatted failure message, or empty string if no failures to report. */ protected String buildFailureMessage(final BulkResponse bulkResponse, final boolean ignoreAlreadyExists) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 34.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java
String str = info.toString(); // Verify type is displayed as hex assertNotNull(str); assertTrue(str.contains("type=0x")); // The type should be formatted as 8-character hex String expectedHex = String.format("%08x", type); assertTrue(str.toLowerCase().contains(expectedHex)); } @Test @DisplayName("Test with empty strings")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
* The extracted data is then formatted into an XML structure suitable for indexing. * </p> * * <p> * The class uses a cache for XPathAPI objects to improve performance. The cache duration is configurable. * </p> * * <p> * The transform method takes a ResponseData object containing the XML content and returns a ResultData object with the extracted and formatted data. * </p> * * <p>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/IpAddressUtil.java
/** * Formats an IP address string for use in a URL. * IPv6 addresses are wrapped in brackets, IPv4 addresses are returned as-is. * * @param address the IP address string to format * @return the formatted address (IPv6 with brackets, IPv4 unchanged) */ public static String formatForUrl(final String address) { if (address == null) { return null; } if (isIPv6Address(address)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 08:31:03 UTC 2025 - 9.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java
* * <p>This method is designed to be resilient to malformed robots.txt files. * It will parse valid directives and ignore invalid ones, ensuring that partial * content can be extracted even from poorly formatted files.</p> * * <p>The following errors are handled gracefully (line is skipped, parsing continues):</p> * <ul> * <li>Invalid directive formats</li> * <li>Unknown directives</li>Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java
// Act int result = response.readDataWireFormat(buffer, bufferIndex, len); // Assert assertEquals(0, result); } @Test @DisplayName("toString should return formatted string") void testToString() { // Act String result = response.toString(); // Assert assertNotNull(result);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmSspTest.java
/** * Creates a valid Type 3 NTLM message for testing */ private static String createValidType3Message() { // Build a properly formatted Type 3 message byte[] message = new byte[200]; // NTLMSSP signature System.arraycopy("NTLMSSP\0".getBytes(), 0, message, 0, 8); // Type 3 indicator message[8] = 0x03;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.4K bytes - Viewed (1) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
// Test empty path request.setPath(""); assertEquals("\\", request.getPath()); } @Test @DisplayName("Test getPath returns correct formatted path") void testGetPath() { request = new Smb2CreateRequest(mockConfig, "share\\file.txt"); assertEquals("\\share\\file.txt", request.getPath()); request.setPath("newpath\\newfile.txt");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
// Then assertEquals(0, result); } } /** * Test toString method */ @Test @DisplayName("Test toString returns properly formatted string") public void testToString() { // Given smbComTreeDisconnect = new SmbComTreeDisconnect(config); // When String result = smbComTreeDisconnect.toString();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.5K bytes - Viewed (0)