Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 74 of 74 for getConf (0.14 sec)

  1. src/net/http/h2_bundle.go

    	}
    
    	return 0
    }
    
    func http2traceGetConn(req *Request, hostPort string) {
    	trace := httptrace.ContextClientTrace(req.Context())
    	if trace == nil || trace.GetConn == nil {
    		return
    	}
    	trace.GetConn(hostPort)
    }
    
    func http2traceGotConn(req *Request, cc *http2ClientConn, reused bool) {
    	trace := httptrace.ContextClientTrace(req.Context())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    			ds.Close()
    		})
    	} else {
    		c.Lock()
    		fc := c.finalClosed
    		c.Unlock()
    		if !fc {
    			ds.Close()
    		}
    	}
    }
    
    // debugGetPut determines whether getConn & putConn calls' stack traces
    // are returned for more verbose crashes.
    const debugGetPut = false
    
    // putConn adds a connection to the db's free pool.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      auto ivs_count = init_types_with_loop_iv.size();
    
      {
        OpBuilder::InsertionGuard guard(*builder);
    
        // Build up the only block in the condition region.
        Region &condition = while_op.getCond();
        Block *block = builder->createBlock(&condition);
        block->addArguments(init_types_with_loop_iv,
                            SmallVector<Location>(ivs_count, loc));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ClientTrace", Type, 7},
    		{"ClientTrace.ConnectDone", Field, 7},
    		{"ClientTrace.ConnectStart", Field, 7},
    		{"ClientTrace.DNSDone", Field, 7},
    		{"ClientTrace.DNSStart", Field, 7},
    		{"ClientTrace.GetConn", Field, 7},
    		{"ClientTrace.Got100Continue", Field, 7},
    		{"ClientTrace.Got1xxResponse", Field, 11},
    		{"ClientTrace.GotConn", Field, 7},
    		{"ClientTrace.GotFirstResponseByte", Field, 7},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top