Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 626 for createdAt (0.15 sec)

  1. src/main/config/es/fess_config_file_config.json

                "type" : "boolean"
              },
              "boost" : {
                "type" : "float"
              },
              "configParameter" : {
                "type" : "keyword"
              },
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "depth" : {
                "type" : "integer"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/ITBase.java

                            + DEFAULT_TEST_TOKEN + "\"}\n")
                    .when()
                    .post(getEsUrl() + "/_bulk");
            given().contentType("application/json").when().post(getEsUrl() + "/_refresh");
            logger.info("Created Token: {}", DEFAULT_TEST_TOKEN);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

        /** The file configuration ID associated with this authentication. */
        public String fileConfigId;
    
        /** The user who created this file authentication entry. */
        public String createdBy;
    
        /** The timestamp when this file authentication entry was created. */
        public String createdTime;
    
        /** The version number for optimistic locking. */
        public String versionNo;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java

        /** 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;
    
        /** The created time of the label type. */
        public String createdTime;
    
        /** The version number of the label type. */
        public String versionNo;
    
        /**
         * Clears the pager fields.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

        public String id;
    
        /** Search parameter: suggest word */
        public String suggestWord;
    
        /** Search parameter: boost value */
        public String boost;
    
        /** Search parameter: created by user */
        public String createdBy;
    
        /** Search parameter: creation time */
        public String createdTime;
    
        /** Search parameter: version number */
        public String versionNo;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

        /** Search term for filtering related content. */
        public String term;
    
        /** Content text for filtering related content. */
        public String content;
    
        /** User who created the related content. */
        public String createdBy;
    
        /** Creation time of the related content. */
        public String createdTime;
    
        /** Version number for optimistic locking. */
        public String versionNo;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

        /** Availability status of the configuration */
        public String available;
    
        /** Sort order for the configuration */
        public String sortOrder;
    
        /** User who created the configuration */
        public String createdBy;
    
        /** Creation timestamp of the configuration */
        public String createdTime;
    
        /** Version number of the configuration */
        public String versionNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsDuplicateHostCQ.java

            TermQueryBuilder builder = regTermQ("createdBy", createdBy);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_NotEqual(String createdBy) {
            setCreatedBy_NotTerm(createdBy, null);
        }
    
        public void setCreatedBy_NotTerm(String createdBy) {
            setCreatedBy_NotTerm(createdBy, null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 58.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsLabelTypeCQ.java

            TermQueryBuilder builder = regTermQ("createdBy", createdBy);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_NotEqual(String createdBy) {
            setCreatedBy_NotTerm(createdBy, null);
        }
    
        public void setCreatedBy_NotTerm(String createdBy) {
            setCreatedBy_NotTerm(createdBy, null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 87.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDuplicateHost.java

        public String getCreatedBy() {
            checkSpecifiedProperty("createdBy");
            return convertEmptyToNull(createdBy);
        }
    
        public void setCreatedBy(String value) {
            registerModifiedProperty("createdBy");
            this.createdBy = value;
        }
    
        public Long getCreatedTime() {
            checkSpecifiedProperty("createdTime");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top