Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for expRel (0.1 sec)

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

            PasswordBasedExtractor pdfExtractor = container.getComponent("pdfExtractor");
            extractorFactory.addExtractor("application/msword", tikaExtractor);
            extractorFactory.addExtractor("application/vnd.ms-excel", tikaExtractor);
            extractorFactory.addExtractor("application/vnd.ms-powerpoint", tikaExtractor);
            extractorFactory.addExtractor("application/vnd.visio", tikaExtractor);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/html/template/css_test.go

    		{`-express\69 on(alert(1337))`, "ZgotmplZ"},
    		{`-exp\72 ession(alert(1337))`, "ZgotmplZ"},
    		{`-exp\52 ession(alert(1337))`, "ZgotmplZ"},
    		{`-exp\000052 ession(alert(1337))`, "ZgotmplZ"},
    		{`-expre\0000073sion`, "-expre\x073sion"},
    		{`@import url evil.css`, "ZgotmplZ"},
    		{"<", "ZgotmplZ"},
    		{">", "ZgotmplZ"},
    	}
    	for _, test := range tests {
    		got := cssValueFilter(test.css)
    		if got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/encoding/csv/writer.go

    // no option to force the non-quoted behavior for quoted CSV, making
    // CSV with quoted empty strings strictly less useful.
    // Not quoting the empty string also makes this package match the behavior
    // of Microsoft Excel and Google Drive.
    // For Postgres, quote the data terminating string `\.`.
    func (w *Writer) fieldNeedsQuotes(field string) bool {
    	if field == "" {
    		return false
    	}
    
    	if field == `\.` {
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top