Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Engineering (1.02 sec)

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

    Name,Email,Age,Department
    John Doe,******@****.***,30,Engineering
    Jane Smith,******@****.***,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/crawler/extractor/impl/CsvExtractorTest.java

            // Verify data extraction
            assertTrue(content.contains("John Doe"));
            assertTrue(content.contains("******@****.***"));
            assertTrue(content.contains("Engineering"));
        }
    
        public void test_columnMetadata() {
            final InputStream in = ResourceUtil.getResourceAsStream("extractor/csv/test.csv");
            final ExtractData extractData = csvExtractor.getText(in, null);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  3. CLAUDE.md

    2. Write implementation following existing patterns
    3. Add comprehensive tests
    4. Run `mvn formatter:format license:format test`
    5. Update JavaDoc for changed/new classes
    
    **Principles:**
    - Avoid over-engineering - keep solutions simple
    - Only expose necessary public APIs
    - Validate parameters with `Objects.requireNonNull()`
    - Provide detailed error messages with context
    - Add logging with contextual information
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. LICENSE

    work containing portions of the Library, and distribute that work
    under terms of your choice, provided that the terms permit
    modification of the work for the customer's own use and reverse
    engineering for debugging such modifications.
    
      You must give prominent notice with each copy of the work that the
    Library is used in it and that the Library and its use are covered by
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
Back to top