Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,550 for tText (0.06 sec)

  1. src/html/escape_test.go

    	"testing"
    )
    
    type unescapeTest struct {
    	// A short description of the test case.
    	desc string
    	// The HTML text.
    	html string
    	// The unescaped text.
    	unescaped string
    }
    
    var unescapeTests = []unescapeTest{
    	// Handle no entities.
    	{
    		"copy",
    		"A\ttext\nstring",
    		"A\ttext\nstring",
    	},
    	// Handle simple named entities.
    	{
    		"simple",
    		"& > <",
    		"& > <",
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 22 12:45:38 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy

            "  <p>text</p>   "                                 | "<p>text</p>"
            "<p>text</p>   <p>text</p>"                        | "<p>text</p><p>text</p>"
            "<p>text</p>   <h2>text</h2> <table/>"             | "<p>text</p><h2>text</h2><table></table>"
            "  <table>  <tr>  <td>text</td> </tr>\r\n</table>" | "<table><tr><td>text</td></tr></table>"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/global_test.go

    	}
    
    	patterns := []string{
    		// It is hard to look for actual instructions in an
    		// arch-independent way. So we'll just look for
    		// pseudo-ops that are arch-independent.
    		"\tTEXT\t",
    		"\tFUNCDATA\t",
    		"\tPCDATA\t",
    	}
    	outstr := string(out)
    	for _, p := range patterns {
    		if !strings.Contains(outstr, p) {
    			println(outstr)
    			panic("can't find pattern " + p)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/html/template/transition.go

    	stateCSSBlockCmt:    tBlockCmt,
    	stateCSSLineCmt:     tLineCmt,
    	stateError:          tError,
    }
    
    var commentStart = []byte("<!--")
    var commentEnd = []byte("-->")
    
    // tText is the context transition function for the text state.
    func tText(c context, s []byte) (context, int) {
    	k := 0
    	for {
    		i := k + bytes.IndexByte(s[k:], '<')
    		if i < k || i+1 == len(s) {
    			return c, len(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/text.txt

    Hello, world
     Code block here.
    More text.
    Tight list
     - one
     - two
     - three
    Loose list
     - one
    
     - two
    
     - three
    
    # Heading
    
    More text.
    -- gofmt --
    Hello, world
    
    	Code block here.
    
    More text.
    Tight list
      - one
      - two
      - three
    
    Loose list
    
      - one
    
      - two
    
      - three
    
    # Heading
    
    More text.
    -- text --
    |Hello, world
    |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 521 bytes
    - Viewed (0)
  6. src/go/doc/comment/text.go

    	default:
    		fmt.Fprintf(out, "?%T\n", x)
    
    	case *Paragraph:
    		out.WriteString(p.prefix)
    		p.text(out, "", x.Text)
    
    	case *Heading:
    		out.WriteString(p.prefix)
    		out.WriteString("# ")
    		p.text(out, "", x.Text)
    
    	case *Code:
    		text := x.Text
    		for text != "" {
    			var line string
    			line, text, _ = strings.Cut(text, "\n")
    			if line != "" {
    				out.WriteString(p.codePrefix)
    				out.WriteString(line)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. src/compress/flate/testdata/huffman-text.golden

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 242 bytes
    - Viewed (0)
  8. src/compress/flate/testdata/huffman-text.dyn.expect

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 238 bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/test/resources/test/text 3.txt

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

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 6 bytes
    - Viewed (0)
Back to top