Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 595 for erfc (0.04 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http/HttpStatusCodes.kt

    /** `100 Continue` (HTTP/1.1 - RFC 7231)  */
    const val HTTP_CONTINUE = 100
    
    /** `102 Processing` (WebDAV - RFC 2518)  */
    const val HTTP_PROCESSING = 102
    
    /** `103 Early Hints (Early Hints - RFC 8297)` */
    const val HTTP_EARLY_HINTS = 103
    
    /** `307 Temporary Redirect` (HTTP/1.1 - RFC 7231)  */
    const val HTTP_TEMP_REDIRECT = 307
    
    /** `308 Permanent Redirect` (HTTP/1.1 - RFC 7538)  */
    const val HTTP_PERM_REDIRECT = 308
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http/HttpDateTest.kt

      }
    
      @Test
      @Throws(Exception::class)
      fun parseStandardFormats() {
        // RFC 822, updated by RFC 1123 with GMT.
        assertThat("Thu, 01 Jan 1970 00:00:00 GMT".toHttpDateOrNull()!!.time).isEqualTo(0L)
        assertThat("Fri, 06 Jun 2014 12:30:30 GMT".toHttpDateOrNull()!!.time).isEqualTo(1402057830000L)
    
        // RFC 850, obsoleted by RFC 1036 with GMT.
        assertThat("Thursday, 01-Jan-70 00:00:00 GMT".toHttpDateOrNull()!!.time).isEqualTo(0L)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/net/mail/message.go

    // This is like textproto.ReadMIMEHeader, but doesn't validate.
    // The fix for issue #53188 tightened up net/textproto to enforce
    // restrictions of RFC 7230.
    // This package implements RFC 5322, which does not have those restrictions.
    // This function copies the relevant code from net/textproto,
    // simplified for RFC 5322.
    func readHeader(r *textproto.Reader) (map[string][]string, error) {
    	m := make(map[string][]string)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. src/mime/example_test.go

    		}
    	}
    	header, err = dec.DecodeHeader("=?x-case?q?hello_?= =?x-case?q?world!?=")
    	if err != nil {
    		panic(err)
    	}
    	fmt.Println(header)
    	// Output:
    	// Éric <eric@example.org>, Anaïs <******@****.***>
    	// ¡Hola, señor!
    	// HELLO WORLD!
    }
    
    func ExampleFormatMediaType() {
    	mediatype := "text/html"
    	params := map[string]string{
    		"charset": "utf-8",
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  5. src/net/mail/message_test.go

    		exp     time.Time
    	}{
    		// RFC 5322, Appendix A.1.1
    		{
    			"Fri, 21 Nov 1997 09:55:06 -0600",
    			time.Date(1997, 11, 21, 9, 55, 6, 0, time.FixedZone("", -6*60*60)),
    		},
    		// RFC 5322, Appendix A.6.2
    		// Obsolete date.
    		{
    			"21 Nov 97 09:55:06 GMT",
    			time.Date(1997, 11, 21, 9, 55, 6, 0, time.FixedZone("GMT", 0)),
    		},
    		// Commonly found format not specified by RFC 5322.
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. src/crypto/x509/pkix/pkix.go

    // AttributeTypeAndValue mirrors the ASN.1 structure of the same name in
    // RFC 5280, Section 4.1.2.4.
    type AttributeTypeAndValue struct {
    	Type  asn1.ObjectIdentifier
    	Value any
    }
    
    // AttributeTypeAndValueSET represents a set of ASN.1 sequences of
    // [AttributeTypeAndValue] sequences from RFC 2986 (PKCS #10).
    type AttributeTypeAndValueSET struct {
    	Type  asn1.ObjectIdentifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. src/net/tcpsock_test.go

    	defer ln.Close()
    
    	errc := make(chan error, 1)
    	defer func() {
    		if err := <-errc; err != nil {
    			t.Error(err)
    		}
    	}()
    	go func() {
    		c, err := ln.Accept()
    		if err != nil {
    			errc <- err
    			return
    		}
    		defer c.Close()
    
    		buf := make([]byte, 100)
    		n, err := io.ReadFull(c, buf)
    		if err != io.ErrUnexpectedEOF || n != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/internal/zstd/zstd.go

    		}
    	}
    
    	// Dictionary_ID. RFC 3.1.1.1.3.
    	if dictionaryIdSize != 0 {
    		dictionaryId := r.scratch[windowDescriptorSize : windowDescriptorSize+dictionaryIdSize]
    		// Allow only zero Dictionary ID.
    		for _, b := range dictionaryId {
    			if b != 0 {
    				return r.makeError(relativeOffset, "dictionaries are not supported")
    			}
    		}
    	}
    
    	// Frame_Content_Size. RFC 3.1.1.1.4.
    	r.frameSizeUnknown = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    	// quotation marks makes 3
    	MinDurationSizeJSON = 3
    	// JSONDateSize is the size of a date serialized as part of a JSON object
    	// RFC 3339 dates require YYYY-MM-DD, and then we add 2 to allow for quotation marks
    	JSONDateSize = 12
    	// MinDatetimeSizeJSON is the minimal length of a datetime formatted as RFC 3339
    	// RFC 3339 datetimes require a full date (YYYY-MM-DD) and full time (HH:MM:SS), and we add 3 for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. android/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)
Back to top