Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,072 for protected (0.17 sec)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        protected String highlightTagPre;
    
        protected String highlightTagPost;
    
        protected boolean useSession = true;
    
        protected final Map<String, String> pageCacheMap = new ConcurrentHashMap<>();
    
        protected final Map<String, String> initFacetParamMap = new HashMap<>();
    
        protected final Map<String, String> initGeoParamMap = new HashMap<>();
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/curl/CurlRequest.java

    public class CurlRequest {
    
        protected static final String GZIP = "gzip";
    
        protected static final Logger logger = Logger.getLogger(CurlRequest.class.getName());
    
        protected String url;
    
        protected Proxy proxy;
    
        protected String encoding = "UTF-8";
    
        protected int threshold = 1024 * 1024; // 1m
    
        protected Method method;
    
        protected List<String> paramList;
    
    Registered: Thu Oct 31 02:32:13 UTC 2024
    - Last Modified: Sun Feb 12 12:21:25 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/bsbhv/BsFavoriteLogBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<FavoriteLog> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends FavoriteLog> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected FavoriteLogCB xprepareCBAsPK(String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<Role> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends Role> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected RoleCB xprepareCBAsPK(String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsBadWordBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<BadWord> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends BadWord> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected BadWordCB xprepareCBAsPK(String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoParamBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<CrawlingInfoParam> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends CrawlingInfoParam> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected CrawlingInfoParamCB xprepareCBAsPK(String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsPathMappingBhv.java

            return facadeSelectByPK(id);
        }
    
        protected OptionalEntity<PathMapping> facadeSelectByPK(String id) {
            return doSelectOptionalByPK(id, typeOfSelectedEntity());
        }
    
        protected <ENTITY extends PathMapping> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) {
            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected PathMappingCB xprepareCBAsPK(String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/dict/DictCrudTestBase.java

    import io.restassured.path.json.JsonPath;
    
    public abstract class DictCrudTestBase extends CrudTestBase {
        protected String dictId;
    
        abstract protected String getDictType();
    
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        @Override
        protected String getListEndpointSuffix() {
            return LIST_ENDPOINT_SUFFIX + "/" + dictId;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/DataConfigTests.java

        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
        @Override
        protected String getApiPath() {
            return API_PATH;
        }
    
        @Override
        protected String getKeyProperty() {
            return KEY_PROPERTY;
        }
    
        @Override
        protected String getListEndpointSuffix() {
            return LIST_ENDPOINT_SUFFIX;
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java

        extends AbstractContainerTester<Collection<E>, E> {
    
      // TODO: replace this with an accessor.
      protected Collection<E> collection;
    
      @Override
      protected Collection<E> actualContents() {
        return collection;
      }
    
      // TODO: dispose of this once collection is encapsulated.
      @Override
      @CanIgnoreReturnValue
      protected Collection<E> resetContainer(Collection<E> newContents) {
        collection = super.resetContainer(newContents);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 20:12:35 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top