- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 78 for Label (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
import jakarta.annotation.Resource; /** * Admin action for Label Type management. * */ public class AdminLabeltypeAction extends FessAdminAction { /** * Default constructor. */ public AdminLabeltypeAction() { super(); } /** The role name for label type administration. */ public static final String ROLE = "admin-labeltype";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp
<label for="webApiJson" class="form-check-label"> <la:message key="labels.enabled"/> </label> </div> </div> </div>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 39.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java
* Enqueues an event to be run on currently known listeners, with a label. * * @param event the callback to execute on {@link #dispatch} * @param label a description of the event to use in the case of an error */ public void enqueue(Event<L> event, String label) { enqueueHelper(event, label); } private void enqueueHelper(Event<L> event, Object label) { checkNotNull(event, "event");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java
/** * The value of the label type (alphanumeric and underscore only). */ @Required @Size(max = 100) @Pattern(regexp = "^[a-zA-Z0-9_]+$") public String value; /** * The paths to include for this label type. */ @CustomSize(maxKey = "form.admin.max.input.size") public String includedPaths; /** * The paths to exclude for this label type. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt
} // Wildcard pattern // WILDCARD PATTERN RULES: // 1. Asterisk (*) is only permitted in the left-most domain name label and must be the // only character in that label (i.e., must match the whole left-most label). // For example, *.example.com is permitted, while *a.example.com, a*.example.com, // a*b.example.com, a.*.example.com are not permitted.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java
private int currentPageNumber; /** The ID of the label type. */ public String id; /** The name of the label type. */ public String name; /** The value of the label type. */ public String value; /** The sort order of the label type. */ public String sortOrder; /** The creator of the label type. */ public String createdBy;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
/** * Default constructor. */ public FessSearchAction() { super(); } /** The field name used for label-based search filtering. */ protected static final String LABEL_FIELD = "label"; /** Helper for performing search operations and managing search requests. */ @Resource protected SearchHelper searchHelper;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing label types in the admin interface. * This form extends CreateForm to include fields necessary for updating existing label type entries, * including tracking information for optimistic locking and audit trails. * Label types are used to categorize and filter documents in search results. * */ public class EditForm extends CreateForm {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
* * @param label the item label * @param value the item value * @return map containing the formatted key-value pair */ protected static Map<String, String> createItem(final Object label, final Object value) { final Map<String, String> map = new HashMap<>(2); map.put(Constants.ITEM_LABEL, label != null ? label.toString() : StringUtil.EMPTY);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
indexUpdateCallback.store(paramMap, dataMap); // Verify labels are merged String[] labels = (String[]) dataMap.get("label"); assertEquals(3, labels.length); Set<String> labelSet = new HashSet<>(); for (String label : labels) { labelSet.add(label); } assertTrue(labelSet.contains("existing")); assertTrue(labelSet.contains("label1"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0)