- Sort Score
- Result 10 results
- Languages All
Results 981 - 990 of 1,878 for constructor (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* */ public class EditForm { /** * Creates a new EditForm instance. */ public EditForm() { // Default constructor } /** * Enable or disable incremental crawling. * When enabled, only new or modified documents are crawled. */ @Size(max = 10) public String incrementalCrawling; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeTraverser.java
* <p>This class is scheduled to be removed in October 2019. */ // TODO(b/68134636): Remove by 2019-10 @Deprecated @Beta @GwtCompatible public abstract class TreeTraverser<T> { /** Constructor for use by subclasses. */ public TreeTraverser() {} /** * Returns a tree traverser that uses the given function to navigate from a node to its children.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacMac.java
* This class provides methods for computing MACs using various Kerberos encryption types including * ARCFOUR-HMAC-MD5 and AES-based HMAC algorithms. */ public class PacMac { /** * Private constructor to prevent instantiation of utility class. */ private PacMac() { // Utility class } /** * */ private static final String HMAC_KEY = "HMAC";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java
.actionGet(); client.admin().indices().prepareRefresh(SUGGEST_INDEX).execute().actionGet(); } @Test public void testConstructor() { // Test constructor initialization AnalyzerConverter testConverter = new AnalyzerConverter(client, settings); assertNotNull(testConverter); } @Test public void testInit() throws IOException {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
import org.codelibs.fess.util.ComponentUtil; /** * The abstract class for DataStore. */ public abstract class AbstractDataStore implements DataStore { /** * Default constructor. */ public AbstractDataStore() { // nothing } private static final Logger logger = LogManager.getLogger(AbstractDataStore.class); /** * The script type. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java
*/ public class CrawlingInfoPager implements Serializable { /** * Creates a new pager instance with default settings. */ public CrawlingInfoPager() { // Default constructor } private static final long serialVersionUID = 1L; /** * Default page size for pagination. */ public static final int DEFAULT_PAGE_SIZE = 20; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java
triggerShutdown(); } @Override public String toString() { return AbstractExecutionThreadService.this.toString(); } }; /** Constructor for use by subclasses. */ protected AbstractExecutionThreadService() {} /** * Start the service. This method is invoked on the execution thread. * * <p>By default this method does nothing. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/LogStreamTest.java
Field instanceField = LogStream.class.getDeclaredField("inst"); instanceField.setAccessible(true); instanceField.set(null, null); } @Test void testConstructor() { // Test constructor creates a LogStream that extends PrintStream LogStream logStream = new LogStream(testStream); assertNotNull(logStream); assertTrue(logStream instanceof PrintStream); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/ShareEnumIteratorTest.java
assertEquals("remove", ex.getMessage()); } @Nested @DisplayName("Invalid constructor inputs") class InvalidInputs { @Test @DisplayName("Null delegate causes NullPointerException during construction") void nullDelegate_throwsNPE() throws Exception { SmbFile parent = newParent();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
* </p> * */ public abstract class FessAdminAction extends FessBaseAction { /** Constant suffix for view names. */ public static final String VIEW = "-view"; /** * Default constructor. */ public FessAdminAction() { super(); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.1K bytes - Viewed (0)