Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for New (0.09 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

            if (dest.exists() && !dest.canWrite()) {
                return;
            }
            try (BufferedInputStream in = new BufferedInputStream(new SmbFileInputStream(src));
                    BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(dest))) {
                final byte[] buf = new byte[1024];
                int length;
                while (-1 < (length = in.read(buf))) {
                    out.write(buf, 0, length);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java

                    throw new MaxLengthExceededException(
                            "The content length (" + contentLength + " byte) is over " + maxContentLength + " byte.");
                } else if (contentLength == 0) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("The content length is 0.");
                    }
                    return new ExtractData(StringUtil.EMPTY);
                } else {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Mar 14 13:56:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java

        // Map<String, Object> paramMap = new HashMap<String, Object>();
        // httpClient.setInitParameterMap(paramMap);
        //
        // DigestScheme digestScheme = new DigestScheme();
        // List<Authentication> basicAuthList = new ArrayList<Authentication>();
        // basicAuthList.add(new AuthenticationImpl(
        // new AuthScope("www.hoge.com", 80),
        // new UsernamePasswordCredentials("username", "password"),
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        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<>();
    
        protected final List<FacetQueryView> facetQueryViewList = new ArrayList<>();
    
        protected String cacheTemplateName = "cache";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                    final String servletPath = request.getServletPath();
                    final String pathPrefix = ADMIN_SERVER + token;
                    if (!servletPath.startsWith(pathPrefix)) {
                        throw new WebApiException(HttpServletResponse.SC_FORBIDDEN, "Invalid access token.");
                    }
                    final String path;
                    final String value = servletPath.substring(pathPrefix.length());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Current Password */
        public static final String LABELS_OLD_PASSWORD = "{labels.oldPassword}";
    
        /** The key of the message: New Password */
        public static final String LABELS_NEW_PASSWORD = "{labels.newPassword}";
    
        /** The key of the message: New Password(Confirm) */
        public static final String LABELS_CONFIRM_NEW_PASSWORD = "{labels.confirmNewPassword}";
    
        /** The key of the message: System */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        protected final Map<String, String> designJspFileNameMap = new LinkedHashMap<>();
    
        protected final AtomicBoolean forceStop = new AtomicBoolean(false);
    
        protected LoadingCache<String, List<Map<String, String>>> langItemsCache;
    
        protected String filterPathEncoding;
    
        protected String[] supportedLanguages;
    
        protected List<Runnable> shutdownHookList = new ArrayList<>();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                    if (contentMap.get("path") instanceof final List<?> pathList) {
                        return pathList.stream().map(Object::toString).toArray(n -> new String[n]);
                    }
                } else if (response.getContentException() != null) {
                    logger.warn("ConfigSync request failed.", response.getContentException());
                } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/es/config/exentity/WebConfigTest.java

            final SetOnce<Map<String, Object>> initParamMapSet = new SetOnce<>();
            WebConfig webConfig = new WebConfig();
            webConfig.setUserAgent(Constants.CRAWLING_USER_AGENT_PREFIX + "1.0" + Constants.CRAWLING_USER_AGENT_SUFFIX);
            CrawlerClientFactory crawlerClientFactory = webConfig.initializeClientFactory(() -> new CrawlerClientFactory() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

        protected AuthScheme proxyAuthScheme = new BasicScheme();
    
        protected Credentials proxyCredentials;
    
        protected String defaultMimeType = APPLICATION_OCTET_STREAM;
    
        protected CookieStore cookieStore = new BasicCookieStore();
    
        protected HttpClientConnectionManager clientConnectionManager;
    
        protected DnsResolver dnsResolver = new IdnDnsResolver();
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top