Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for setUrls (0.04 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    for (int i = 0; i < errorCount.get(); i++) {
                        FailureUrl failureUrl = new FailureUrl();
                        failureUrl.setId("E" + i);
                        failureUrl.setUrl("http://test.com/" + i + ".html");
                        failureUrl.setErrorCount(i);
                        failureUrl.setErrorName("TestError" + i);
                        list.add(failureUrl);
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

                return entity;
            }).orElseGet(() -> {
                final FailureUrl entity = new FailureUrl();
                entity.setErrorCount(1);
                entity.setUrl(url);
                if (crawlingConfig != null) {
                    entity.setConfigId(crawlingConfig.getConfigId());
                }
                return entity;
            });
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/FavoriteLogDbm.java

                    "queryId");
            setupEpg(_epgMap, et -> ((FavoriteLog) et).getUrl(), (et, vl) -> ((FavoriteLog) et).setUrl(DfTypeUtil.toString(vl)), "url");
            setupEpg(_epgMap, et -> ((FavoriteLog) et).getUserInfoId(), (et, vl) -> ((FavoriteLog) et).setUserInfoId(DfTypeUtil.toString(vl)),
                    "userInfoId");
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

            /**
             * @return URL
             */
            public URL getURL() {
                return url_;
            }
    
            /**
             * @param url
             */
            public void setURL(final URL url) {
                url_ = url;
            }
    
            /**
             * @return Returns the cal.
             */
            public Calendar getCal() {
                return cal;
            }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 11K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                final Crawler crawler = ComponentUtil.getComponent(Crawler.class);
                crawler.setSessionId(sid);
                sessionIdList.add(sid);
    
                final String urlsStr = webConfig.getUrls();
                if (StringUtil.isBlank(urlsStr)) {
                    logger.warn("No target urls. Skipped");
                    break;
                }
    
                // interval time
                final int intervalTime =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            }
    
            /**
             * Sets the URL associated with this statistics key object.
             *
             * @param url the URL to associate with this object
             */
            public void setUrl(final String url) {
                this.url = url;
            }
    
            /**
             * Gets the URL associated with this statistics key object.
             *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                            if (!favoriteLogService.addUrl(userCode, (userInfo, favoriteLog) -> {
                                favoriteLog.setUserInfoId(userInfo.getId());
                                favoriteLog.setUrl(favoriteUrl);
                                favoriteLog.setDocId(docId);
                                favoriteLog.setQueryId(queryId);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                        for (int i = 0; i < maxRedirectCount; i++) {
                            processedUrls.add(currentUrl);
                            if (keyObj != null) {
                                keyObj.setUrl(currentUrl);
                            }
                            crawlerStatsHelper.record(keyObj, StatsAction.PREPARED);
                            currentUrl = processRequest(paramMap, localDataMap, currentUrl, client);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

                // Do nothing in test
            }
    
            @Override
            public void setRuleId(String ruleId) {
                // Do nothing in test
            }
    
            @Override
            public void setUrl(String url) {
                // Do nothing in test
            }
    
            @Override
            public void setParentUrl(String parentUrl) {
                // Do nothing in test
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                        url = url.replaceAll(entry.getKey(), entry.getValue());
                    }
                    url = pathMappingHelper.replaceUrl(url);
                    requestData.setUrl(replaceDuplicateHost(url));
                }
            }
            return urlList;
        }
    
        /**
         * Gets the path mapping helper for URL transformations.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
Back to top