Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 233 for Label (0.02 sec)

  1. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin_installplugin.jsp

                                                <label for="jarFile" class="col-md-3 text-sm-right col-form-label"><la:message
                                                        key="labels.plugin_jar_file"/></label>
                                                <div class="col-md-9 text-sm-right col-form-label">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc_edit.jsp

                                    </div>
                                    <div class="form-group row">
                                        <label for="urlExpr" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.boost_document_rule_url_expr"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="urlExpr"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 5K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/suggest/admin_suggest.jsp

                                                                                    data-dismiss="modal"
                                                                                    aria-label="Close">
                                                                                <span aria-hidden="true">×</span>
                                                                            </button>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 18.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java

            assertNotNull(result);
            // The mock returns a fixed count of 3
            assertTrue(result.contains("docs"));
        }
    
        // Test with empty label set
        public void test_execute_withEmptyLabelSet() {
            // Override mock to return empty label set
            LabelTypeHelper emptyLabelHelper = new LabelTypeHelper() {
                @Override
                public Set<String> getMatchedLabelValueSet(String url) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_en.properties

    labels.webauth_scheme_ntlm=NTLM
    labels.webauth_scheme_form=Form
    labels.log_configuration=Log Files
    labels.log_file_name=File Name
    labels.log_file_date=Timestamp
    labels.labeltype_configuration=Label
    labels.labeltype_title_details=Label
    labels.labeltype_name=Name
    labels.labeltype_value=Value
    labels.labeltype_included_paths=Included Paths
    labels.labeltype_excluded_paths=Excluded Paths
    labels.roletype_configuration=Role
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

        }
    
        /**
         * Creates a map item with label and value for use in dropdown lists and form options.
         *
         * @param label the display label for the item
         * @param value the value associated with the item
         * @return a map containing the label and value
         */
        protected Map<String, String> createItem(final String label, final String value) {
            final Map<String, String> map = new HashMap<>(2);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

            return OptionalUtil.ofNullable(fileConfig);
        }
    
        /**
         * Gets all label types (collections) parsed from the GSA configuration.
         * Each label type represents a collection with its own URL filtering rules.
         *
         * @return an array of label types representing the parsed collections
         */
        public LabelType[] getLabelTypes() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java

     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
            // Default constructor
        }
    
        /** The label type IDs associated with this elevate word entry */
        public String[] labelTypeIds;
    
        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java

        private List<LabelType> createTestLabelTypeList() {
            List<LabelType> labelTypeList = new ArrayList<>();
    
            LabelType labelType1 = new LabelType();
            labelType1.setName("Test Label 1");
            labelType1.setValue("test1");
            labelType1.setPermissions(new String[0]);
            labelType1.setVirtualHost("");
            // Locale is derived from value, not set directly
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_details.jsp

                                                           items="${protocolSchemeItems}">
                                                <c:if test="${protocolScheme==item.value}">${f:h(item.label)}</c:if>
                                            </c:forEach> <la:hidden property="protocolScheme"/></td>
                                        </tr>
                                        <tr>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.5K bytes
    - Viewed (0)
Back to top