- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 169 for identifiers (0.18 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java
* */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { // Default constructor } /** Dictionary identifier */ @Required public String dictId; /** CRUD operation mode (CREATE, EDIT, etc.) */ @ValidateTypeFailure public Integer crudMode; /** Word or phrase to be protected from analysis */
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/scheduler/EditForm.java
* */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() { super(); } /** * The unique identifier of the scheduler being edited. * This is a required field for identifying which scheduler to update. */ @Required @Size(max = 1000) public String id; /**
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/service/RelatedContentService.java
return relatedContentList; } /** * Retrieves a specific related content entity by its ID. * * @param id the unique identifier of the related content * @return an OptionalEntity containing the RelatedContent if found, empty otherwise */ public OptionalEntity<RelatedContent> getRelatedContent(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
*/ public class ProtwordsItem extends DictionaryItem { private final String input; private String newInput; /** * Constructor for ProtwordsItem. * @param id the unique identifier for this item * @param input the protected word input */ public ProtwordsItem(final long id, final String input) { this.id = id; this.input = input; if (id == 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java
return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name()); } } /** Identifies all enterXxx and tryEnterXxx methods. */ private static boolean isAnyEnter(Method method) { return method.getName().startsWith("enter") || method.getName().startsWith("tryEnter"); } /** Identifies just tryEnterXxx methods (a subset of {@link #isAnyEnter}), which never block. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
}).createPageNumberList()); return groupList; } /** * Retrieves a specific group by its ID and applies LDAP manager settings. * * @param id the unique identifier of the group * @return an OptionalEntity containing the group if found, empty otherwise */ public OptionalEntity<Group> getGroup(final String id) { return groupBhv.selectByPK(id).map(g -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/UploadForm.java
* This form is used in the admin interface to upload custom stopwords dictionary files. */ public class UploadForm { /** * The dictionary ID that identifies which stopwords dictionary configuration to update. * This ID corresponds to a specific stopwords dictionary instance in the system. */ @Required public String dictId; /**
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/service/CharMappingService.java
* <p> * This method looks up a character mapping item using its unique identifier * within the context of the specified dictionary. * </p> * * @param dictId the dictionary ID containing the character mapping item * @param id the unique identifier of the character mapping item * @return an OptionalEntity containing the character mapping item if found, empty otherwise
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
/** * Initiates crawling for all configured data stores. * This method retrieves all available data configurations and * starts the crawling process for each one. * * @param sessionId unique identifier for this crawling session */ public void crawl(final String sessionId) { final List<DataConfig> configList = ComponentUtil.getCrawlingConfigHelper().getAllDataConfigList();
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/app/web/admin/labeltype/EditForm.java
* */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() { super(); } /** * The unique identifier of the label type being edited. * This is a required field for identifying which label type to update. */ @Required @Size(max = 1000) public String id; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0)