Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DOCTYPE (0.41 sec)

  1. src/html/template/escape_test.go

    			"a<b",
    		},
    		{
    			"HTML doctype not normalized",
    			"<!DOCTYPE html>Hello, World!",
    			"<!DOCTYPE html>Hello, World!",
    		},
    		{
    			"HTML doctype not case-insensitive",
    			"<!doCtYPE htMl>Hello, World!",
    			"<!doCtYPE htMl>Hello, World!",
    		},
    		{
    			"No doctype injection",
    			`<!{{"DOCTYPE"}}`,
    			"&lt;!DOCTYPE",
    		},
    		{
    			"Split HTML comment",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                        logger.info("Created {}/{} mapping.", indexName, docType);
                    } else {
                        logger.warn("Failed to create {}/{} mapping.", indexName, docType);
                    }
    
                    final String dataPath = getResourcePath(indexConfigPath, fessConfig.getFesenType(), "/" + index + "/" + docType + ".bulk");
                    if (ResourceUtil.isExist(dataPath)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    	wg.Wait()
    }
    
    func TestIsValidDirective(t *testing.T) {
    	testOK := []string{
    		"<>",
    		"< < > >",
    		"<!DOCTYPE '<' '>' '>' <!--nothing-->>",
    		"<!DOCTYPE doc [ <!ELEMENT doc ANY> <!ELEMENT doc ANY> ]>",
    		"<!DOCTYPE doc [ <!ELEMENT doc \"ANY> '<' <!E\" LEMENT '>' doc ANY> ]>",
    		"<!DOCTYPE doc <!-- just>>>> a < comment --> [ <!ITEM anything> ] >",
    	}
    	testKO := []string{
    		"<",
    		">",
    		"<!--",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="tikaExtractor"
    		class="org.codelibs.fess.crawler.extractor.impl.TikaExtractor">
    		<property name="maxCompressionRatio">1</property>
    		<property name="maxUncompressionSize">10000000</property>
    	</component>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    #define NiL		0
    #else
    #define NiL		(char*)0
    #endif
    #endif
    
    #define H(x)		do{if(html)fprintf(stderr,x);}while(0)
    #define T(x)		fprintf(stderr,x)
    
    static void
    help(int html)
    {
    H("<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML//EN\">\n");
    H("<HTML>\n");
    H("<HEAD>\n");
    H("<TITLE>testregex man document</TITLE>\n");
    H("</HEAD>\n");
    H("<BODY bgcolor=white>\n");
    H("<PRE>\n");
    T("NAME\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    		}
    	}
    }
    
    func TestFileServerEscapesNames(t *testing.T) { run(t, testFileServerEscapesNames) }
    func testFileServerEscapesNames(t *testing.T, mode testMode) {
    	const dirListPrefix = "<!doctype html>\n<meta name=\"viewport\" content=\"width=device-width\">\n<pre>\n"
    	const dirListSuffix = "\n</pre>\n"
    	tests := []struct {
    		name, escaped string
    	}{
    		{`simple_name`, `<a href="simple_name">simple_name</a>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top