Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 79 for 1e23 (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    type ExtraMapping struct {
    	// key is a string to use as the extra attribute key.
    	// key must be a domain-prefix path (e.g. example.org/foo). All characters before the first "/" must be a valid
    	// subdomain as defined by RFC 1123. All characters trailing the first "/" must
    	// be valid HTTP Path characters as defined by RFC 3986.
    	// key must be lowercase.
    	// Required to be unique.
    	// +required
    	Key string `json:"key"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    000002a0  4c 72 2b 9d ae db 46 06  06 4d f4 c1 b3 3e c0 d1  |Lr+...F..M...>..|
    000002b0  bd 42 d4 db fe 3d 13 60  84 5c 21 d3 3b e9 fa e7  |.B...=.`.\!.;...|
    000002c0  16 03 03 00 ac 0c 00 00  a8 03 00 1d 20 7a 15 23  |............ z.#|
    000002d0  f5 78 c2 16 21 72 bb e5  d3 2e c9 67 55 a8 2c 1f  |.x..!r.....gU.,.|
    000002e0  00 50 a2 04 4f 71 9a 94  4a 90 55 69 33 08 04 00  |.P..Oq..J.Ui3...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. cmd/post-policy_test.go

    			malformedBody:       false,
    			ignoreContentLength: true,
    		},
    		// Failed with entity too small.
    		{
    			objectName:          "test",
    			data:                bytes.Repeat([]byte("a"), 1023),
    			expectedRespStatus:  http.StatusBadRequest,
    			accessKey:           credentials.AccessKey,
    			secretKey:           credentials.SecretKey,
    			malformedBody:       false,
    			ignoreContentLength: false,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    type ExtraMapping struct {
    	// key is a string to use as the extra attribute key.
    	// key must be a domain-prefix path (e.g. example.org/foo). All characters before the first "/" must be a valid
    	// subdomain as defined by RFC 1123. All characters trailing the first "/" must
    	// be valid HTTP Path characters as defined by RFC 3986.
    	// key must be lowercase.
    	// Required to be unique.
    	// +required
    	Key string `json:"key"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

       *   <li>Underscores ('_') are permitted wherever dashes ('-') are permitted.
       *   <li>Parts other than the final part may start with a digit, as mandated by <a
       *       href="https://tools.ietf.org/html/rfc1123#section-2">RFC 1123</a>.
       * </ul>
       *
       * @param domain A domain name (not IP address)
       * @throws IllegalArgumentException if {@code domain} is not syntactically valid according to
       *     {@link #isValid}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation.go

    func ValidatePort(port int) error {
    	if 1 <= port && port <= 65535 {
    		return nil
    	}
    	return fmt.Errorf("port number %d must be in the range 1..65535", port)
    }
    
    // encapsulates DNS 1123 checks common to both wildcarded hosts and FQDNs
    func CheckDNS1123Preconditions(name string) error {
    	if len(name) > 255 {
    		return fmt.Errorf("domain name %q too long (max 255)", name)
    	}
    	if len(name) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/provision_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			test:            wrapTestWithProvisionCalls([]provisionCall{}, testSyncClaim),
    		},
    		{
    			// volume provision for PVC scheduled
    			"11-23 - skip finding PV and provision for PVC annotated with AnnSelectedNode",
    			newVolumeArray("volume11-23", "1Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimDelete, classCopper),
    			[]*v1.PersistentVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/types.go

    	// +k8s:conversion-gen=false
    	CIKubernetesVersion string
    
    	// ControlPlaneEndpoint sets a stable IP address or DNS name for the control plane; it
    	// can be a valid IP address or a RFC-1123 DNS subdomain, both with optional TCP port.
    	// In case the ControlPlaneEndpoint is not specified, the AdvertiseAddress + BindPort
    	// are used; in case the ControlPlaneEndpoint is specified but without a TCP port,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InternetDomainName.java

       *   <li>Underscores ('_') are permitted wherever dashes ('-') are permitted.
       *   <li>Parts other than the final part may start with a digit, as mandated by <a
       *       href="https://tools.ietf.org/html/rfc1123#section-2">RFC 1123</a>.
       * </ul>
       *
       * @param domain A domain name (not IP address)
       * @throws IllegalArgumentException if {@code domain} is not syntactically valid according to
       *     {@link #isValid}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. src/image/png/reader.go

    		for i := 0; i < np; i++ {
    			d.palette[i] = color.RGBA{d.tmp[3*i+0], d.tmp[3*i+1], d.tmp[3*i+2], 0xff}
    		}
    		for i := np; i < 256; i++ {
    			// Initialize the rest of the palette to opaque black. The spec (section
    			// 11.2.3) says that "any out-of-range pixel value found in the image data
    			// is an error", but some real-world PNG files have out-of-range pixel
    			// values. We fall back to opaque black, the same as libpng 1.5.13;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top