- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 5,041 for reject (0.04 sec)
-
src/test/java/jcifs/smb/SmbEnumerationUtilTest.java
import static org.mockito.Mockito.never; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.net.URL; import java.net.UnknownHostException; import java.util.stream.Stream; import org.junit.jupiter.api.DisplayName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
final List<String> docIdList = new ArrayList<>(); for (final Map<String, Object> inputDoc : docList) { final Object idValue = inputDoc.get(fessConfig.getIndexFieldId()); if (idValue == null) { continue; } final Object configIdValue = inputDoc.get(fessConfig.getIndexFieldConfigId()); if (configIdValue == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
thumbnailManager.add(generator); Map<String, Object> docMap = new HashMap<>(); docMap.put("_id", "docid1"); // Fill the queue thumbnailManager.offer(docMap); // Try to add another - should succeed (warning logged but still returns true) Map<String, Object> docMap2 = new HashMap<>(); docMap2.put("_id", "docid2");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
"-Dorg.gradle.java.installations.auto-download=false", "-Porg.gradle.java.installations.auto-download=false", "-Dorg.gradle.java.installations.auto-detect=false", "-Porg.gradle.java.installations.auto-detect=false", ) + os.javaInstallationLocations(arch) fun promotionBuildParameters( dependencyBuildId: RelativeId, extraParameters: String, gitUserName: String,
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralTest.java
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import java.lang.reflect.Field; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ObjectUtil.java
public static boolean equals(final Object object1, final Object object2) { if (object1 == object2) { return true; } if (object1 == null || object2 == null) { return false; } return object1.equals(object2); } /** * Returns the hash code of the specified object, or 0 if the object is null. * * @param obj the object * @return the hash code or 0
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SLinkedList.java
} /** * Adds an element at the beginning. * * @param element the object to be added */ public void addFirst(final E element) { header.next.addBefore(element); } /** * Adds an element at the end. * * @param element the object to be added */ public void addLast(final E element) { header.addBefore(element); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
return clazz; } /** * Returns a {@link Constructor} object that reflects the specified {@code public} constructor of the class represented by the {@link Class} object. * * @param <T> * The class represented by the {@link Class} object * @param clazz * The {@link Class} object representing the class. Must not be {@literal null}. * @param argTypes
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java
*/ protected BooleanConversionUtil() { } /** * Converts to {@link Boolean}. * * @param o * The object to convert * @return The converted {@link Boolean} */ public static Boolean toBoolean(final Object o) { return switch (o) { case null -> null; case Boolean b -> b; case Number n -> n.intValue() != 0;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java
} /** * Wraps an object instance into a pooled object. * @param obj The object to wrap * @return A PooledObject wrapping the given object */ @Override public PooledObject<T> wrap(final T obj) { return new DefaultPooledObject<>(obj); } /** * Destroys a pooled object and notifies the destroy listener if set.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.9K bytes - Viewed (0)