Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for qrls (0.18 sec)

  1. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            final String urls = "https://www.codelibs.org/" + "\n" + "http://failure.url";
            final String includedUrls = "https://www.codelibs.org/.*" + "\n" + "http://failure.url.*";
            requestBody.put("name", NAME_PREFIX + "WebConfig");
            requestBody.put("urls", urls);
            requestBody.put("included_urls", includedUrls);
            requestBody.put("user_agent", "Mozilla/5.0");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            }
    
            if (webConfigList.isEmpty() && fileConfigList.isEmpty()) {
                // nothing
                if (logger.isInfoEnabled()) {
                    logger.info("No crawling target urls.");
                }
                return;
            }
    
            doCrawl(sessionId, webConfigList, fileConfigList);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_ru.properties

    labels.web_crawling_configuration=Web сканирование
    labels.web_crawling_title_details=Конфигурация Web сканирования
    labels.included_urls=Включить URLs для сканирования
    labels.excluded_urls=Исключить URLs для сканирования
    labels.included_doc_urls=Включить URLs для индексации
    labels.excluded_doc_urls=Исключить URLs для индексации
    labels.user_agent=User Agent
    labels.web_crawling_button_create=Создать
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_label.properties

    labels.web_crawling_configuration=Web Crawling
    labels.web_crawling_title_details=Web Crawling Configuration
    labels.included_urls=Included URLs For Crawling
    labels.excluded_urls=Excluded URLs For Crawling
    labels.included_doc_urls=Included URLs For Indexing
    labels.excluded_doc_urls=Excluded URLs For Indexing
    labels.user_agent=User Agent
    labels.web_crawling_button_create=Create
    labels.web_crawling_button_create_job=Create new job
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  5. src/main/resources/fess_label_en.properties

    labels.web_crawling_configuration=Web Crawling
    labels.web_crawling_title_details=Web Crawling Configuration
    labels.included_urls=Included URLs For Crawling
    labels.excluded_urls=Excluded URLs For Crawling
    labels.included_doc_urls=Included URLs For Indexing
    labels.excluded_doc_urls=Excluded URLs For Indexing
    labels.user_agent=User Agent
    labels.web_crawling_button_create=Create
    labels.web_crawling_button_create_job=Create new job
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                final Map<String, String[]> resultUrlCache = getResultDocIdsCache(session);
                final String[] urls = resultUrlCache.get(queryId);
                if (urls != null) {
                    return urls;
                }
                return StringUtil.EMPTY_STRINGS;
            }).orElse(StringUtil.EMPTY_STRINGS);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

            if (StringUtil.isNotBlank(webConfigPager.name)) {
                cb.query().setName_Wildcard(wrapQuery(webConfigPager.name));
            }
            if (StringUtil.isNotBlank(webConfigPager.urls)) {
                cb.query().setUrls_Wildcard(wrapQuery(webConfigPager.urls));
            }
            if (StringUtil.isNotBlank(webConfigPager.description)) {
                if (webConfigPager.description.startsWith("*")) {
    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)
  8. okhttp/src/main/kotlin/okhttp3/internal/-RequestCommon.kt

      if (result == null) {
        result = CacheControl.parse(headers)
        lazyCacheControl = result
      }
      return result
    }
    
    internal fun canonicalUrl(url: String): String {
      // Silently replace web socket URLs with HTTP URLs.
      return when {
        url.startsWith("ws:", ignoreCase = true) -> {
          "http:${url.substring(3)}"
        }
        url.startsWith("wss:", ignoreCase = true) -> {
          "https:${url.substring(4)}"
        }
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebConfigDbm.java

                false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnUrls = cci("urls", "urls", null, null, String.class, "urls", null, false, false, false, "keyword", 0,
                0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

        private List<Integer> pageNumberList;
    
        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String name;
    
        public String urls;
    
        public String userAgent;
    
        public String numOfThread;
    
        public String intervalTime;
    
        public String boost;
    
        public String available;
    
        public String sortOrder;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
Back to top