Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for setURL (0.17 sec)

  1. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                    }
                    try {
                        for (int i = 0; i < maxRedirectCount; i++) {
                            if (keyObj != null) {
                                keyObj.setUrl(processingUrl);
                            }
                            crawlerStatsHelper.record(keyObj, StatsAction.PREPARED);
                            processingUrl = processRequest(paramMap, localDataMap, processingUrl, client);
    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)
  2. 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);
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  3. 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;
            }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            Mirror mirror = new Mirror();
    
            mirror.setId(id);
            mirror.setMirrorOf(mirrorOf);
            mirror.setMirrorOfLayouts(layouts);
            mirror.setUrl(url);
    
            return mirror;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  5. 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;
        }
    
        protected PathMappingHelper getPathMappingHelper() {
            return ComponentUtil.getPathMappingHelper();
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 41.9K bytes
    - Viewed (0)
  6. 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);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
Back to top