Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 701 for 1034 (0.04 sec)

  1. test/codegen/issue61356.go

    	// amd64:-`.*SP.*`
    	out |= in[6] << 22
    	// amd64:-`.*SP.*`
    	out |= in[7] << 25
    	// amd64:-`.*SP.*`
    	out |= in[8] << 28
    	// amd64:-`.*SP.*`
    	out |= in[9] << 31
    	// amd64:-`.*SP.*`
    	out |= in[10] << 34
    	// amd64:-`.*SP.*`
    	out |= in[11] << 37
    	// amd64:-`.*SP.*`
    	out |= in[12] << 40
    	// amd64:-`.*SP.*`
    	out |= in[13] << 43
    	// amd64:-`.*SP.*`
    	out |= in[14] << 46
    	// amd64:-`.*SP.*`
    	out |= in[15] << 49
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:19:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/formats.go

    	"uri",          // an URI as parsed by Golang net/url.ParseRequestURI
    	"email",        // an email address as parsed by Golang net/mail.ParseAddress
    	"hostname",     // a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034].
    	"ipv4",         // an IPv4 IP as parsed by Golang net.ParseIP
    	"ipv6",         // an IPv6 IP as parsed by Golang net.ParseIP
    	"cidr",         // a CIDR as parsed by Golang net.ParseCIDR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 09:26:38 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt

        // alternative subject starting with a japanese kanji character. This is
        // not supported by Android because the underlying implementation from
        // harmony follows the definition from rfc 1034 page 10 for alternative
        // subject names. This causes the code to drop all alternative subjects.
        assertThat(verifier.verify("bar.com", session)).isTrue()
        assertThat(verifier.verify("a.bar.com", session)).isFalse()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    	return errs
    }
    
    const dns1035LabelFmt string = "[a-z]([-a-z0-9]*[a-z0-9])?"
    const dns1035LabelErrMsg string = "a DNS-1035 label must consist of lower case alphanumeric characters or '-', start with an alphabetic character, and end with an alphanumeric character"
    
    // DNS1035LabelMaxLength is a label's max length in DNS (RFC 1035)
    const DNS1035LabelMaxLength int = 63
    
    var dns1035LabelRegexp = regexp.MustCompile("^" + dns1035LabelFmt + "$")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    	return func(o *options) {
    		o.trie = trie
    		o.checkJoiners = enable
    	}
    }
    
    // StrictDomainName limits the set of permissible ASCII characters to those
    // allowed in domain names as defined in RFC 1034 (A-Z, a-z, 0-9 and the
    // hyphen). This is set by default for MapForLookup and ValidateForRegistration,
    // but is only useful if ValidateLabels is set.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    	return func(o *options) {
    		o.trie = trie
    		o.checkJoiners = enable
    	}
    }
    
    // StrictDomainName limits the set of permissible ASCII characters to those
    // allowed in domain names as defined in RFC 1034 (A-Z, a-z, 0-9 and the
    // hyphen). This is set by default for MapForLookup and ValidateForRegistration,
    // but is only useful if ValidateLabels is set.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	// - uri: an URI as parsed by Golang net/url.ParseRequestURI
    	// - email: an email address as parsed by Golang net/mail.ParseAddress
    	// - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034].
    	// - ipv4: an IPv4 IP as parsed by Golang net.ParseIP
    	// - ipv6: an IPv6 IP as parsed by Golang net.ParseIP
    	// - cidr: a CIDR as parsed by Golang net.ParseCIDR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  8. src/net/dnsclient_unix.go

    			// /etc/resolv.conf are recursive resolvers.
    			//
    			// We asked for recursion, so it should have included all the
    			// answers we need in this one packet.
    			//
    			// Further, RFC 1034 section 4.3.1 says that "the recursive
    			// response to a query will be... The answer to the query,
    			// possibly preface by one or more CNAME RRs that specify
    			// aliases encountered on the way to an answer."
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// - uri: an URI as parsed by Golang net/url.ParseRequestURI
    	// - email: an email address as parsed by Golang net/mail.ParseAddress
    	// - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034].
    	// - ipv4: an IPv4 IP as parsed by Golang net.ParseIP
    	// - ipv6: an IPv6 IP as parsed by Golang net.ParseIP
    	// - cidr: a CIDR as parsed by Golang net.ParseCIDR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // - uri: an URI as parsed by Golang net/url.ParseRequestURI
      // - email: an email address as parsed by Golang net/mail.ParseAddress
      // - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034].
      // - ipv4: an IPv4 IP as parsed by Golang net.ParseIP
      // - ipv6: an IPv6 IP as parsed by Golang net.ParseIP
      // - cidr: a CIDR as parsed by Golang net.ParseCIDR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top