Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 177 for qrls (0.15 sec)

  1. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_edit.jsp

                                        <label for="urls" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.urls"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="urls"/>
                                            <la:textarea styleId="urls" property="urls" styleClass="form-control"
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 15.9K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig.jsp

                                            <label for="urls" class="col-sm-2 text-sm-right col-form-label"><la:message
                                                    key="labels.urls"/></label>
                                            <div class="col-sm-10">
                                                <la:text styleId="urls" property="urls" styleClass="form-control"/>
                                            </div>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Mar 31 05:47:05 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java

            Set<String> packages = new LinkedHashSet<>();
    
            try {
                Enumeration<URL> urls = loader.getResources(BUILDER.getExtensionDescriptorLocation());
                while (urls.hasMoreElements()) {
    
                    try (InputStream is = urls.nextElement().openStream()) {
                        ExtensionDescriptor descriptor = BUILDER.build(is);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 07:14:56 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  4. 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 Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  5. docs/features/connections.md

    ### [URLs](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-http-url/)
    
    URLs (like `https://github.com/square/okhttp`) are fundamental to HTTP and the Internet. In addition to being a universal, decentralized naming scheme for everything on the web, they also specify how to access web resources.
    
    URLs are abstract:
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Feb 21 03:33:59 GMT 2022
    - 5.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml

      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4116</name>
      <description>
        Test that the project builder does not decode URLs (which must be done by the transport layer instead).
      </description>
    
      <!-- some URLs using percent-encoded characters -->
      <url>https://maven.apache.org/spacy%20path</url>
      <scm>
        <connection>scm:svn:svn+ssh://svn.apache.org/spacy%20path</connection>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/UrlEscapers.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.escape.Escaper;
    
    /**
     * {@code Escaper} instances suitable for strings to be included in particular sections of URLs.
     *
     * <p>If the resulting URLs are inserted into an HTML or XML document, they will require additional
     * escaping with {@link com.google.common.html.HtmlEscapers} or {@link
     * com.google.common.xml.XmlEscapers}.
     *
     * @author David Beaumont
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 28 15:04:33 GMT 2021
    - 6.9K bytes
    - Viewed (0)
  8. 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 Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  9. 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 Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  10. 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 Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
Back to top