- Sort Score
- Num 10 results
- Language All
Results 251 - 260 of 493 for _append (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/collect/Range.java
return toString(lowerBound, upperBound); } private static String toString(Cut<?> lowerBound, Cut<?> upperBound) { StringBuilder sb = new StringBuilder(16); lowerBound.describeAsLowerBound(sb); sb.append(".."); upperBound.describeAsUpperBound(sb); return sb.toString(); } // We declare accessors so that we can use method references like `Range::lowerBound`. Cut<C> lowerBound() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 28K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/LinkedHashMultimap.java
return false; } } ValueEntry<K, V> newEntry = new ValueEntry<>(key, value, smearedHash, rowHead); appendToValueSet(newEntry); multimapIterationChain.append(newEntry); hashTable[bucket] = newEntry; size++; modCount++; rehashIfNecessary(); return true; } private void rehashIfNecessary() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 19.2K bytes - Click Count (0) -
guava/src/com/google/common/collect/LinkedHashMultimap.java
return false; } } ValueEntry<K, V> newEntry = new ValueEntry<>(key, value, smearedHash, rowHead); appendToValueSet(newEntry); multimapIterationChain.append(newEntry); hashTable[bucket] = newEntry; size++; modCount++; rehashIfNecessary(); return true; } private void rehashIfNecessary() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 20K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 22.3K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java
* "should" always work on Android, too, but we know of a Samsung bug there :)) However, in * AggregateFutureStateFallbackAtomicHelperTest, we test what happens to AggregateFuture in * the case of the Samsung bug, and we do that by breaking AtomicReferenceFieldUpdater. * Breaking AtomicReferenceFieldUpdater not only forces AggregateFutureState to fall back to
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 33.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java
// Test with very long message int statusCode = 413; StringBuilder longMessage = new StringBuilder(); for (int i = 0; i < 1000; i++) { longMessage.append("Very long error message content. "); } String message = longMessage.toString(); WebApiException exception = new WebApiException(statusCode, message);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
@Test public void test_constructor_withLongMessage() { // Test constructor with long message StringBuilder sb = new StringBuilder(); for (int i = 0; i < 1000; i++) { sb.append("Long message content "); } String longMessage = sb.toString(); CommandExecutionException exception = new CommandExecutionException(longMessage); assertNotNull(exception);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
under the door; so either way I'll get into the garden, and I don't care which happens!' She ate a little bit, and said anxiously to herself, `Which way? Which way?', holding her hand on the top of her head to feel which way it was growing, and she was quite surprised to find that she remained the same size: to be sure, this generally happens when one eats cake, but Alice had got so much into the
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Oct 29 21:35:03 GMT 2012 - 145.2K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/TypeToInstanceMap.java
public interface TypeToInstanceMap<B extends @Nullable Object> extends Map<TypeToken<? extends @NonNull B>, B> { /** * Returns the value the specified class is mapped to, or {@code null} if no entry for this class * is present. This will only return a value that was bound to this specific class, not a value * that may have been bound to a subtype. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 3.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
if (utf8Length != Utf8.encodedLength(sb)) { StringBuilder repro = new StringBuilder(); for (int j = 0; j < sb.length(); j++) { repro.append(" ").append((int) sb.charAt(j)); // GWT compatible } assertEquals(repro.toString(), utf8Length, Utf8.encodedLength(sb)); } } } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 12.9K bytes - Click Count (0)