Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 487 for Curl (0.38 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java

             * Constructs a new S3URLConnection for the specified URL.
             * This constructor parses the URL to extract bucket and object names.
             *
             * @param url The S3 URL to connect to
             */
            protected S3URLConnection(final URL url) {
                super(url);
                // Extract bucket name from host
                bucketName = url.getHost() != null ? url.getHost() : StringUtil.EMPTY;
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

         * This method applies duplicate host conversion before storing the URL.
         *
         * @param childUrl the child URL to store
         * @param parentUrl the parent URL that referenced this child URL
         * @param weight the weight/priority of the child URL
         * @param depth the crawling depth of the child URL
         */
        @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlFilterService.java

    /**
     * Service interface for managing URL filters.
     * Provides methods to add and remove include/exclude URL filters,
     * as well as retrieve the patterns of these filters.
     */
    public interface UrlFilterService {
    
        /**
         * Adds a URL to the include filter list for the specified session.
         *
         * @param sessionId the ID of the session for which the URL filter is being added
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

             *
             * @param url the URL to crawl
             * @param depth the depth of this URL in the crawling hierarchy
             */
            CrawlRequest(final String url, final int depth) {
                this.url = url;
                this.depth = depth;
            }
    
            /**
             * Gets the URL of this crawl request.
             *
             * @return the URL to be crawled
             */
            public String getUrl() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 29.7K bytes
    - Viewed (3)
  5. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java

         */
        public void test_protocol() throws Exception {
            URL url = new URL("storage://bucket/object");
            assertEquals("storage", url.getProtocol());
        }
    
        /**
         * Test URL parsing with bucket and object path.
         */
        public void test_urlParsing_bucketAndObject() throws Exception {
            URL url = new URL("storage://mybucket/path/to/object.txt");
            Handler handler = new Handler();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/gcs/Handler.java

             * Constructs a new GcsURLConnection for the specified URL.
             * This constructor parses the URL to extract bucket and object names.
             *
             * @param url The GCS URL to connect to
             */
            protected GcsURLConnection(final URL url) {
                super(url);
                // Extract bucket name from host
                bucketName = url.getHost() != null ? url.getHost() : StringUtil.EMPTY;
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

                            + "  <url>\n" + "    <loc>http://www.example.com/page1.html</loc>\n" + "    <lastmod>2025-01-01</lastmod>\n"
                            + "    <priority>0.8</priority>\n" + "  </url>\n" + "  <url>\n" + "    <loc></loc>\n" + "  </url>\n" + "  <url>\n"
                            + "    <loc>http://www.example.com/page2.html</loc>\n" + "    <changefreq>daily</changefreq>\n" + "  </url>\n"
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

            return url.startsWith("file:") || url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("ftp:")
                    || url.startsWith("storage:") || url.startsWith("s3:") || url.startsWith("gcs:");
        }
    
        /**
         * Checks if the given URL should skip URL decoding when extracting file names.
         * Some protocols (like SMB, FTP, S3, GCS) should preserve the original URL encoding.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 12.4K bytes
    - Viewed (1)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResultData.java

            this.data = data;
        }
    
        /**
         * Add a child URL.
         * @param url the request data to add to the child URL set
         */
        public void addUrl(final RequestData url) {
            childUrlSet.add(url);
        }
    
        /**
         * Add child URLs.
         * @param c the collection of request data to add to the child URL set
         */
        public void addAllUrl(final Collection<RequestData> c) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtlmAuthenticator.java

         *
         * @param url the URL that requires authentication
         * @param sae the authentication exception that was thrown
         * @return credentials returned by prompt
         */
        public static NtlmPasswordAuthenticator requestNtlmPasswordAuthentication(final String url, final SmbAuthException sae) {
            return requestNtlmPasswordAuthentication(auth, url, sae);
        }
    
        /**
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.4K bytes
    - Viewed (0)
Back to top