Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 310 for octets (0.2 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		},
    		{
    			name: "cidr",
    			in:   "1.2.3.0/24",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "ipv4 with out-of-range octets",
    			in:   "1.2.3.400",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "ipv4 with negative octets",
    			in:   "-1.0.0.0",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "ipv6 with out-of-range segment",
    			in:   "2001:db8::10005",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    		}
    	}
    	return allErrors
    }
    
    // Allowed characters in an HTTP Path as defined by RFC 3986. A HTTP path may
    // contain:
    // * unreserved characters (alphanumeric, '-', '.', '_', '~')
    // * percent-encoded octets
    // * sub-delims ("!", "$", "&", "'", "(", ")", "*", "+", ",", ";", "=")
    // * a colon character (":")
    const httpPathFmt string = `[A-Za-z0-9/\-._~%!$&'()*+,;=:]+`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/encoding/asn1/marshal.go

    	// Per X690 Section 11.6: The encodings of the component values of a
    	// set-of value shall appear in ascending order, the encodings being
    	// compared as octet strings with the shorter components being padded
    	// at their trailing end with 0-octets.
    	//
    	// First we encode each element to its TLV encoding and then use
    	// octetSort to get the ordering expected by X690 DER rules before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/crypto/x509/parser.go

    	// so this condition would trigger anyway).
    	if len(serialBytes) > 20+2 {
    		if x509seriallength.Value() != "1" {
    			return nil, errors.New("x509: serial number too long (>20 octets)")
    		} else {
    			x509seriallength.IncNonDefault()
    		}
    	}
    	serial := new(big.Int)
    	if !serialBytes.ReadASN1Integer(serial) {
    		return nil, errors.New("x509: malformed serial number")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. doc/godebug.md

    the [`x509negativeserial` setting](/pkg/crypto/x509/#ParseCertificate).
    
    Go 1.23 changed the behavior of
    [crypto/x509.ParseCertificate](/pkg/crypto/x509/#ParseCertificate) to reject
    serial numbers that are longer than 20 octets. This change can be reverted with
    the [`x509seriallength` setting](/pkg/crypto/x509/#ParseCertificate).
    
    Go 1.23 re-enabled support in html/template for ECMAScript 6 template literals by default.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/net/http/cookie_test.go

    		{"foo\\bar", false, "foobar"},
    		{"foo\"bar", false, "foobar"},
    		{"\x00\x7e\x7f\x80", false, "\x7e"},
    		{`withquotes`, true, `"withquotes"`},
    		{`"withquotes"`, true, `"withquotes"`}, // double quotes are not valid octets
    		{"a z", false, `"a z"`},
    		{" z", false, `" z"`},
    		{"a ", false, `"a "`},
    		{"a,z", false, `"a,z"`},
    		{",z", false, `",z"`},
    		{"a,", false, `"a,"`},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    	if template.SerialNumber == nil {
    		return nil, errors.New("x509: no SerialNumber given")
    	}
    
    	// RFC 5280 Section 4.1.2.2: serial number must positive
    	//
    	// We _should_ also restrict serials to <= 20 octets, but it turns out a lot of people
    	// get this wrong, in part because the encoding can itself alter the length of the
    	// serial. For now we accept these non-conformant serials.
    	if template.SerialNumber.Sign() == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.search_result_sort_favorite_count_asc	=	Favori (croissant)
    labels.search_result_sort_favorite_count_desc	=	Favori (décroissant)
    labels.search_result_sort_multiple	=	Plusieurs
    labels.search_result_size	=	{0} octets
    labels.search_result_created	=	Inscrit:
    labels.search_result_last_modified	=	Dernière modification :
    labels.search_result_favorite	=	Aime
    labels.search_result_favorited	=	Aimé
    labels.search_click_count	=	Vu ({0})
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/crypto/x509/x509_test.go

    				NextUpdate: time.Time{}.Add(time.Hour * 48),
    				Number:     big.NewInt(0).SetBytes(append([]byte{1}, make([]byte, 20)...)),
    			},
    			expectedError: "x509: CRL number exceeds 20 octets",
    		},
    		{
    			name: "long Number (20 bytes, MSB set)",
    			key:  ec256Priv,
    			issuer: &Certificate{
    				KeyUsage: KeyUsageCRLSign,
    				Subject: pkix.Name{
    					CommonName: "testing",
    				},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    // associated with a stream.
    // See https://httpwg.org/specs/rfc7540.html#rfc.section.6.1
    type http2DataFrame struct {
    	http2FrameHeader
    	data []byte
    }
    
    func (f *http2DataFrame) StreamEnded() bool {
    	return f.http2FrameHeader.Flags.Has(http2FlagDataEndStream)
    }
    
    // Data returns the frame's data octets, not including any padding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top