- Sort Score
- Result 10 results
- Languages All
Results 1991 - 2000 of 5,836 for Public (0.03 sec)
-
android/guava-tests/test/com/google/common/collect/TreeMultimapExplicitTest.java
* @author Jared Levy */ @GwtCompatible @NullMarked public class TreeMultimapExplicitTest extends TestCase { /** * Compare strings lengths, and if the lengths are equal compare the strings. A {@code null} is * less than any non-null value. */ private enum StringLength implements Comparator<@Nullable String> { COMPARATOR; @Override public int compare(@Nullable String first, @Nullable String second) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.4K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java
@SuppressWarnings("unchecked") public static <K, V> ImmutableSortedMap<K, V> of() { return new Builder<K, V>((Comparator<K>) NATURAL_ORDER).build(); } public static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> of(K k1, V v1) { return copyOf(singletonMap(k1, v1)); } public static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> of(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
} /** * Gets the new input words. * * @return The new input words. */ public String[] getNewInputs() { return newInputs; } /** * Sets the new input words. * * @param newInputs The new input words. */ public void setNewInputs(final String[] newInputs) { this.newInputs = newInputs; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/FluentFutureTest.java
*/ @NullMarked @GwtCompatible public class FluentFutureTest extends TestCase { @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method public void testFromFluentFuture() { FluentFuture<String> f = FluentFuture.from(SettableFuture.<String>create()); assertThat(FluentFuture.from(f)).isSameInstanceAs(f); } public void testFromFluentFuturePassingAsNonFluent() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/AssertionUtil.java
import org.codelibs.core.exception.NullArgumentException; import org.codelibs.core.lang.StringUtil; /** * Utility class for assertions. * * @author shot */ public abstract class AssertionUtil { /** * Do not instantiate. */ protected AssertionUtil() { } /** * Asserts that the argument is not <code>null</code>. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/PingResponseTest.java
import org.codelibs.fess.util.ComponentUtil; public class PingResponseTest extends UnitFessTestCase { private FessConfig originalConfig; @Override public void setUp() throws Exception { super.setUp(); originalConfig = ComponentUtil.getFessConfig(); } @Override public void tearDown() throws Exception { if (originalConfig != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashMap.java
return old; } } } @Override public int size() { Map<K, V> delegate = delegateOrNull(); return (delegate != null) ? delegate.size() : size; } @Override public boolean isEmpty() { return size() == 0; } @Override public boolean containsValue(@Nullable Object value) { Map<K, V> delegate = delegateOrNull();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/ListBody.java
/** * The request body for listing dictionaries. */ public class ListBody extends ListForm { /** * Default constructor. */ public ListBody() { super(); } /** The ID of the dictionary. */ public String id; /** The type of the dictionary. */ public String type; /** The path of the dictionary. */ public String path; /** The timestamp of the dictionary. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; import org.codelibs.fess.unit.UnitFessTestCase; public class LdapOperationExceptionTest extends UnitFessTestCase { public void test_constructor_withMessage() { // Test constructor with message only String message = "LDAP operation failed";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/compression/DefaultCompressionServiceTest.java
import jcifs.CIFSException; /** * Comprehensive tests for default compression service implementation. */ public class DefaultCompressionServiceTest { private DefaultCompressionService compressionService; private byte[] testData; private byte[] largeTestData; @BeforeEach public void setUp() { compressionService = new DefaultCompressionService();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.1K bytes - Viewed (0)