- Sort Score
- Result 10 results
- Languages All
Results 891 - 900 of 5,095 for tstring (0.23 sec)
-
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
* * @return The highlight parameters string */ public String getAppendHighlightParams() { return appendHighlightParams; } /** * Gets the formatted execution time for the search request. * * @return The formatted execution time string */ public String getExecTime() { return execTime; } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProvider.java
// Basic Override // ============== @Override public String toString() { final String hash = Integer.toHexString(hashCode()); return DfTypeUtil.toClassTitle(this) + ":{acceptCookieLocale=" + isAcceptCookieLocale() + "}@" + hash; }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
assertEquals(0, read); } @Test @DisplayName("Test toString method with SMB_INFO_ALLOCATION") void testToStringWithSmbInfoAllocation() { trans2QueryFSInfo = new Trans2QueryFSInformation(config, FileSystemInformation.SMB_INFO_ALLOCATION); String result = trans2QueryFSInfo.toString(); assertNotNull(result);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/ValueHolder.java
* * @param value * The value */ public void setValue(final T value) { this.value = value; } @Override public String toString() { return value.toString(); }Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryTest.java
public void setInitParameterMap(final Map<String, Object> params) { buf.append("value=").append(params.get("hoge")); } }); clientFactory.setInitParameterMap(paramMap); assertEquals("value=test", buf.toString()); } public void test_getClient_null() { String url; CrawlerClient client; url = null;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
} String longMessage = sb.toString(); ThemeException exception = new ThemeException(longMessage); assertNotNull(exception); assertEquals(longMessage, exception.getMessage()); } public void test_throwAndCatch() { // Test throwing and catching the exception String expectedMessage = "Theme loading error"; try {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
@Override public String toString() { String opCodeString, resultCodeString, questionTypeString; final String questionClassString; String recordTypeString; final String recordClassString; opCodeString = switch (opCode) { case QUERY -> "QUERY"; case WACK -> "WACK"; default -> Integer.toString(opCode); };Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
assertTrue(exception.getMessage().contains(cause.getClass().getName())); assertTrue(exception.getMessage().contains("Cause exception")); } public void test_constructor_withNullMessage() { // Test constructor with null message FessSystemException exception = new FessSystemException((String) null); assertNull(exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
* @return the hexadecimal string representation */ public static String bin_to_hex(int value, final int length) { final char[] arr = new char[length]; int ai = arr.length; while (ai-- > 0) { arr[ai] = HEXCHARS[value & 0xF]; value >>>= 4; } return new String(arr); } private static byte B(final int i) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/UserInfo.java
} public String getLogMessage() { return getId(); } public LocalDateTime getRequestedAt() { return getUpdatedAt(); } public void addField(final String key, final Object value) { fields.put(key, value); } @Override public Map<String, Object> toSource() { final Map<String, Object> sourceMap = super.toSource();Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.6K bytes - Viewed (0)