- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 299 for Initializer (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java
public DuplicateHostHelper() { // Default constructor } /** * Initializes the duplicate host helper after construction. * Loads duplicate host configurations from the DuplicateHostService. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } if (duplicateHostList == null) {
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/web/admin/role/CreateForm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/EditForm.java
/** * Default constructor for EditForm. */ public EditForm() { // Default constructor } /** * Initializes the form by resetting all fields to their default values. */ public void initialize() { id = null; logType = null; }
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/app/web/admin/badword/CreateForm.java
/** * The timestamp when this bad word entry was created. */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values including current user and timestamp. */ public void initialize() { createdBy = ComponentUtil.getSystemHelper().getUsername(); createdTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); }
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/dict/protwords/CreateForm.java
/** Word or phrase to be protected from analysis */ @Required @Size(max = 1000) public String input; /** * Initializes the form with default values for creating a new protected words entry. */ public void initialize() { crudMode = CrudMode.CREATE; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
android-test/src/test/kotlin/okhttp/android/test/RobolectricOkHttpClientTest.kt
) class RobolectricOkHttpClientTest : BaseOkHttpClientUnitTest() { @Before fun setContext() { // This is awkward because Robolectric won't run our initializers and we don't want test deps // https://github.com/robolectric/robolectric/issues/8461 OkHttp.initialize(ApplicationProvider.getApplicationContext()) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 16:25:39 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java
public String inputs; /** Output term that input terms will be mapped to */ @Size(min = 1, max = 1000) public String output; /** * Initializes the form with default values for creating a new mapping dictionary entry. */ public void initialize() { crudMode = CrudMode.CREATE; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/CreateForm.java
/** The output synonyms that should be matched for the input terms */ @Required @Size(max = 1000) public String outputs; /** * Initializes the form with default values for creating a new synonym entry. */ public void initialize() { crudMode = CrudMode.CREATE; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java
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/sso/spnego/SpnegoAuthenticator.java
// do nothing } /** * Initializes the SPNEGO authenticator and registers it with the SSO manager. * This method is called automatically after dependency injection is complete. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (0)