Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 303 for erfc (0.08 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. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "Log1p", "Invert", "LogicalNot", "Ndtri", "Neg", "Rint", "Round",
                "Rsqrt", "Sigmoid", "Sign", "Sinh", "Softplus", "Softsign", "Sqrt",
                "Square", "Tan", "Tanh", "Real", "Imag", "Erf", "Erfc", "Erfinv",
                "Lgamma", "Digamma",
                // Binary
                "Add", "AddV2", "Sub", "Mul", "Div", "Atan2", "Complex", "DivNoNan",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. src/net/http/httputil/reverseproxy.go

    		return
    	}
    	if err := brw.Flush(); err != nil {
    		p.getErrorHandler()(rw, req, fmt.Errorf("response flush: %v", err))
    		return
    	}
    	errc := make(chan error, 1)
    	spc := switchProtocolCopier{user: conn, backend: backConn}
    	go spc.copyToBackend(errc)
    	go spc.copyFromBackend(errc)
    	<-errc
    }
    
    // switchProtocolCopier exists so goroutines proxying data back and
    // forth have nice names in stacks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. 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)
  5. src/net/net_test.go

    	t.Helper()
    	ln := newLocalListener(t, "tcp")
    	defer ln.Close()
    	errc := make(chan error, 2)
    	go func() {
    		c1, err := ln.Accept()
    		if err != nil {
    			errc <- err
    			return
    		}
    		err = peer1(c1.(*TCPConn))
    		c1.Close()
    		errc <- err
    	}()
    	go func() {
    		c2, err := Dial("tcp", ln.Addr().String())
    		if err != nil {
    			errc <- err
    			return
    		}
    		err = peer2(c2.(*TCPConn))
    		c2.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/LICENSE

     *
     * This product includes cryptographic software written by Eric Young
     * (******@****.***).  This product includes software written by Tim
     * Hudson (******@****.***).
     *
     */
    
     Original SSLeay License
     -----------------------
    
    /* Copyright (C) 1995-1998 Eric Young (******@****.***)
     * All rights reserved.
     *
     * This package is an SSL implementation written
     * by Eric Young (******@****.***).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top