Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for htmlRule (0.09 sec)

  1. 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)
  2. 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)
  3. 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