Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,704 for protected (0.04 sec)

  1. src/main/java/org/codelibs/core/misc/Tuple5.java

     */
    public class Tuple5<T1, T2, T3, T4, T5> {
    
        /** The first value */
        protected T1 value1;
    
        /** The second value */
        protected T2 value2;
    
        /** The third value */
        protected T3 value3;
    
        /** The fourth value */
        protected T4 value4;
    
        /** The fifth value */
        protected T5 value5;
    
        /**
         * Creates and returns a tuple of five values.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        protected UrlQueueService<OpenSearchUrlQueue> urlQueueService;
    
        /** Service for URL filtering operations */
        @Resource
        protected UrlFilterService urlFilterService;
    
        /** Behavior class for click log operations */
        @Resource
        protected ClickLogBhv clickLogBhv;
    
        /** Behavior class for favorite log operations */
        @Resource
        protected FavoriteLogBhv favoriteLogBhv;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/AbstractVersionTransformation.java

     */
    @Deprecated
    public abstract class AbstractVersionTransformation extends AbstractLogEnabled implements ArtifactTransformation {
        @Inject
        protected RepositoryMetadataManager repositoryMetadataManager;
    
        @Inject
        protected WagonManager wagonManager;
    
        @Override
        public void transformForResolve(
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "crawling_info";
        protected final String _tableDispName = "crawling_info";
        protected final String _tablePropertyName = "CrawlingInfo";
    
        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
    - 8.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ElevateWordToLabelDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "elevate_word_to_label";
        protected final String _tableDispName = "elevate_word_to_label";
        protected final String _tablePropertyName = "ElevateWordToLabel";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

         * and atomic updates to ensure data consistency during modifications.
         */
        protected class MappingUpdater implements Closeable {
    
            /** Flag indicating whether changes should be committed to the file. */
            protected boolean isCommit = false;
    
            /** Temporary file used for writing updates before committing. */
            protected File newFile;
    
            /** Writer for outputting content to the temporary file. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsAccessTokenBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<AccessToken> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends AccessToken> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected AccessTokenCB xprepareCBAsPK(String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsElevateWordToLabelBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<ElevateWordToLabel> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends ElevateWordToLabel> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected ElevateWordToLabelCB xprepareCBAsPK(String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsKeyMatchBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<KeyMatch> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends KeyMatch> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected KeyMatchCB xprepareCBAsPK(String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsRelatedContentBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<RelatedContent> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends RelatedContent> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected RelatedContentCB xprepareCBAsPK(String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10K bytes
    - Viewed (0)
Back to top