- Sort Score
- Result 10 results
- Languages All
Results 1291 - 1300 of 1,673 for Docstring (0.04 sec)
-
guava-tests/test/com/google/common/collect/HashMultisetTest.java
Multiset<MultisetHolder> copy = SerializableTester.reserialize(multiset); assertEquals(2, copy.size()); assertSame(copy, copy.iterator().next().member); } /* * The behavior of toString() and iteration is tested by LinkedHashMultiset, * which shares a lot of code with HashMultiset and has deterministic * iteration order. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt
} @Throws(IOException::class) fun writeTo(editor: DiskLruCache.Editor) { editor.newSink(ENTRY_METADATA).buffer().use { sink -> sink.writeUtf8(url.toString()).writeByte('\n'.code) sink.writeUtf8(requestMethod).writeByte('\n'.code) sink.writeDecimalLong(varyHeaders.size.toLong()).writeByte('\n'.code) for (i in 0 until varyHeaders.size) { sink
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 26.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
final String redirectUrl; if (urlConvertHelper != null) { redirectUrl = urlConvertHelper.convert(redirectUrlObj.toString()); } else { logger.warn("urlConvertHelper is null."); redirectUrl = redirectUrlObj.toString(); } resultData.addUrl(RequestDataBuilder.newRequestData().get().url(redirectUrl).build()); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0) -
okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt
} } } } return IdnaMappingTableData( sections = sectionIndexBuffer.readUtf8(), ranges = rangesBuffer.readUtf8(), mappings = mappingsBuffer.toString(), ) } /** * If [mapping] qualifies to be encoded as [MappedRange.InlineDelta] return new instance, otherwise null.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 8.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java
} return urlFilterService; } /** * Returns a string representation of this object. * @return A string representation. */ @Override public String toString() { return "UrlFilterImpl [urlPattern=" + urlPattern + ", includeFilteringPattern=" + includeFilteringPattern
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.2K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/EventBus.java
// the event had no subscribers and was not itself a DeadEvent post(new DeadEvent(this, event)); } } @Override public String toString() { return MoreObjects.toStringHelper(this).addValue(identifier).toString(); } /** Simple logging handler for subscriber exceptions. */ static final class LoggingHandler implements SubscriberExceptionHandler {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
this.lastHealthCheck = System.currentTimeMillis(); } public long getLastHealthCheck() { return lastHealthCheck; } @Override public String toString() { return String.format("ChannelInfo{id=%s, local=%s, remote=%s, active=%d, healthy=%s}", channelId, localAddress, remoteAddress, activeConnections.get(), isHealthy); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
StringBuilder sb = new StringBuilder(); for (int i = 0; i < 500; i++) { sb.append("0123456789"); } String longText = sb.toString(); String id = SuggestUtil.createSuggestTextId(longText); assertNotNull(id); assertEquals(445, id.length()); // Should be truncated to ID_MAX_LENGTH } @Test
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 18.2K bytes - Viewed (0) -
api/go1.10.txt
pkg debug/macho, method (RelocTypeARM) GoString() string pkg debug/macho, method (RelocTypeARM) String() string pkg debug/macho, method (RelocTypeARM64) GoString() string pkg debug/macho, method (RelocTypeARM64) String() string pkg debug/macho, method (RelocTypeGeneric) GoString() string pkg debug/macho, method (RelocTypeGeneric) String() string pkg debug/macho, method (RelocTypeX86_64) GoString() string
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Feb 06 05:00:01 UTC 2018 - 30.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
this.authResult = authResult; } @Override public String getUserId() { return authResult.account().username(); } @Override public String toString() { return "{" + authResult.account().username() + "}"; } /** * Gets the Azure AD user associated with this credential. * @return The Azure AD user instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0)