- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 2,904 for toObject (0.41 sec)
-
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
*/ public interface ClosingFunction5< V1 extends @Nullable Object, V2 extends @Nullable Object, V3 extends @Nullable Object, V4 extends @Nullable Object, V5 extends @Nullable Object, U extends @Nullable Object> { /** * Applies this function to five inputs, or throws an exception if unable to do so. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 97.8K bytes - Viewed (0) -
guava/src/com/google/common/base/Suppliers.java
*/ public static <F extends @Nullable Object, T extends @Nullable Object> Supplier<T> compose( Function<? super F, T> function, Supplier<F> supplier) { return new SupplierComposition<>(function, supplier); } private static final class SupplierComposition< F extends @Nullable Object, T extends @Nullable Object> implements Supplier<T>, Serializable {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
docs/debugging/hash-set/main.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/LongConversionUtil.java
} /** * Converts the given object to a {@link Long}. * * @param o * the object to convert * @return the converted {@link Long} */ public static Long toLong(final Object o) { return toLong(o, null); } /** * Converts the given object to a {@link Long}. * * @param o * the object to convert * @param pattern
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocMap.java
*/ @Override public Object remove(final Object key) { return parent.remove(key); } /** * Copies all of the mappings from the specified map to this map. * * @param m the mappings to be stored in this map */ @Override public void putAll(final Map<? extends String, ? extends Object> m) { parent.putAll(m); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java
ArtifactSpec e = b2.addDependency("e", "1.0"); ArtifactSpec g = d1.addDependency("g", "1.0"); ArtifactResolutionResult res = collect(createSet(new Object[] {a.artifact})); Object[] artifacts = new Object[] {a.artifact, c.artifact, d1.artifact, b2.artifact, e.artifact, g.artifact}; assertEquals(createSet(artifacts), res.getArtifacts(), "Check artifact list");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 42.7K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java
} catch (AssertionError expected) { return; } fail(); } public static final class BadSerializableFactory { public static Object bad() { return new Serializable() { @Keep private final Object notSerializable = new Object(); }; } private BadSerializableFactory() {} } public void testEqualsAndSerializableOnReturnValues_equalsIsGoodButNotSerializable()
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 36.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableMultisetFloodingTest.java
@Override public ImmutableMultiset<Object> create(List<?> keys) { ImmutableMultiset.Builder<Object> builder = ImmutableMultiset.builder(); for (Object o : keys) { builder.add(o); } return builder.build(); } }, BUILDER_ADD_ALL_COLLECTION { @Override public ImmutableMultiset<Object> create(List<?> keys) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MultimapBuilderTest.java
@GwtIncompatible @J2ktIncompatible private static void reserializeAndAssert(Object object) throws Exception { Object copy = reserialize(object); assertEquals(object, copy); assertEquals(object.getClass(), copy.getClass()); } @GwtIncompatible @J2ktIncompatible private static Object reserialize(Object object) throws Exception { ByteArrayOutputStream bytes = new ByteArrayOutputStream();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
} private static class TestIngester extends Ingester { int processCalled = 0; @Override public Map<String, Object> process(Map<String, Object> target, DataStoreParams paramMap) { processCalled++; Map<String, Object> result = new HashMap<>(target); result.put("status", "processed"); return result; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0)