Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for erfc (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    //===----------------------------------------------------------------------===//
    // Erfc
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: func @erfc
    func.func @erfc(%arg0: tensor<2x3xf32>) -> tensor<2x3xf32> {
      // CHECK: chlo.erfc %arg0 : tensor<2x3xf32>
      %0 = "tf.Erfc"(%arg0) : (tensor<2x3xf32>) -> tensor<2x3xf32>
      func.return %0 : tensor<2x3xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. src/net/sendfile_test.go

    	ln := newLocalListener(t, "tcp")
    	defer ln.Close()
    
    	errc := make(chan error, 1)
    	go func(ln Listener) {
    		// Wait for a connection.
    		conn, err := ln.Accept()
    		if err != nil {
    			errc <- err
    			close(errc)
    			return
    		}
    
    		go func() {
    			defer close(errc)
    			defer conn.Close()
    
    			f, err := os.Open(newton)
    			if err != nil {
    				errc <- err
    				return
    			}
    			defer f.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/crypto/x509/x509.go

    )
    
    // pkixPublicKey reflects a PKIX public key structure. See SubjectPublicKeyInfo
    // in RFC 3280.
    type pkixPublicKey struct {
    	Algo      pkix.AlgorithmIdentifier
    	BitString asn1.BitString
    }
    
    // ParsePKIXPublicKey parses a public key in PKIX, ASN.1 DER form. The encoded
    // public key is a SubjectPublicKeyInfo structure (see RFC 5280, Section 4.1).
    //
    // It returns a *[rsa.PublicKey], *[dsa.PublicKey], *[ecdsa.PublicKey],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  9. src/crypto/ed25519/ed25519.go

    // https://ed25519.cr.yp.to/.
    //
    // These functions are also compatible with the “Ed25519” function defined in
    // RFC 8032. However, unlike RFC 8032's formulation, this package's private key
    // representation includes a public key suffix to make multiple signing
    // operations with the same key more efficient. This package refers to the RFC
    // 8032 private key as the “seed”.
    //
    // Operations involving private keys are implemented using constant-time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/mime/mediatype.go

    package mime
    
    import (
    	"errors"
    	"fmt"
    	"slices"
    	"strings"
    	"unicode"
    )
    
    // FormatMediaType serializes mediatype t and the parameters
    // param as a media type conforming to RFC 2045 and RFC 2616.
    // The type and parameter names are written in lower-case.
    // When any of the arguments result in a standard violation then
    // FormatMediaType returns the empty string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top