Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 595 for erfc (0.06 sec)

  1. src/mime/encodedword.go

    	"unicode/utf8"
    )
    
    // A WordEncoder is an RFC 2047 encoded-word encoder.
    type WordEncoder byte
    
    const (
    	// BEncoding represents Base64 encoding scheme as defined by RFC 2045.
    	BEncoding = WordEncoder('b')
    	// QEncoding represents the Q-encoding scheme as defined by RFC 2047.
    	QEncoding = WordEncoder('q')
    )
    
    var (
    	errInvalidWord = errors.New("mime: invalid RFC 2047 encoded-word")
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    	}
    	if m.scts {
    		// RFC 6962, Section 3.3.1
    		exts.AddUint16(extensionSCT)
    		exts.AddUint16(0) // empty extension_data
    	}
    	if m.earlyData {
    		// RFC 8446, Section 4.2.10
    		exts.AddUint16(extensionEarlyData)
    		exts.AddUint16(0) // empty extension_data
    	}
    	if m.quicTransportParameters != nil { // marshal zero-length parameters when present
    		// RFC 9001, Section 8.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/internal/zstd/fse_test.go

    // literalPredefinedDistribution is the predefined distribution table
    // for literal lengths. RFC 3.1.1.3.2.2.1.
    var literalPredefinedDistribution = []int16{
    	4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1,
    	2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 1, 1, 1, 1, 1,
    	-1, -1, -1, -1,
    }
    
    // offsetPredefinedDistribution is the predefined distribution table
    // for offsets. RFC 3.1.1.3.2.2.3.
    var offsetPredefinedDistribution = []int16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http/DateFormatting.kt

    private val BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS =
      arrayOf(
        // HTTP formats required by RFC2616 but with any timezone:
        // RFC 822, updated by RFC 1123 with any TZ.
        "EEE, dd MMM yyyy HH:mm:ss zzz",
        // RFC 850, obsoleted by RFC 1036 with any TZ.
        "EEEE, dd-MMM-yy HH:mm:ss zzz",
        // ANSI C's asctime() format
        "EEE MMM d HH:mm:ss yyyy",
        // Alternative formats:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. pkg/apis/discovery/types.go

    	// RFC-6335 and https://www.iana.org/assignments/service-names).
    	//
    	// * Kubernetes-defined prefixed names:
    	//   * '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-
    	//   * 'kubernetes.io/ws'  - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/crypto/tls/key_schedule.go

    }
    
    // nextTrafficSecret generates the next traffic secret, given the current one,
    // according to RFC 8446, Section 7.2.
    func (c *cipherSuiteTLS13) nextTrafficSecret(trafficSecret []byte) []byte {
    	return c.expandLabel(trafficSecret, trafficUpdateLabel, nil, c.hash.Size())
    }
    
    // trafficKey generates traffic keys according to RFC 8446, Section 7.3.
    func (c *cipherSuiteTLS13) trafficKey(trafficSecret []byte) (key, iv []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/MethodHandleUtils.java

    import java.lang.invoke.MethodType;
    import java.util.Arrays;
    
    public class MethodHandleUtils {
        public static MethodHandle findStaticOrThrowError(Class<?> refc, String name, MethodType methodType) {
            try {
                return MethodHandles.lookup().findStatic(refc, name, methodType);
            } catch (NoSuchMethodException e) {
                throw new NoSuchMethodError(e.getMessage());
            } catch (IllegalAccessException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 01:37:45 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/crypto/x509/pem_decrypt.go

    		digest = hash.Sum(digest[:0])
    		copy(out[i:], digest)
    	}
    	return out
    }
    
    // IsEncryptedPEMBlock returns whether the PEM block is password encrypted
    // according to RFC 1423.
    //
    // Deprecated: Legacy PEM encryption as specified in RFC 1423 is insecure by
    // design. Since it does not authenticate the ciphertext, it is vulnerable to
    // padding oracle attacks that can let an attacker recover the plaintext.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. src/net/url/url.go

    			// The RFC text is silent but the grammar allows
    			// everything, so escape nothing.
    			return false
    		}
    	}
    
    	if mode == encodeFragment {
    		// RFC 3986 §2.2 allows not escaping sub-delims. A subset of sub-delims are
    		// included in reserved from RFC 2396 §2.2. The remaining sub-delims do not
    		// need to be escaped. To minimize potential breakage, we apply two restrictions:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/idna/idna9.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
    - 19.2K bytes
    - Viewed (0)
Back to top