Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for parentheticals (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    		return ""
    	}
    
    	var parentheticals []string
    	if underName := typeName(typ.Underlying()); underName != "" && underName != name {
    		parentheticals = append(parentheticals, underName)
    	}
    
    	if typ != inType && inName != "" && inName != name {
    		parentheticals = append(parentheticals, "in "+inName)
    	}
    
    	if len(parentheticals) > 0 {
    		name += " (" + strings.Join(parentheticals, ", ") + ")"
    	}
    
    	return name
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/net/mail/message.go

    			return nil, errors.New("mail: misformatted parenthetical comment")
    		}
    		return group, nil
    	}
    
    	for {
    		p.skipSpace()
    		// embedded groups not allowed.
    		addrs, err := p.parseAddress(false)
    		if err != nil {
    			return nil, err
    		}
    		group = append(group, addrs...)
    
    		if !p.skipCFWS() {
    			return nil, errors.New("mail: misformatted parenthetical comment")
    		}
    		if p.consume(';') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. src/net/mail/message_test.go

    		16: {"john.doe@", "missing '@' or angle-addr"},
    		17: {"John ******@****.***", "no angle-addr"},
    		18: {" group: ******@****.***; (asd", "misformatted parenthetical comment"},
    		19: {" group: ; (asd", "misformatted parenthetical comment"},
    		20: {`(John) Doe <******@****.***e>`, "missing word in phrase:"},
    		21: {"<jdoe@[" + string([]byte{0xed, 0xa0, 0x80}) + "192.168.0.1]>", "invalid utf-8 in domain-literal"},
    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/flag/flag.go

    // The usage message will appear on a separate line for anything but
    // a bool flag with a one-byte name. For bool flags, the type is
    // omitted and if the flag name is one byte the usage message appears
    // on the same line. The parenthetical default is omitted if the
    // default is the zero value for the type. The listed type, here int,
    // can be changed by placing a back-quoted name in the flag's usage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top