Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ValidateForRegistration (0.3 sec)

  1. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    func BidiRule() Option {
    	return func(o *options) { o.bidirule = bidirule.ValidString }
    }
    
    // ValidateForRegistration sets validation options to verify that a given IDN is
    // properly formatted for registration as defined by Section 4 of RFC 5891.
    func ValidateForRegistration() Option {
    	return func(o *options) {
    		o.mapping = validateRegistration
    		StrictDomainName(true)(o)
    		ValidateLabels(true)(o)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    func BidiRule() Option {
    	return func(o *options) { o.bidirule = bidirule.ValidString }
    }
    
    // ValidateForRegistration sets validation options to verify that a given IDN is
    // properly formatted for registration as defined by Section 4 of RFC 5891.
    func ValidateForRegistration() Option {
    	return func(o *options) {
    		o.mapping = validateRegistration
    		StrictDomainName(true)(o)
    		ValidateLabels(true)(o)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top