Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for published (0.04 sec)

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

    {
      "title": "Sample Document",
      "author": "John Doe",
      "version": "1.0",
      "published": "2025-01-15",
      "tags": ["crawler", "extractor", "json"],
      "content": {
        "summary": "This is a sample JSON document for testing",
        "body": "The extractor should handle nested objects and arrays properly"
      },
      "metadata": {
        "created_at": "2025-01-01T00:00:00Z",
        "updated_at": "2025-01-15T12:00:00Z"
      }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 412 bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java

        /**
         * The duration of the video in seconds.
         * Value must be from 1 to 28800 (8 hours).
         */
        private String duration;
    
        /**
         * The date the video was first published, in W3C format.
         */
        private String publicationDate;
    
        /**
         * An optional arbitrary string tag describing the video.
         * Maximum 32 characters.
         */
        private String category;
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsPublisherExtractor.java

        }
    
        /**
         * Extracts text from the Publisher input stream.
         * @param in The input stream.
         * @param params The parameters.
         * @return The extracted data.
         */
        @Override
        public ExtractData getText(final InputStream in, final Map<String, String> params) {
            if (in == null) {
                throw new CrawlerSystemException("Microsoft Publisher input stream is null. Cannot extract text from null input.");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 2K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="@string{" type="stringignorecase" offset="0"/>
          <match value="@techreport{" type="stringignorecase" offset="0"/>
          <match value="@unpublished{" type="stringignorecase" offset="0"/>
        </magic>
        <magic priority="30">
          <match value="%" type="string" offset="0">
             <match value="\n@article{" type="stringignorecase" offset="2:128"/>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Oct 16 07:46:32 UTC 2025
    - 320.2K bytes
    - Viewed (2)
Back to top