Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for getPipe (0.14 sec)

  1. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                    }
                    if (responseData.getLastModified() == null) {
                        return true;
                    }
                    if (responseData.getLastModified().getTime() <= lastModified.getTime() && httpStatusCode == 200) {
    
                        log(logHelper, LogType.NOT_MODIFIED, crawlerContext, urlQueue);
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/InvalidAccessTokenException.java

        private final String type;
    
        public InvalidAccessTokenException(final String type, final String message) {
            super(message);
            this.type = type;
        }
    
        public String getType() {
            return type;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1016 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java

        protected ListBody createListBody(final DictionaryFile<? extends DictionaryItem> dictionaryFile) {
            final ListBody body = new ListBody();
            body.id = dictionaryFile.getId();
            body.type = dictionaryFile.getType();
            body.path = dictionaryFile.getPath();
            body.timestamp = dictionaryFile.getTimestamp();
            return body;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        public abstract String[] getExtraQueries();
    
        public abstract Object getAttribute(String name);
    
        public abstract Locale getLocale();
    
        public abstract SearchRequestType getType();
    
        public abstract String getSimilarDocHash();
    
        public String getTrackTotalHits() {
            return null;
        }
    
        public Float getMinScore() {
            return null;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                final String value = url.replaceFirst("^smb.?:/+", StringUtil.EMPTY);
                return abbreviateSite("\\\\" + value.replace('/', '\\'));
            }
    
            return getSite(url, encoding);
        }
    
        @Override
        public Object getData(final AccessResultData<?> accessResultData) {
            final byte[] data = accessResultData.getData();
            if (data != null) {
                try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                return name + "-" + version + ".jar";
            }
    
            public String getUrl() {
                return url;
            }
    
            public ArtifactType getType() {
                return ArtifactType.getType(name);
            }
    
            @Override
            public String toString() {
                return name + ":" + version;
            }
        }
    
        public enum ArtifactType {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SambaHelper.java

                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            fessConfig = ComponentUtil.getFessConfig();
        }
    
        public String getAccountId(final SID sid) {
            final int type = sid.getType();
            if (logger.isDebugEnabled()) {
                try {
                    logger.debug("Processing SID: {} {} {}", type, sid, sid.toDisplayString());
                } catch (final Exception e) {
                    // ignore
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

        public void store(final DictionaryFile<? extends DictionaryItem> dictFile, final File file) {
            getDictionaryFile(dictFile.getId()).ifPresent(currentFile -> {
                if (currentFile.getTimestamp().getTime() > dictFile.getTimestamp().getTime()) {
                    throw new DictionaryException(dictFile.getPath() + " was updated.");
                }
    
                // TODO use stream
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

            }
        }
    
        protected void showFileFieldParameter(final FileItem item) {
            if (logger.isDebugEnabled()) {
                logger.debug("[param] {}:{name={}, size={}}", item.getFieldName(), item.getName(), item.getSize());
            }
        }
    
        protected void handleSizeLimitExceededException(final HttpServletRequest request, final SizeLimitExceededException e) {
            final long actual = e.getActualSize();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java

        }
    
        @Override
        public Locale getLocale() {
            return ComponentUtil.getRequestManager().getUserLocale();
        }
    
        @Override
        public SearchRequestType getType() {
            return SearchRequestType.ADMIN_SEARCH;
        }
    
        @Override
        public String getSimilarDocHash() {
            return sdh;
        }
    
        @Override
        public String getTrackTotalHits() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.7K bytes
    - Viewed (0)
Back to top