Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,353 for protected (0.04 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionAggregation.java

    public abstract class EsAbstractConditionAggregation {
    
        protected static final String CA_PROPERTY = "conditionAggregation";
    
        // ===================================================================================
        //                                                                           Attribute
        //                                                                           =========
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java

        }
    
        protected void regQ(QueryBuilder builder) {
            assertObjectNotNull("builder", builder);
            if (queryBuilderList == null) {
                queryBuilderList = new ArrayList<>();
            }
            queryBuilderList.add(builder);
        }
    
        protected void regOBA(String field) {
            registerOrderBy(field, true);
        }
    
        protected void regOBD(String field) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 21.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileConfigDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "file_config";
        protected final String _tableDispName = "file_config";
        protected final String _tablePropertyName = "FileConfig";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/WebConfigDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "web_config";
        protected final String _tableDispName = "web_config";
        protected final String _tablePropertyName = "WebConfig";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/WebAuthenticationDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "web_authentication";
        protected final String _tableDispName = "web_authentication";
        protected final String _tablePropertyName = "WebAuthentication";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/TableCollectionTest.java

        abstract Table<String, Integer, Character> makeTable();
    
        @Override
        protected Map<String, Map<Integer, Character>> makePopulatedMap() {
          Table<String, Integer, Character> table = makeTable();
          populateTable(table);
          return table.rowMap();
        }
    
        // `protected` to work around b/320650932 / KT-67447 runtime crash
        protected final void populateTable(Table<String, Integer, Character> table) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/LabelTypeDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "label_type";
        protected final String _tableDispName = "label_type";
        protected final String _tablePropertyName = "LabelType";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsLabelType.java

        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** excludedPaths */
        protected String excludedPaths;
    
        /** includedPaths */
        protected String includedPaths;
    
        /** name */
        protected String name;
    
        /** permissions */
        protected String[] permissions;
    
        /** sortOrder */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/PathMappingDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "path_mapping";
        protected final String _tableDispName = "path_mapping";
        protected final String _tablePropertyName = "PathMapping";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        protected int pageSize;
    
        /** Current page number being displayed. */
        protected int currentPageNumber;
    
        /** Total number of records matching the search query. */
        protected long allRecordCount;
    
        /** Relation type for the record count (e.g., "eq", "gte"). */
        protected String allRecordCountRelation;
    
        /** Total number of pages based on record count and page size. */
        protected int allPageCount;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top