- Sort Score
- Result 10 results
- Languages All
Results 871 - 880 of 1,373 for Constructor (0.04 sec)
-
src/test/java/jcifs/internal/smb2/Smb2TransformHeaderTest.java
assertEquals(testNonce[i], aad[20 + i], "Nonce should match at position " + (20 + i)); } } @Test @DisplayName("Should create transform header with constructor") void testConstructorWithParameters() { // Given int messageSize = 2048; int flags = 0x0002; // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java
import java.io.ObjectOutputStream; import org.codelibs.fess.unit.UnitFessTestCase; public class DictionaryExpiredExceptionTest extends UnitFessTestCase { public void test_constructor() { // Test default constructor DictionaryExpiredException exception = new DictionaryExpiredException(); assertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java
* discovery of new URLs on very large sites. */ private String lastmod; /** * Creates a new SitemapFile instance. */ public SitemapFile() { // Default constructor } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.entity.Sitemap#getLoc() */ @Override public String getLoc() { return loc; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.4K bytes - Viewed (1) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java
this.expectedElements = copyToList(expectedElements); this.knownOrder = knownOrder; this.startIndex = startIndex; } /** * I'd like to make this a parameter to the constructor, but I can't because the stimulus * instances refer to {@code this}. */ protected abstract Iterable<? extends Stimulus<E, ? super I>> getStimulusValues(); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 20.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java
private static final Logger logger = LogManager.getLogger(FtpAuthentication.class); /** * Constructs a new FtpAuthentication. */ public FtpAuthentication() { // Default constructor } private String server; private int port; private String username; private String password; /** * Returns the server address.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/UpdateLabelJob.java
/** * Query builder for filtering documents to be processed. */ protected QueryBuilder queryBuilder = null; /** * Default constructor for UpdateLabelJob. */ public UpdateLabelJob() { super(); } /** * Executes the label update job. * Processes documents in the search index and updates their label fields.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java
* including processing delays, queue waiting times, and new URL discovery. */ public class FessIntervalController extends DefaultIntervalController { /** * Default constructor. */ public FessIntervalController() { super(); } /** * Gets the delay time in milliseconds after processing a URL. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
/** The maximum number of highlighted fragments to return. */ private int numOfFragments; /** The offset for fragment positioning. */ private int fragmentOffset; /** * Default constructor that initializes highlighting settings from Fess configuration. * Loads default values for type, fragment size, number of fragments, and fragment offset. */ public HighlightInfo() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
/** The dictionary manager. */ @Resource protected DictionaryManager dictionaryManager; /** The Fess config. */ @Resource protected FessConfig fessConfig; /** * Default constructor. */ public KuromojiService() { // do nothing } /** * Get a list of Kuromoji items. * * @param dictId The dictionary ID.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java
static { DEFAULT_CHARSET = Charset.defaultCharset(); } /** * Private constructor to prevent instantiation of this class. */ private Constants() { }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.6K bytes - Viewed (0)