Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for opxrrr (0.14 sec)

  1. src/crypto/tls/handshake_server_test.go

    	c, s := localPipe(t)
    	go func() {
    		Client(c, testConfig).sendAlert(alertUnknownCA)
    		c.Close()
    	}()
    
    	err := Server(s, testConfig).Handshake()
    	s.Close()
    	var opErr *net.OpError
    	if !errors.As(err, &opErr) || opErr.Err != error(alertUnknownCA) {
    		t.Errorf("Got error: %s; expected: %s", err, error(alertUnknownCA))
    	}
    }
    
    func TestClose(t *testing.T) {
    	c, s := localPipe(t)
    	go c.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    	}
    
    	uerr, ok := err.(*url.Error)
    	if !ok {
    		t.Fatalf("got %T, want *url.Error", err)
    	}
    	oe, ok := uerr.Err.(*net.OpError)
    	if !ok {
    		t.Fatalf("url.Error.Err =  %T; want *net.OpError", uerr.Err)
    	}
    	want := &net.OpError{
    		Op:  "proxyconnect",
    		Net: "tcp",
    		Err: errDial, // original error, unwrapped.
    	}
    	if !reflect.DeepEqual(oe, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    		writeLoopDone: make(chan struct{}),
    	}
    	trace := httptrace.ContextClientTrace(ctx)
    	wrapErr := func(err error) error {
    		if cm.proxyURL != nil {
    			// Return a typed error, per Issue 16997
    			return &net.OpError{Op: "proxyconnect", Net: "tcp", Err: err}
    		}
    		return err
    	}
    	if cm.scheme() == "https" && t.hasCustomTLSDialer() {
    		var err error
    		pconn.conn, err = t.customDialTLS(ctx, "tcp", cm.addr())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/net/http/server.go

    func isCommonNetReadError(err error) bool {
    	if err == io.EOF {
    		return true
    	}
    	if neterr, ok := err.(net.Error); ok && neterr.Timeout() {
    		return true
    	}
    	if oe, ok := err.(*net.OpError); ok && oe.Op == "read" {
    		return true
    	}
    	return false
    }
    
    // Serve a new connection.
    func (c *conn) serve(ctx context.Context) {
    	if ra := c.rwc.RemoteAddr(); ra != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	{ir.OOR, types.TINT32}:  ssa.OpOr32,
    	{ir.OOR, types.TUINT32}: ssa.OpOr32,
    	{ir.OOR, types.TINT64}:  ssa.OpOr64,
    	{ir.OOR, types.TUINT64}: ssa.OpOr64,
    
    	{ir.OXOR, types.TINT8}:   ssa.OpXor8,
    	{ir.OXOR, types.TUINT8}:  ssa.OpXor8,
    	{ir.OXOR, types.TINT16}:  ssa.OpXor16,
    	{ir.OXOR, types.TUINT16}: ssa.OpXor16,
    	{ir.OXOR, types.TINT32}:  ssa.OpXor32,
    	{ir.OXOR, types.TUINT32}: ssa.OpXor32,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	// Windows-specific stuff. Fix that and move this, once we
    	// have a way to bundle this into std's net/http somehow.
    	if runtime.GOOS == "windows" {
    		if oe, ok := err.(*net.OpError); ok && oe.Op == "read" {
    			if se, ok := oe.Err.(*os.SyscallError); ok && se.Syscall == "wsarecv" {
    				const WSAECONNABORTED = 10053
    				const WSAECONNRESET = 10054
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    }
    
    func (l *errorListener) Addr() net.Addr {
    	return dummyAddr("test-address")
    }
    
    func TestAcceptMaxFds(t *testing.T) {
    	setParallel(t)
    
    	ln := &errorListener{[]error{
    		&net.OpError{
    			Op:  "accept",
    			Err: syscall.EMFILE,
    		}}}
    	server := &Server{
    		Handler:  HandlerFunc(HandlerFunc(func(ResponseWriter, *Request) {})),
    		ErrorLog: log.New(io.Discard, "", 0), // noisy otherwise
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritePPC64.go

    		return true
    	case OpXor16:
    		v.Op = OpPPC64XOR
    		return true
    	case OpXor32:
    		v.Op = OpPPC64XOR
    		return true
    	case OpXor64:
    		v.Op = OpPPC64XOR
    		return true
    	case OpXor8:
    		v.Op = OpPPC64XOR
    		return true
    	case OpZero:
    		return rewriteValuePPC64_OpZero(v)
    	case OpZeroExt16to32:
    		v.Op = OpPPC64MOVHZreg
    		return true
    	case OpZeroExt16to64:
    		v.Op = OpPPC64MOVHZreg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  9. RELEASE.md

        *   Extended `tf.config.experimental.enable_tensor_float_32_execution` to
            control Tensor-Float-32 evaluation in RNNs.
        *   Added a 'experimental_payloads' field to tf.errors.OpError and its
            subclasses to support more detailed error reporting. This is inspired
            from Abseil Status payloads:
            https://github.com/abseil/abseil-cpp/blob/master/absl/status/status.h
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top