- Sort Score
- Result 10 results
- Languages All
Results 721 - 730 of 1,857 for constructs (0.62 sec)
-
src/main/java/jcifs/internal/dfs/DfsReferralResponseBuffer.java
* * @author mbechler */ public class DfsReferralResponseBuffer implements Decodable { /** * Default constructor for DfsReferralResponseBuffer. * Initializes the DFS referral response buffer for parsing server responses. */ public DfsReferralResponseBuffer() { // Default constructor } private int pathConsumed; private int numReferrals; private int tflags;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java
import jakarta.validation.constraints.Size; /** * The mail form for General settings. */ public class MailForm { /** * Default constructor. */ public MailForm() { // Default constructor } /** The incremental crawling setting. */ public String incrementalCrawling; /** The day for cleanup setting. */ public String dayForCleanup;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/UriTypeValidator.java
*/ public class UriTypeValidator implements ConstraintValidator<UriType, String> { /** * Default constructor for UriTypeValidator. */ public UriTypeValidator() { // Default constructor } private String[] protocols; @Override public void initialize(final UriType uriType) { protocols = switch (uriType.protocolType()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/OsddHelper.java
import jakarta.annotation.PostConstruct; /** * Helper class for Open Search Description Document. */ public class OsddHelper { /** * Default constructor. */ public OsddHelper() { // Default constructor } private static final Logger logger = LogManager.getLogger(OsddHelper.class); /** The OSDD file path. */ protected String osddPath;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/EmptyIterator.java
* * @author mbechler */ public class EmptyIterator implements CloseableIterator<SmbResource> { /** * Default constructor for EmptyIterator. * Creates an empty iterator with no elements. */ public EmptyIterator() { // Default constructor } /** * {@inheritDoc} * * @see java.util.Iterator#hasNext() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableBiMap.java
/** Constructor for empty bimap. */ @SuppressWarnings("unchecked") private RegularImmutableBiMap() { this.keyHashTable = null; this.alternatingKeysAndValues = new Object[0]; this.keyOffset = 0; this.size = 0; this.inverse = (RegularImmutableBiMap<V, K>) this; } /** K-to-V constructor. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionTest.java
} assertTrue(hasCronExpression); } // Test annotation on constructor parameter public void test_annotationOnConstructor() throws Exception { java.lang.reflect.Constructor<?> constructor = TestConstructor.class.getDeclaredConstructor(String.class); Annotation[][] paramAnnotations = constructor.getParameterAnnotations(); assertEquals(1, paramAnnotations.length);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/PasswordForm.java
import jakarta.validation.constraints.NotBlank; /** * Form for password change. */ public class PasswordForm { /** * Default constructor. */ public PasswordForm() { // Default constructor } /** The username. */ public String username; /** The password. */ @NotBlank public String password; /** The confirm password. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/DownloadForm.java
/** * Dictionary ID for identifying the Kuromoji dictionary to download. */ @Required public String dictId; /** * Default constructor. */ public DownloadForm() { // Use of default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerAdapter.kt
* * ``` * [5] EXPLICIT UTF8String * ``` * * @param forceConstructed non-null to set the constructed bit to the specified value, even if the * writing process sets something else. This is used to encode SEQUENCES in values that are * declared to have non-constructed values, like OCTET STRING values. */ @Suppress("UNCHECKED_CAST") // read() produces a single element of the expected type.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.2K bytes - Viewed (0)