Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,482 for qtext (0.04 sec)

  1. src/net/mail/message.go

    	if handleGroup {
    		if p.consume(':') {
    			return p.consumeGroupList()
    		}
    	}
    	// angle-addr = "<" addr-spec ">"
    	if !p.consume('<') {
    		atext := true
    		for _, r := range displayName {
    			if !isAtext(r, true) {
    				atext = false
    				break
    			}
    		}
    		if atext {
    			// The input is like "foo.bar"; it's possible the input
    			// meant to be "foo.bar@domain", or "foo.bar <...>".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. src/crypto/x509/verify.go

    		// Quoted-string = DQUOTE *qcontent DQUOTE
    		// non-whitespace-control = %d1-8 / %d11 / %d12 / %d14-31 / %d127
    		// qcontent = qtext / quoted-pair
    		// qtext = non-whitespace-control /
    		//         %d33 / %d35-91 / %d93-126
    		// quoted-pair = ("\" text) / obs-qp
    		// text = %d1-9 / %d11 / %d12 / %d14-127 / obs-text
    		//
    		// (Names beginning with “obs-” are the obsolete syntax from RFC 2822,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. src/net/mail/message_test.go

    		_, err := ParseAddress(tc.text)
    		if err == nil || !strings.Contains(err.Error(), tc.wantErrText) {
    			t.Errorf(`mail.ParseAddress(%q) #%d want %q, got %v`, tc.text, i, tc.wantErrText, err)
    		}
    	}
    
    	t.Run("CustomWordDecoder", func(t *testing.T) {
    		p := &AddressParser{WordDecoder: &mime.WordDecoder{}}
    		for i, tc := range mustErrTestCases {
    			_, err := p.Parse(tc.text)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/plist.go

    				p.To.Sym = s
    			}
    
    		}
    
    		if curtext == nil {
    			etext = nil
    			continue
    		}
    		etext.Link = p
    		etext = p
    	}
    
    	if newprog == nil {
    		newprog = ctxt.NewProg
    	}
    
    	// Add reference to Go arguments for assembly functions without them.
    	if ctxt.IsAsm {
    		pkgPrefix := objabi.PathToPrefix(ctxt.Pkgpath) + "."
    		for _, s := range text {
    			if !strings.HasPrefix(s.Name, pkgPrefix) {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/link/internal/ld/data.go

    			ntext.SetSect(sect)
    			if ctxt.IsAIX() {
    				// runtime.text.X must be a real symbol on AIX.
    				// Assign its address directly in order to be the
    				// first symbol of this new section.
    				ntext.SetType(sym.STEXT)
    				ntext.SetSize(int64(abi.MINFUNC))
    				ntext.SetOnList(true)
    				ntext.SetAlign(sectAlign)
    				ctxt.tramps = append(ctxt.tramps, ntext.Sym())
    
    				ntext.SetValue(int64(va))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. internal/s3select/sql/stringfuncs_test.go

    		{"abcd", "bc", true, "d", true},
    	}
    
    	for i, tc := range matcherCases {
    		res, ok := matcher(tc.iText, tc.iPat, tc.iHasLeadingPercent)
    		if res != tc.resultExpected || ok != tc.matchExpected {
    			t.Errorf("Matcher Case %d failed", i)
    		}
    	}
    
    	evalCases := []struct {
    		iText, iPat   string
    		iEsc          rune
    		matchExpected bool
    		errExpected   error
    	}{
    		{"abcd", "abc", runeZero, false, nil},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  10. 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)
Back to top