Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for htmlRule (0.17 sec)

  1. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/service/impl/EsDataServiceTest.java

            accessResult1.setMethod("GET");
            accessResult1.setMimeType("text/plain");
            accessResult1.setParentUrl("http://www.parent.com/");
            accessResult1.setRuleId("htmlRule");
            accessResult1.setSessionId("id1");
            accessResult1.setStatus(200);
            accessResult1.setUrl("http://www.id1.com/");
    
            dataService.store(accessResult1);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/DataServiceImplTest.java

            accessResult1.setMethod("GET");
            accessResult1.setMimeType("text/plain");
            accessResult1.setParentUrl("http://www.parent.com/");
            accessResult1.setRuleId("htmlRule");
            accessResult1.setSessionId("id1");
            accessResult1.setStatus(200);
            accessResult1.setUrl("http://www.id1.com/");
    
            dataService.store(accessResult1);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/HtmlTestExecutionResult.groovy

            private File htmlFile
            private List<TestCase> testsExecuted = []
            private List<TestCase> testsSucceeded = []
            private List<TestCase> testsFailures = []
            private Set<TestCase> testsSkipped = []
            private Document html
    
            public HtmlTestClassExecutionResult(File htmlFile) {
                this.htmlFile = htmlFile;
                this.html = Jsoup.parse(htmlFile, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

            assertTrue("HTML report directory not found '$reportDir'", reportDir.isDirectory())
            def htmlFile = reportDir.file(PROBLEMS_REPORT_HTML_FILE_NAME)
            assertTrue("HTML report HTML file not found in '$reportDir'", htmlFile.isFile())
            Map<String, Object> jsModel = readJsModelFrom(htmlFile)
            jsModel
        }
    
        private static Map<String, Object> readJsModelFrom(File reportFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. src/text/template/funcs.go

    	htmlAmp  = []byte("&amp;")
    	htmlLt   = []byte("&lt;")
    	htmlGt   = []byte("&gt;")
    	htmlNull = []byte("\uFFFD")
    )
    
    // HTMLEscape writes to w the escaped HTML equivalent of the plain text data b.
    func HTMLEscape(w io.Writer, b []byte) {
    	last := 0
    	for i, c := range b {
    		var html []byte
    		switch c {
    		case '\000':
    			html = htmlNull
    		case '"':
    			html = htmlQuot
    		case '\'':
    			html = htmlApos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top