- Sort Score
- Result 10 results
- Languages All
Results 1321 - 1330 of 1,857 for constructs (0.06 sec)
-
guava/src/com/google/common/collect/ForwardingSet.java
*/ @GwtCompatible public abstract class ForwardingSet<E extends @Nullable Object> extends ForwardingCollection<E> implements Set<E> { // TODO(lowasser): identify places where thread safety is actually lost /** Constructor for use by subclasses. */ protected ForwardingSet() {} @Override protected abstract Set<E> delegate(); @Override public boolean equals(@Nullable Object object) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtTransQuerySecurityDescTest.java
bb.put((byte) 0x00); // Reserved bb.putInt(securityInformation); return bb.array(); } /** * Provide a range of values that are valid for the constructor. */ static Stream<org.junit.jupiter.params.provider.Arguments> validInputs() { return Stream.of(org.junit.jupiter.params.provider.Arguments.of(0x0001, 0x00000000),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/BooleanQueryCommand.java
* Converts Lucene BooleanQuery objects to OpenSearch BoolQueryBuilder objects. */ public class BooleanQueryCommand extends QueryCommand { /** * Default constructor for BooleanQueryCommand. */ public BooleanQueryCommand() { super(); } private static final Logger logger = LogManager.getLogger(BooleanQueryCommand.class); @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionCreationTester.java
import com.google.common.collect.testing.features.CollectionSize; import java.lang.reflect.Method; import org.junit.Ignore; /** * A generic JUnit test which tests creation (typically through a constructor or static factory * method) of a collection. Can't be invoked directly; please see {@link * com.google.common.collect.testing.CollectionTestSuiteBuilder}. * * @author Chris Povirk */ @GwtCompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ForwardingBlockingQueue.java
* @since 4.0 */ @J2ktIncompatible @GwtIncompatible public abstract class ForwardingBlockingQueue<E> extends ForwardingQueue<E> implements BlockingQueue<E> { /** Constructor for use by subclasses. */ protected ForwardingBlockingQueue() {} @Override protected abstract BlockingQueue<E> delegate(); @CanIgnoreReturnValue @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3K bytes - Viewed (0) -
src/test/java/jcifs/spnego/NegTokenTargTest.java
assertArrayEquals(mic, roundTrip.getMechanismListMIC(), "mic should roundtrip"); } @Test @DisplayName("default constructor – unspecified result") void testDefaultResult() { NegTokenTarg nt = new NegTokenTarg(); assertEquals(NegTokenTarg.UNSPECIFIED_RESULT, nt.getResult(), "new object should have UNSPECIFIED_RESULT"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapSet.java
private String type = URLSET; /** * Creates a new SitemapSet instance with default type URLSET. */ public SitemapSet() { // Default constructor } /** * Adds a sitemap to this set. * @param sitemap the sitemap to add */ public void addSitemap(final Sitemap sitemap) { sitemapList.add(sitemap); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java
* Provides methods to capture thread information for debugging purposes. */ public class ThreadDumpUtil { private static final Logger logger = LogManager.getLogger(ThreadDumpUtil.class); /** * Private constructor to prevent instantiation of this utility class. */ protected ThreadDumpUtil() { // noop } /** * Prints thread dump information to the logger at INFO level. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FessCrawlerConfig.java
* index names, shard counts, and replica counts for queue, data, and filter indices. */ public class FessCrawlerConfig extends OpenSearchCrawlerConfig { /** * Default constructor. */ public FessCrawlerConfig() { super(); } /** * Gets the name of the queue index for the crawler. * * @return the queue index name */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java
import jakarta.annotation.Resource; /** * Action for user profile operations. */ public class ProfileAction extends FessSearchAction { /** * Default constructor. */ public ProfileAction() { super(); } private static final Logger logger = LogManager.getLogger(ProfileAction.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0)