Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for Description (0.64 sec)

  1. src/main/webapp/WEB-INF/fe.tld

      version="2.0">
        
      <description>JSTL 1.1 functions library</description>
      <display-name>JSTL functions</display-name>
      <tlib-version>1.1</tlib-version>
      <short-name>fe</short-name>
      <uri>http://fess.codelibs.org/functions</uri>
      
      <function>
        <description>
          Returns a label name.
        </description>
        <name>labelexists</name>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 28 07:49:35 UTC 2020
    - 10K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsDataConfig.java

            this.createdTime = value;
        }
    
        public String getDescription() {
            checkSpecifiedProperty("description");
            return convertEmptyToNull(description);
        }
    
        public void setDescription(String value) {
            registerModifiedProperty("description");
            this.description = value;
        }
    
        public String getHandlerName() {
            checkSpecifiedProperty("handlerName");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebConfig.java

            this.depth = value;
        }
    
        public String getDescription() {
            checkSpecifiedProperty("description");
            return convertEmptyToNull(description);
        }
    
        public void setDescription(String value) {
            registerModifiedProperty("description");
            this.description = value;
        }
    
        public String getExcludedDocUrls() {
            checkSpecifiedProperty("excludedDocUrls");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig.jsp

                                            <label for="description" class="col-sm-2 text-sm-right col-form-label"><la:message
                                                    key="labels.description"/></label>
                                            <div class="col-sm-10">
                                                <la:text styleId="description" property="description"
                                                         styleClass="form-control"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/bug_report.md

    **Describe the bug**
    A clear and concise description of what the bug is.
    
    **To Reproduce**
    Steps to reproduce the behavior:
    1. Go to '...'
    2. Click on '....'
    3. Scroll down to '....'
    4. See error
    
    **Expected behavior**
    A clear and concise description of what you expected to happen.
    
    **Screenshots**
    If applicable, add screenshots to help explain your problem.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 17 22:53:30 UTC 2020
    - 782 bytes
    - Viewed (0)
  6. src/main/config/openapi/openapi-user.yaml

        description: Popular word operations
      - name: monitor
        description: Monitoring operations
      - name: suggest
        description: Suggest operations
      - name: favorite
        description: Favorite operations
    paths:
      /documents:
        get:
          tags:
            - search
          summary: Finds documents by query
          description: Finds documents by search conditions
          operationId: searchDocuments
          parameters:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_details.jsp

                                        <tr>
                                            <th><la:message key="labels.description"/></th>
                                            <td>${f:br(f:h(description))}<la:hidden
                                                    property="description"/></td>
                                        </tr>
                                        </tbody>
                                    </table>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsDataConfigCQ.java

        }
    
        public void setDescription_Equal(String description) {
            setDescription_Term(description, null);
        }
    
        public void setDescription_Equal(String description, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setDescription_Term(description, opLambda);
        }
    
        public void setDescription_Term(String description) {
            setDescription_Term(description, null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 108.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

        public String boost;
    
        public String available;
    
        public String sortOrder;
    
        public String createdBy;
    
        public String createdTime;
    
        public String versionNo;
    
        public String description;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
            pageSize = getDefaultPageSize();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

            }
            if (StringUtil.isNotBlank(fileConfigPager.description)) {
                if (fileConfigPager.description.startsWith("*")) {
                    cb.query().setDescription_Wildcard(fileConfigPager.description);
                } else if (fileConfigPager.description.endsWith("*")) {
                    cb.query().setDescription_Prefix(fileConfigPager.description.replaceAll("\\*$", StringUtil.EMPTY));
                } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top