Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 391 for jame (0.03 sec)

  1. fess-crawler/src/test/resources/extractor/csv/test.csv

    Name,Email,Age,Department
    John Doe,******@****.***,30,Engineering
    Jane Smith,jane@example.com,28,Marketing
    Bob Johnson,******@****.***,35,Sales
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 193 bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java

            assertEquals("my-bucket-name", getField(gcsConn, "bucketName"));
            assertEquals("object.txt", getField(gcsConn, "objectName"));
        }
    
        /**
         * Test URL parsing with dots in bucket name.
         */
        public void test_urlParsing_dotsInBucket() throws Exception {
            URL url = new URL("gcs://my.bucket.name/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.1K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java

            assertEquals("my-bucket-name", getField(storageConn, "bucketName"));
            assertEquals("object.txt", getField(storageConn, "objectName"));
        }
    
        /**
         * Test URL parsing with dots in bucket name.
         */
        public void test_urlParsing_dotsInBucket() throws Exception {
            URL url = new URL("storage://my.bucket.name/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)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    		<property name="maxDepth">10</property>
    		<property name="extractMetadata">true</property>
    	</component>
    	<component name="csvExtractor"
    		class="org.codelibs.fess.crawler.extractor.impl.CsvExtractor">
    		<property name="hasHeader">true</property>
    		<property name="autoDetectDelimiter">true</property>
    		<property name="extractColumnMetadata">true</property>
    	</component>
    	<component name="markdownExtractor"
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 50.1K bytes
    - Viewed (0)
  5. CLAUDE.md

    CrawlingParameterUtil.setUrlQueue(urlQueue);
    
    // Get (anywhere in same thread)
    CrawlerContext ctx = CrawlingParameterUtil.getCrawlerContext();
    
    // Clear (ALWAYS in finally)
    CrawlingParameterUtil.clearAll();
    ```
    
    ## Log Message Guidelines
    
    - Format parameters as `key=value` (e.g., `sessionId={}`, `url={}`)
    - Prefix with `[name]` when context identification is needed
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 28 17:31:34 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/gcs/Handler.java

     * using URLs with the "gcs" protocol.
     *
     * <p>
     * The URL format is expected to be: {@code gcs://bucketName/objectName}.
     * The bucket name and object name are extracted from the URL.
     * </p>
     *
     * <p>
     * The handler relies on environment variables for configuration:
     * </p>
     * <ul>
     *   <li>{@code GCS_PROJECT_ID}: The Google Cloud project ID.</li>
    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/main/java/org/codelibs/fess/net/protocol/s3/Handler.java

     * using URLs with the "s3" protocol.
     *
     * <p>
     * The URL format is expected to be: {@code s3://bucketName/objectName}.
     * The bucket name and object name are extracted from the URL.
     * </p>
     *
     * <p>
     * The handler relies on environment variables for configuration:
     * </p>
     * <ul>
     *   <li>{@code S3_ENDPOINT}: The endpoint URL of the S3 service.</li>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java

     * using URLs with the "storage" protocol.
     *
     * <p>
     * The URL format is expected to be: {@code storage://bucketName/objectName}.
     * The bucket name and object name are extracted from the URL.
     * </p>
     *
     * <p>
     * The handler relies on environment variables for configuration:
     * </p>
     * <ul>
     *   <li>{@code STORAGE_ENDPOINT}: The endpoint URL of the MinIO service.</li>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:52:56 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java

            data.putValue(ExtractData.URL, "https://example.com/docs/document.pdf");
            data.putValue("title", "Important Document");
            data.putValue("author", "Jane Smith");
            data.putValue("date", "2025-01-15");
    
            // Add multiple values
            String[] keywords = { "business", "report", "analysis", "2025" };
            data.putValues("keywords", keywords);
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

                fail("Should throw IllegalStateException for null component name");
            } catch (IllegalStateException e) {
                assertTrue(e.getMessage().contains("componentName"));
            } catch (Exception e) {
                fail("Expected IllegalStateException but got: " + e.getClass().getName());
            }
        }
    
        /**
         * Test creation with invalid component name throws exception
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 13:07:01 UTC 2025
    - 36.7K bytes
    - Viewed (0)
Back to top