Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 595 for erfc (0.06 sec)

  1. guava/src/com/google/common/net/MediaType.java

      public static final MediaType PLAIN_TEXT_UTF_8 = createConstantUtf8(TEXT_TYPE, "plain");
    
      /**
       * <a href="http://www.rfc-editor.org/rfc/rfc4329.txt">RFC 4329</a> declares {@link
       * #JAVASCRIPT_UTF_8 application/javascript} to be the correct media type for JavaScript, but this
       * may be necessary in certain situations for compatibility.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  2. src/crypto/tls/prf.go

    	"crypto/sha512"
    	"errors"
    	"fmt"
    	"hash"
    )
    
    // Split a premaster secret in two as specified in RFC 4346, Section 5.
    func splitPreMasterSecret(secret []byte) (s1, s2 []byte) {
    	s1 = secret[0 : (len(secret)+1)/2]
    	s2 = secret[len(secret)/2:]
    	return
    }
    
    // pHash implements the P_hash function, as defined in RFC 4346, Section 5.
    func pHash(result, secret, seed []byte, hash func() hash.Hash) {
    	h := hmac.New(hash, secret)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	if hf.Sensitive {
    		suffix = " (sensitive)"
    	}
    	return fmt.Sprintf("header field %q = %q%s", hf.Name, hf.Value, suffix)
    }
    
    // Size returns the size of an entry per RFC 7541 section 4.1.
    func (hf HeaderField) Size() uint32 {
    	// https://httpwg.org/specs/rfc7541.html#rfc.section.4.1
    	// "The size of the dynamic table is the sum of the size of
    	// its entries. The size of an entry is the sum of its name's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n  * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n  * 'kubernetes.io/ws'  - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n  * 'kubernetes.io/wss' - WebSocket over TLS as described in ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    // IsDomainPrefixedPath checks if the given string is a domain-prefixed path
    // (e.g. acme.io/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.
    func IsDomainPrefixedPath(fldPath *field.Path, dpPath string) field.ErrorList {
    	var allErrs field.ErrorList
    	if len(dpPath) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. pkg/api/service/warnings_test.go

    				`spec.clusterIPs[0]: IPv6 address "2001:db8:0:0::2" is not in RFC 5952 canonical format ("2001:db8::2"), which may cause controller apply-loops`,
    			},
    		},
    		{
    			name:    "Dual Stack IPv4-IPv6 and IPv6 non-canonical format",
    			service: service([]string{"192.12.2.2", "2001:db8:0:0::2"}),
    			want: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. src/net/http/method.go

    // license that can be found in the LICENSE file.
    
    package http
    
    // Common HTTP methods.
    //
    // Unless otherwise noted, these are defined in RFC 7231 section 4.3.
    const (
    	MethodGet     = "GET"
    	MethodHead    = "HEAD"
    	MethodPost    = "POST"
    	MethodPut     = "PUT"
    	MethodPatch   = "PATCH" // RFC 5789
    	MethodDelete  = "DELETE"
    	MethodConnect = "CONNECT"
    	MethodOptions = "OPTIONS"
    	MethodTrace   = "TRACE"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 22:11:56 UTC 2016
    - 517 bytes
    - Viewed (0)
  8. src/net/http/cookiejar/jar.go

    		// The other processing and validation steps in RFC 6265 just
    		// collapse to:
    		if host != domain {
    			return "", false, errIllegalDomain
    		}
    
    		// According to RFC 6265 such cookies should be treated as
    		// domain cookies.
    		// As there are no subdomains of an IP address the treatment
    		// according to RFC 6265 would be exactly the same as that of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/compress/zlib/reader.go

    	if _, err := io.ReadFull(z.r, z.scratch[0:4]); err != nil {
    		if err == io.EOF {
    			err = io.ErrUnexpectedEOF
    		}
    		z.err = err
    		return n, z.err
    	}
    	// ZLIB (RFC 1950) is big-endian, unlike GZIP (RFC 1952).
    	checksum := binary.BigEndian.Uint32(z.scratch[:4])
    	if checksum != z.digest.Sum32() {
    		z.err = ErrChecksum
    		return n, z.err
    	}
    	return n, io.EOF
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    // defined by UTS (Unicode Technical Standard) #46, which defines a standard to
    // deal with the transition from IDNA2003.
    //
    // IDNA2008 (Internationalized Domain Names for Applications), is defined in RFC
    // 5890, RFC 5891, RFC 5892, RFC 5893 and RFC 5894.
    // UTS #46 is defined in https://www.unicode.org/reports/tr46.
    // See https://unicode.org/cldr/utility/idna.jsp for a visualization of the
    // differences between these two standards.
    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