- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 1,291 for Constructors (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java
/** * Additional search fields for error page display. */ public Map<String, String[]> fields = new HashMap<>(); /** * Default constructor for ThumbnailForm. */ public ThumbnailForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java
import jakarta.validation.constraints.Size; /** * The create form for User. * */ public class CreateForm { /** * Default constructor. */ public CreateForm() { // Empty constructor } /** * The CRUD mode for the form. */ @ValidateTypeFailure public Integer crudMode; /** * The username of the user. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/ndr/NdrShortTest.java
} /** * Validate that the constructor masks the supplied value to its * lowest 8 bits (NdrShort incorrectly masks to 8 bits even though it's a short). */ @ParameterizedTest @ValueSource(ints = { 0, 1, 255, -1, 256, 65535 }) void constructorMasksValue(int input) { NdrShort ns = new NdrShort(input); // NdrShort masks to 0xFF (8 bits) in its constructor int expected = input & 0xFF;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtExceptionTest.java
import jcifs.CIFSException; class NbtExceptionTest { /** * Test the constructor of NbtException. * It should correctly set errorClass and errorCode, and the message should be derived from getErrorString. */ @Test @DisplayName("NbtException constructor should correctly set error class, error code, and message") void testConstructor() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosAuthData.java
* This class provides parsing capabilities for different types of Kerberos authorization data. */ public abstract class KerberosAuthData { /** * Default constructor for KerberosAuthData. */ protected KerberosAuthData() { // Default constructor } /** * Parse Kerberos authorization data based on the authorization type. * * @param authType the type of authorization data
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FessAppService.java
* throughout the Fess search application. */ public abstract class FessAppService { /** * Default constructor. */ public FessAppService() { // Default constructor } /** * Wraps a query string with wildcard characters to enable partial matching. * This method ensures that the query string is surrounded by asterisks (*)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java
*/ public class DeleteForm { /** * Creates a new instance of DeleteForm. * This constructor initializes the form for deleting documents from search results * in the admin interface with validation rules for query and document identification. */ public DeleteForm() { // Default constructor with explicit documentation } /** * The search query used to find the document.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
protected String name; /** * Default constructor for creating a new rank fusion searcher instance. * This constructor initializes the searcher with default values. * The searcher name will be lazily initialized when first accessed. */ public RankFusionSearcher() { // Default constructor - name will be initialized lazily } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/webapp/js/admin/adminlte.min.js
lick",r,(function(e){e&&e.preventDefault(),f._jQueryInterface.call(n.default(this),"load")})),n.default((function(){n.default(r).each((function(){f._jQueryInterface.call(n.default(this))}))})),n.default.fn[i]=f._jQueryInterface,n.default.fn[i].Constructor=f,n.default.fn[i].noConflict=function(){return n.default.fn[i]=l,f._jQueryInterface};var u="CardWidget",c="lte.cardwidget",h=n.default.fn[u],g="card",p="collapsed-card",m="collapsing-card",v="expanding-card",_="was-collapsed",b="maximized-card"...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 45.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/UploadForm.java
*/ @Required public MultipartFormFile stopwordsFile; /** * Default constructor for UploadForm. * Creates a new instance with default values. */ public UploadForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)