Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,293 for emails (0.31 sec)

  1. src/net/mail/example_test.go

    package mail_test
    
    import (
    	"fmt"
    	"io"
    	"log"
    	"net/mail"
    	"strings"
    )
    
    func ExampleParseAddressList() {
    	const list = "Alice <******@****.***>, Bob <******@****.***>, Eve <******@****.***>"
    	emails, err := mail.ParseAddressList(list)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	for _, v := range emails {
    		fmt.Println(v.Name, v.Address)
    	}
    
    	// Output:
    	// Alice ******@****.***
    	// Bob ******@****.***
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/stylesheets/userGuideHtmlCommon.xsl

    DSL Reference Release Notes Javadoc News Blog Newsletter Twitter Products Build Scan™ Build Cache Develocity Docs Get Help Forums GitHub Training Services Stay UP-TO-DATE on new features and news By entering your email, you agree to our Terms and Privacy Policy, including receipt of emails. You can unsubscribe at any time. Subscribe Version section-anchor #...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 16:51:07 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  3. pkg/controller/certificates/approver/sarapprove_test.go

    	return makeFancyTestCsr(csrBuilder{cn: "test-cert"})
    }
    
    type csrBuilder struct {
    	cn         string
    	orgs       []string
    	requestor  string
    	usages     []capi.KeyUsage
    	dns        []string
    	emails     []string
    	ips        []net.IP
    	signerName string
    }
    
    func makeFancyTestCsr(b csrBuilder) *capi.CertificateSigningRequest {
    	pk, err := ecdsa.GenerateKey(elliptic.P256(), insecureRand)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  4. chainable_api.go

    //
    //	// assign an email if the record is not found
    //	db.Where(User{Name: "non_existing"}).Attrs(User{Email: "******@****.***"}).FirstOrInit(&user)
    //	// user -> User{Name: "non_existing", Email: "******@****.***"}
    //
    //	// assign an email if the record is not found, otherwise ignore provided email
    //	db.Where(User{Name: "jinzhu"}).Attrs(User{Email: "******@****.***"}).FirstOrInit(&user)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/crypto/x509/parser.go

    	err = forEachSAN(der, func(tag int, data []byte) error {
    		switch tag {
    		case nameTypeEmail:
    			email := string(data)
    			if err := isIA5String(email); err != nil {
    				return errors.New("x509: SAN rfc822Name is malformed")
    			}
    			emailAddresses = append(emailAddresses, email)
    		case nameTypeDNS:
    			name := string(data)
    			if err := isIA5String(name); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/main/resources/footer.html

                        <input id="email" class="email" name="email" type="email" placeholder="name@email.com" pattern="[^@\s]+@[^@\s]+\.[^@\s]+" maxlength="255" required=""/>
                        <button id="submit" class="submit" type="submit">Subscribe</button>
                    </form>
                </div>
            </section>
        </nav>
    </footer>
    
    </div>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. docs/es/docs/index.md

    ## Dependencias Opcionales
    
    Usadas por Pydantic:
    
    * <a href="https://github.com/JoshData/python-email-validator" target="_blank"><code>email_validator</code></a> - para validación de emails.
    
    Usados por Starlette:
    
    * <a href="https://www.python-httpx.org" target="_blank"><code>httpx</code></a> - Requerido si quieres usar el `TestClient`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/crypto/x509/x509.go

    )
    
    func (algo SignatureAlgorithm) isRSAPSS() bool {
    	for _, details := range signatureAlgorithmDetails {
    		if details.algo == algo {
    			return details.isRSAPSS
    		}
    	}
    	return false
    }
    
    func (algo SignatureAlgorithm) hashFunc() crypto.Hash {
    	for _, details := range signatureAlgorithmDetails {
    		if details.algo == algo {
    			return details.hash
    		}
    	}
    	return crypto.Hash(0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  9. src/crypto/x509/verify.go

    	intermediateCertificate
    	rootCertificate
    )
    
    // rfc2821Mailbox represents a “mailbox” (which is an email address to most
    // people) by breaking it into the “local” (i.e. before the '@') and “domain”
    // parts.
    type rfc2821Mailbox struct {
    	local, domain string
    }
    
    // parseRFC2821Mailbox parses an email address into local and domain parts,
    // based on the ABNF for a “Mailbox” from RFC 2821. According to RFC 5280,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/Details.java

    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents a problem details.
     *
     * @since 8.6
     */
    @Incubating
    public interface Details {
    
        /**
         * Returns a detailed description of a problem.
         *
         * @return the problem details
         * @since 8.6
         */
        @Nullable
        String getDetails();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 13:56:41 UTC 2023
    - 999 bytes
    - Viewed (0)
Back to top