Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 248 for url (0.74 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java

            if (urlQueue == null) {
                return;
            }
    
            final String url = urlQueue.getUrl();
            if (StringUtil.isBlank(url) || url.startsWith("file:")) {
                // not target
                return;
            }
    
            try {
                final URL u = new URL(url);
                final String host = u.getHost();
                if (host == null) {
                    return;
                }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

            String newUrl = url;
            for (final PathMapping pathMapping : pathMappingList) {
                if (matchUserAgent(pathMapping)) {
                    newUrl = pathMapping.process(this, newUrl);
                }
            }
            if (logger.isDebugEnabled() && !StringUtil.equals(url, newUrl)) {
                logger.debug("replace: {} -> {}", url, newUrl);
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. pom.xml

    	<description />
    	<url>https://github.com/codelibs/corelib</url>
    	<inceptionYear>2012</inceptionYear>
    	<licenses>
    		<license>
    			<name>The Apache Software License, Version 2.0</name>
    			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    			<distribution>repo</distribution>
    		</license>
    	</licenses>
    	<organization>
    		<name>CodeLibs Project</name>
    		<url>https://www.codelibs.org/</url>
    	</organization>
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/entity/EsUrlQueue.java

            if (sessionId != null) {
                builder.field(SESSION_ID, sessionId);
            }
            if (method != null) {
                builder.field(METHOD, method);
            }
            if (url != null) {
                builder.field(URL, url);
            }
            if (parentUrl != null) {
                builder.field(PARENT_URL, parentUrl);
            }
            if (depth != null) {
                builder.field(DEPTH, depth);
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/main/webapp/js/login.js

        var button = $(event.relatedTarget),
            docId = button.data("docid"),
            title = button.data("title"),
            url = button.data("url");
    
        $(this)
          .find(".modal-body #delete-doc-title")
          .text(title);
        $(this)
          .find(".modal-body #delete-doc-url")
          .text(url);
        $(this)
          .find(".modal-footer input#docId")
          .val(docId);
      });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Sep 12 06:47:49 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/io/ResourceTraversalTest.java

         */
        @Test
        public void testForEachZipInputStream() throws Exception {
            final String classFilePath = TestCase.class.getName().replace('.', '/') + ".class";
            final URL classURL = ResourceUtil.getResource(classFilePath);
            final URL jarURL = new File(JarFileUtil.toJarFilePath(classURL)).toURI().toURL();
            ResourceTraversalUtil.forEach(new ZipInputStream(jarURL.openStream()), (ResourceHandler) (path, is) -> {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/io/PropertiesUtilTest.java

    import org.junit.rules.ExpectedException;
    import org.junit.rules.TemporaryFolder;
    
    /**
     * @author wyukawa
     *
     */
    public class PropertiesUtilTest {
    
        URL url = ResourceUtil.getResource(getClass().getName().replace('.', '/') + ".txt");
    
        File inputFile = URLUtil.toFile(url);
    
        /**
         *
         */
        @Rule
        public TemporaryFolder tempFolder = new TemporaryFolder();
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/main/resources/crawler/rule.xml

    		<property name="responseProcessor">
    			<component class="org.codelibs.fess.crawler.processor.impl.SitemapsResponseProcessor">
    			</component>
    		</property>
    		<postConstruct name="addRule">
    			<arg>"url"</arg>
    			<arg>"http[s]?:.*sitemap[^/]*\.xml.*|http[s]?:.*sitemap[^/]*\.gz.*|http[s]?:.*sitemap[^/]*\.txt.*"</arg>
    		</postConstruct>
    	</component>
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 04 08:42:49 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/UrlConvertHelper.java

     *
     */
    public class UrlConvertHelper {
    
        protected Map<String, String> convertMap = new LinkedHashMap<>();
    
        public String convert(final String url) {
            if (url == null) {
                return null;
            }
            String convertedUrl = url;
            for (final Map.Entry<String, String> entry : convertMap.entrySet()) {
                convertedUrl = convertedUrl.replaceAll(entry.getKey(), entry.getValue());
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            });
        }
    
        private void buildSearchCondition(final FailureUrlPager failureUrlPager, final FailureUrlCB cb) {
            // search
            if (StringUtil.isNotBlank(failureUrlPager.url)) {
                cb.query().setUrl_Wildcard(failureUrlPager.url);
            }
    
            if (StringUtil.isNotBlank(failureUrlPager.errorCountMax)) {
                cb.query().setErrorCount_LessEqual(Integer.parseInt(failureUrlPager.errorCountMax));
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top