- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 1,673 for Docstring (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java
data.putValue(key, getDecodeText(value.toString())); } else { data.putValue(key, value.toString()); } } else if (value instanceof String[]) { data.putValues(key, (String[]) value); } else if (value instanceof Integer) { data.putValue(key, ((Integer) value).toString()); } else if (value instanceof Address[]) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileAuthenticationBhv.java
result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy"))); result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime"))); result.setFileConfigId(DfTypeUtil.toString(source.get("fileConfigId"))); result.setHostname(DfTypeUtil.toString(source.get("hostname"))); result.setParameters(DfTypeUtil.toString(source.get("parameters")));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
final String execTime = data.getExecTime(); final String queryTime = Long.toString(data.getQueryTime()); final String pageSize = Integer.toString(data.getPageSize()); final String currentPageNumber = Integer.toString(data.getCurrentPageNumber()); final String allRecordCount = Long.toString(data.getAllRecordCount()); final String allRecordCountRelation = data.getAllRecordCountRelation();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (1) -
src/test/java/jcifs/smb1/smb1/SmbExceptionTest.java
/** * Verify that {@link #toString()} with no root cause equals the default * {@code IOException#toString()}. */ @Test @DisplayName("toString without root cause matches IOException#toString") void testToStringWithoutRootCause() { SmbException ex = new SmbException(0, false); assertEquals("jcifs.smb1.smb1.SmbException: NT_STATUS_SUCCESS", ex.toString()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileConfigDbm.java
setupEpg(_epgMap, et -> ((FileConfig) et).getIncludedDocPaths(), (et, vl) -> ((FileConfig) et).setIncludedDocPaths(DfTypeUtil.toString(vl)), "includedDocPaths"); setupEpg(_epgMap, et -> ((FileConfig) et).getIncludedPaths(), (et, vl) -> ((FileConfig) et).setIncludedPaths(DfTypeUtil.toString(vl)), "includedPaths");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlExceptionTest.java
String message = "Test error message"; CurlException exception = new CurlException(message); String toString = exception.toString(); assertNotNull(toString); assertTrue(toString.contains("CurlException")); assertTrue(toString.contains(message)); } @Test public void testStackTrace() {
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 4.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java
T proxy = new FreshValueGenerator().newFreshProxy(interfaceType); assertEquals( "toString() isn't properly forwarded", proxy.toString(), wrapperFunction.apply(proxy).toString()); } private static @Nullable Object[] getParameterValues(Method method) { FreshValueGenerator paramValues = new FreshValueGenerator();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 9.1K bytes - Viewed (0) -
android/guava/src/com/google/common/base/MoreObjects.java
* * <p>This is helpful for implementing {@link Object#toString()}. Specification by example: * * {@snippet : * // Returns "ClassName{}" * MoreObjects.toStringHelper(this) * .toString(); * * // Returns "ClassName{x=1}" * MoreObjects.toStringHelper(this) * .add("x", 1) * .toString(); * * // Returns "MyObject{x=1}" * MoreObjects.toStringHelper("MyObject")
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileAuthenticationDbm.java
setupEpg(_epgMap, et -> ((FileAuthentication) et).getParameters(), (et, vl) -> ((FileAuthentication) et).setParameters(DfTypeUtil.toString(vl)), "parameters"); setupEpg(_epgMap, et -> ((FileAuthentication) et).getPassword(), (et, vl) -> ((FileAuthentication) et).setPassword(DfTypeUtil.toString(vl)), "password");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/ProtocolTest.kt
fun testToString() { assertThat(Protocol.HTTP_1_0.toString()).isEqualTo("http/1.0") assertThat(Protocol.HTTP_1_1.toString()).isEqualTo("http/1.1") assertThat(Protocol.SPDY_3.toString()).isEqualTo("spdy/3.1") assertThat(Protocol.HTTP_2.toString()).isEqualTo("h2") assertThat(Protocol.H2_PRIOR_KNOWLEDGE.toString()) .isEqualTo("h2_prior_knowledge") assertThat(Protocol.QUIC.toString()).isEqualTo("quic")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 1.9K bytes - Viewed (0)