Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for opxrrr (0.12 sec)

  1. 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)
  2. src/net/dnsclient_unix_test.go

    			t.Log(s, q)
    
    			switch tt.resolveWhich(q.Questions[0]) {
    			case resolveOK:
    				// Handle below.
    			case resolveOpError:
    				return dnsmessage.Message{}, &OpError{Op: "write", Err: fmt.Errorf("socket on fire")}
    			case resolveServfail:
    				return dnsmessage.Message{
    					Header: dnsmessage.Header{
    						ID:       q.ID,
    						Response: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K 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/cmd/compile/internal/ssa/rewriteWasm.go

    	case OpXor16:
    		v.Op = OpWasmI64Xor
    		return true
    	case OpXor32:
    		v.Op = OpWasmI64Xor
    		return true
    	case OpXor64:
    		v.Op = OpWasmI64Xor
    		return true
    	case OpXor8:
    		v.Op = OpWasmI64Xor
    		return true
    	case OpZero:
    		return rewriteValueWasm_OpZero(v)
    	case OpZeroExt16to32:
    		return rewriteValueWasm_OpZeroExt16to32(v)
    	case OpZeroExt16to64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    					continue
    				}
    				t := i.Type
    				z := v_0_1
    				x := v_1
    				if !(z.Op != OpConst8 && x.Op != OpConst8) {
    					continue
    				}
    				v.reset(OpXor8)
    				v0 := b.NewValue0(v.Pos, OpXor8, t)
    				v0.AddArg2(z, x)
    				v.AddArg2(i, v0)
    				return true
    			}
    		}
    		break
    	}
    	// match: (Xor8 (Const8 <t> [c]) (Xor8 (Const8 <t> [d]) x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		v.Op = OpCopy
    		return true
    	case OpWB:
    		v.Op = OpMIPSLoweredWB
    		return true
    	case OpXor16:
    		v.Op = OpMIPSXOR
    		return true
    	case OpXor32:
    		v.Op = OpMIPSXOR
    		return true
    	case OpXor8:
    		v.Op = OpMIPSXOR
    		return true
    	case OpZero:
    		return rewriteValueMIPS_OpZero(v)
    	case OpZeroExt16to32:
    		v.Op = OpMIPSMOVHUreg
    		return true
    	case OpZeroExt8to16:
    		v.Op = OpMIPSMOVBUreg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  10. 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)
Back to top