Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,953 for qtext (1.08 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/go/ast/commentmap_test.go

    	"49: *ast.AssignStmt": "addition\n",
    	"49: *ast.BasicLit":   " 1\n",
    	"50: *ast.Ident":      "the very last comment\n",
    }
    
    func ctext(list []*CommentGroup) string {
    	var buf strings.Builder
    	for _, g := range list {
    		buf.WriteString(g.Text())
    	}
    	return buf.String()
    }
    
    func TestCommentMap(t *testing.T) {
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateAssemblerBaseNamesTestApp.groovy

                return """
    .386
    .model    flat
    
    PUBLIC    _${methodName}
    _TEXT     SEGMENT
    _${methodName}    PROC
    mov    eax, DWORD PTR 4[esp]
    add    eax, DWORD PTR 8[esp]
    ret    0
    _${methodName}    ENDP
    _TEXT   ENDS
    END
    """
            }else{
                return """
    .text
    .globl  _${methodName}
    _${methodName}:
    movl    8(%esp), %eax
    addl    4(%esp), %eax
    ret
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/sym/symkind.go

    // of type cmd/internal/objabi.SymKind) to values of type SymKind.
    var AbiSymKindToSymKind = [...]SymKind{
    	objabi.Sxxx:                    Sxxx,
    	objabi.STEXT:                   STEXT,
    	objabi.SRODATA:                 SRODATA,
    	objabi.SNOPTRDATA:              SNOPTRDATA,
    	objabi.SDATA:                   SDATA,
    	objabi.SBSS:                    SBSS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top