Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for xlsb (0.12 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java

        }
    
        public void test_getText_msexcelx() {
            InputStream in = ResourceUtil.getResourceAsStream("extractor/msoffice/test.xlsx");
            Map<String, String> params = new HashMap<String, String>();
            params.put("resourceName", "test.xlsx");
            ExtractData extractData = jodExtractor.getText(in, params);
            String content = extractData.getContent();
            CloseableUtil.closeQuietly(in);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java

                    "hoge.docx");
            assertContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "test/text1.txt", "hoge.xlsx");
            assertContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "extractor/msoffice/test.xlsx", "hoge.xlsx");
            assertContentType("application/vnd.openxmlformats-officedocument.presentationml.presentation", "test/text1.txt", "hoge.pptx");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/extractor/msoffice/test.xlsx

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 9.6K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/extractor/msoffice/test_as.xlsx

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 9K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/extractor/msoffice/test.xls

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 22K bytes
    - Viewed (0)
  6. fess-crawler/src/test/resources/extractor/msoffice/test_as.xls

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 19K bytes
    - Viewed (0)
  7. dbflute_fess/playsql/_readme.txt

    /- - - - - - - - - - - - - - - - - - - -
    playsql
      |-data
         |-common
         |  |-xls
         |     |-10-master.xls
         |     |-defaultValueMap.dataprop
         |-ut
            |-xls
               |-20-member.xls  
               |-30-product.xls  
               |-defaultValueMap.dataprop
    - - - - - - - - - -/
    
    The format of a xls file is like this:
    /- - - - - - - - - - - - - - - - - - - -
    |MEMBER_ID|MEMBER_NAME|BIRTHDATE |
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 1.3K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

            // Spreadsheet Formats
            extensionMap.put("ods", "tsv");
            extensionMap.put("ots", "tsv");
            extensionMap.put("sxc", "tsv");
            extensionMap.put("xls", "tsv");
            extensionMap.put("xlsx", "tsv");
            extensionMap.put("csv", "tsv");
            extensionMap.put("tsv", "tsv");
            // Presentation Formats
            extensionMap.put("odp", "pdf");
            extensionMap.put("otp", "pdf");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. test/fixedbugs/issue15585.go

    			r = ((b0 >> 1) | b1) >> 1
    		E:
    			if c != -1 {
    				p = ^(l | c | r)
    			} else {
    				rc++
    				goto R
    			}
    		L:
    			if p != 0 {
    				lsb := p & -p
    				p &^= lsb
    				ll[d], cc[d], rr[d], pp[d] = l, c, r, p
    				l, c, r = (l|lsb)<<1, c|lsb, (r|lsb)>>1
    				d++
    				goto E
    			}
    		R:
    			d--
    			if d >= 0 {
    				l, c, r, p = ll[d], cc[d], rr[d], pp[d]
    				goto L
    			}
    		}
    	}
    	rc <<= 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 18:35:44 UTC 2016
    - 829 bytes
    - Viewed (0)
  10. src/compress/lzw/reader_test.go

    	err        error
    }
    
    var lzwTests = []lzwTest{
    	{
    		"empty;LSB;8",
    		"",
    		"\x01\x01",
    		nil,
    	},
    	{
    		"empty;MSB;8",
    		"",
    		"\x80\x80",
    		nil,
    	},
    	{
    		"tobe;LSB;7",
    		"TOBEORNOTTOBEORTOBEORNOT",
    		"\x54\x4f\x42\x45\x4f\x52\x4e\x4f\x54\x82\x84\x86\x8b\x85\x87\x89\x81",
    		nil,
    	},
    	{
    		"tobe;LSB;8",
    		"TOBEORNOTTOBEORTOBEORNOT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top