- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 188 for initiatives (0.25 sec)
-
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
/** * Creates a new instance of DataIndexHelper. * This constructor initializes the helper for managing data crawling operations, * including thread pool management and session-based crawling coordination. */ public DataIndexHelper() { // Default constructor with explicit documentation } /** * Initiates crawling for all configured data stores.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
/** * Default constructor for RelatedQueryHelper. * Initializes the helper with an empty related query map. */ public RelatedQueryHelper() { super(); } /** * Initializes the RelatedQueryHelper after dependency injection is complete. * This method is called automatically by the dependency injection framework
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java
* Default constructor for DuplicateHostHelper. * Creates a new duplicate host helper instance. */ 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()) {
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/design/DesignForm.java
* Handles upload and management of design templates and CSS files. */ public class DesignForm { /** * Creates a new instance of DesignForm. * This constructor initializes the form for design file management * in the admin interface, handling upload and management of templates and CSS files. */ public DesignForm() { // Default constructor with explicit documentation
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/group/CreateForm.java
@Required @Size(max = 100) public String name; /** * Additional attributes for the group. */ public Map<String, String> attributes = new HashMap<>(); /** * Initializes the form with default values. */ 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.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.12.md
### SIG-cloud-provider This is the first Kubernetes release for this SIG! In v1.12, SIG Cloud Provider focused on building the processes and infrastructure to better support existing and new cloud providers. Some of these initiatives (many of which are still in progress) are: - Reporting E2E conformance test results to TestGrid from every cloud provider (in collaboration with SIG Testing & SIG Release)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 293.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java
@ValidateTypeFailure public Integer crudMode; /** The stopword to be added to the dictionary */ @Required @Size(max = 1000) public String input; /** * Initializes the form with default values for creating a new stopword 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) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcGetMembersInAliasTest.java
} /** * Test method for {@link jcifs.dcerpc.msrpc.MsrpcGetMembersInAlias#MsrpcGetMembersInAlias(SamrAliasHandle, LsarSidArray)}. * Verifies that the constructor correctly initializes the object's fields using reflection for protected members. */ @Test void testConstructor() throws NoSuchFieldException, IllegalAccessException { // Create an instance of the class to be tested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/CreateForm.java
@Required @Size(max = 1000) public String input; /** The desired stem output for the input word */ @Required @Size(max = 1000) public String output; /** * Initializes the form with default values for creating a new stemmer override 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/kuromoji/CreateForm.java
@Required @Size(max = 1000) public String reading; /** Part of speech tag for the token */ @Required @Size(max = 1000) public String pos; /** * Initializes the form with default values for creating a new Kuromoji 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 - 2K bytes - Viewed (0)