Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for emlx (0.18 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-dtbncx+xml",
    				"application/x-dtbook+xml",
    				"application/x-dtbresource+xml",
    				"application/x-dvi",
    				"application/x-elc",
    				"application/x-elf",
    				"message/x-emlx",
    				"application/x-killustrator",
    				"application/x-object",
    				"application/x-executable",
    				"application/x-sharedlib",
    				"application/x-coredump",
    				"application/x-dosexec",
    				"application/x-emf",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. fess-crawler/src/test/resources/extractor/eml/sample3.eml

    データお知らせPDFサンプルデータお
    知らせPDFサンプルデータ
    お知らせPDFサンプルデータお知らせ
    PDFサンプルデータお知らせPDFサ
    ンプルデータお知らせPDFサンプル
    データお知らせPDFサンプルデータお
    知らせPDFサンプルデータお知らせ
    PDFサンプルデータお知らせPDFサ
    ンプルデータお知らせPDFサンプル
    データお知らせPDFサンプルデータお
    知らせPDFサンプルデータ
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 539.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/extractor/eml/sample1.eml

    Shinsuke Sugaya <******@****.***> 1452930635 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 9.3K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    Shinsuke Sugaya <******@****.***> 1452930635 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/extractor/eml/sample4.eml

    Shinsuke Sugaya <******@****.***> 1515316511 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Jan 07 09:15:11 UTC 2018
    - 681K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractorTest.java

                    });
            emlExtractor = container.getComponent("emlExtractor");
        }
    
        public void test_getText() throws IOException {
            try (final InputStream in = ResourceUtil.getResourceAsStream("extractor/eml/sample1.eml")) {
                ExtractData data = emlExtractor.getText(in, null);
                final String content = data.getContent();
                logger.info(content);
                assertTrue(content.contains("プレイステーション"));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java

            assertContentType("application/xml", "extractor/test.mm", "hoge.mm");
    
            assertContentType("message/rfc822", "extractor/eml/sample1.eml", "sample1.eml");
    
            assertContentType("application/octet-stream", null, "hoge");
    
            assertContentType("application/vnd.ms-powerpoint", "extractor/msoffice/test.ppt", "h&oge.ppt");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. .gitattributes

    *.sh        eol=lf
    *.bat       eol=crlf
    *.cmd       eol=crlf
    *.dxf       eol=crlf
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Jan 07 09:15:11 UTC 2018
    - 103 bytes
    - Viewed (0)
  9. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
    
      <mime-type type="application/x-elf">
        <magic priority="50">
          <match value="\177ELF" type="string" offset="0" />
        </magic>
      </mime-type>
    
      <mime-type type="message/x-emlx">
        <magic priority="70">
          <match value="\nRelay-Version:" type="string" offset="2:9"/>
          <match value="\n#!\ rnews" type="string" offset="2:9"/>
          <match value="\nN#!\ rnews" type="string" offset="2:9"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  10. src/math/big/float.go

    		// (rounding never causes underflows to 0).
    		// If the exponent is too large, also overflow to ±Inf.
    		if r.form == inf || e > emax {
    			// overflow
    			if x.neg {
    				return float32(math.Inf(-1)), Below
    			}
    			return float32(math.Inf(+1)), Above
    		}
    		// e <= emax
    
    		// Determine sign, biased exponent, and mantissa.
    		var sign, bexp, mant uint32
    		if x.neg {
    			sign = 1 << (fbits - 1)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top