- Sort Score
- Result 10 results
- Languages All
Results 1081 - 1090 of 1,878 for constructor (0.06 sec)
-
src/main/java/jcifs/util/transport/Transport.java
* This class handles the low-level transport protocol for SMB communication. */ public abstract class Transport implements Runnable, AutoCloseable { /** * Default constructor for Transport */ protected Transport() { // Default constructor } private static int id = 0; private static final Logger log = LoggerFactory.getLogger(Transport.class); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
*/ private final Detector detector; // always set in the constructor /** * Creates an auto-detecting parser instance using the default Tika * configuration. */ public TikaDetectParser() { this(tikaConfig); } /** * Constructor. * @param config Tika config. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 30.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Headers.kt
* whitespace. * * Instances of this class are immutable. Use [Builder] to create instances. */ @Suppress("NAME_SHADOWING") class Headers internal constructor( internal val namesAndValues: Array<String>, ) : Iterable<Pair<String, String>> { /** Returns the last value corresponding to the specified field, or null. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:51:25 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/Striped64.java
*/ transient volatile long base; /** Spinlock (locked via CAS) used when resizing and/or creating Cells. */ transient volatile int busy; /** Package-private default constructor */ Striped64() {} /** CASes the base field. */ final boolean casBase(long cmp, long val) { return UNSAFE.compareAndSwapLong(this, BASE_OFFSET, cmp, val); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jan 15 22:17:15 UTC 2025 - 11.4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Service.java
* * @author Luke Sandberg * @since 15.0 (present as an interface in 13.0) */ abstract class Listener { /** Constructor for use by subclasses. */ public Listener() {} /** * Called when the service transitions from {@linkplain State#NEW NEW} to {@linkplain
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java
import jakarta.annotation.Resource; /** * Admin action for Boost Document management. * */ public class AdminBoostdocAction extends FessAdminAction { /** * Default constructor. */ public AdminBoostdocAction() { super(); } /** The role for this action. */ public static final String ROLE = "admin-boostdoc";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
* */ public class FessLoginAssist extends TypicalLoginAssist<String, FessUserBean, FessUser> // #change_it also UserBean implements PrimaryLoginManager { /** * Default constructor. */ public FessLoginAssist() { super(); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java
import jakarta.annotation.Resource; /** * Admin action for Role management. * */ public class AdminRoleAction extends FessAdminAction { /** * Default constructor. */ public AdminRoleAction() { super(); } /** Role name for admin role operations */ public static final String ROLE = "admin-role";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
@Override public void setUp() throws Exception { super.setUp(); authenticationManager = new AuthenticationManager(); } // Test default constructor public void test_constructor() { AuthenticationManager manager = new AuthenticationManager(); assertNotNull(manager); } // Test insert with no chains
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetInfoTest.java
super.setUp(); facetInfo = new FacetInfo(); } @Override public void tearDown() throws Exception { super.tearDown(); } // Test default constructor public void test_constructor() { FacetInfo info = new FacetInfo(); assertNull(info.field); assertNull(info.query); assertNull(info.size); assertNull(info.minDocCount);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0)