Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for hpp (0.02 sec)

  1. fess-crawler/src/test/resources/extractor/program/test.hpp

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 48 bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java

            assertContentType("text/x-chdr", "extractor/program/test.h", "test.h");
            assertContentType("text/x-c++hdr", "extractor/program/test.hpp", "test.hpp");
            assertContentType("text/x-java-source", "extractor/program/test.java", "test.java");
            assertContentType("application/javascript", "extractor/program/test.js", "test.js");
        }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java

            logger.info(content);
            assertTrue(content.contains("ใƒ†ใ‚นใƒˆ"));
        }
    
        public void test_getTika_hpp() {
            final InputStream in = ResourceUtil.getResourceAsStream("extractor/program/test.hpp");
            final ExtractData extractData = tikaExtractor.getText(in, null);
            final String content = extractData.getContent();
            CloseableUtil.closeQuietly(in);
            logger.info(content);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    compiled with the C compiler. Any .cc, .cpp, or .cxx files will be
    compiled with the C++ compiler. Any .f, .F, .for or .f90 files will be
    compiled with the fortran compiler. Any .h, .hh, .hpp, or .hxx files will
    not be compiled separately, but, if these header files are changed,
    the package (including its non-Go source files) will be recompiled.
    Note that changes to files in other directories do not cause the package
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Oct 01 22:52:54 UTC 2024
    - 44K bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
    
      <mime-type type="text/x-c++hdr">
        <_comment>C++ source code header</_comment>
        <glob pattern="*.hpp"/>
        <glob pattern="*.hxx"/>
        <glob pattern="*.hh"/>
        <glob pattern="*.H"/>
        <glob pattern="*.h++"/>
        <glob pattern="*.hp"/>
        <glob pattern="*.HPP"/>
        <sub-class-of type="text/plain"/>
      </mime-type>
    
      <mime-type type="text/x-c++src">
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top