Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,690 for connections (0.21 sec)

  1. src/runtime/netpoll_stub.go

    func netpollBreak() {
    	lock(&netpollBrokenLock)
    	broken := netpollBroken
    	netpollBroken = true
    	if !broken {
    		notewakeup(&netpollNote)
    	}
    	unlock(&netpollBrokenLock)
    }
    
    // Polls for ready network connections.
    // Returns list of goroutines that become runnable.
    func netpoll(delay int64) (gList, int32) {
    	// Implementation for platforms that do not support
    	// integrated network poller.
    	if delay != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/PoolConnectionUser.kt

        return null
      }
    
      override fun connectionReleased(connection: Connection) {
      }
    
      override fun connectionConnectionAcquired(connection: RealConnection) {
      }
    
      override fun connectionConnectionReleased(connection: RealConnection) {
      }
    
      override fun connectionConnectionClosed(connection: RealConnection) {
      }
    
      override fun noNewExchanges(connection: RealConnection) {
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 20:39:41 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/database/sql/doc.txt

      truncation or other loss of precision.
    
    * Handle concurrency well.  Users shouldn't need to care about the
      database's per-connection thread safety issues (or lack thereof),
      and shouldn't have to maintain their own free pools of connections.
      The 'sql' package should deal with that bookkeeping as needed.  Given
      an *sql.DB, it should be possible to share that instance between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/JavaSystemPropertiesHttpTimeoutSettings.java

        public static final int DEFAULT_SOCKET_TIMEOUT = 30000;
        /**
         * The default time in milliseconds for an idle connection to remain open.
         * <a href="https://azure.microsoft.com/en-us/blog/new-configurable-idle-timeout-for-azure-load-balancer/">Microsoft Azure closes idle connections after 4 min</a>,
         * so we set our default to be below that.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/net/http/export_test.go

    // ExportCloseTransportConnsAbruptly closes all idle connections from
    // tr in an abrupt way, just reaching into the underlying Conns and
    // closing them, without telling the Transport or its persistConns
    // that it's doing so. This is to simulate the server closing connections
    // on the Transport.
    func ExportCloseTransportConnsAbruptly(tr *Transport) {
    	tr.idleMu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/InternalBuildActionAdapter.java

    import java.io.File;
    
    /**
     * Adapter to create {@link org.gradle.tooling.internal.protocol.InternalBuildAction}
     * from an instance of {@link org.gradle.tooling.BuildAction}.
     * Used by consumer connections 1.8+.
     */
    @SuppressWarnings("deprecation")
    public class InternalBuildActionAdapter<T> implements org.gradle.tooling.internal.protocol.InternalBuildAction<T>, InternalBuildActionVersion2<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/bbottema/javasocksproxyserver/TestRecordingProxyHandler.java

     */
    
    package org.bbottema.javasocksproxyserver;
    
    import java.net.InetAddress;
    import java.net.Socket;
    import java.util.List;
    
    /**
     * Alternate implementation of {@link ProxyHandler} that records connections which would have been
     * made, but does not actually make them.
     *
     * Must live in same package as {@link Socks4Impl}.
     */
    public final class TestRecordingProxyHandler extends ProxyHandler {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http/ExchangeCodec.kt

       * That may happen later by the connection pool thread.
       */
      fun cancel()
    
      /**
       * Carries an exchange. This is usually a connection, but it could also be a connect plan for
       * CONNECT tunnels. Note that CONNECT tunnels are significantly less capable than connections.
       */
      interface Carrier {
        val route: Route
    
        fun trackFailure(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. mockwebserver/src/main/kotlin/mockwebserver3/Dispatcher.kt

      }
    
      /**
       * Release any resources held by this dispatcher. Any requests that are currently being dispatched
       * should return immediately. Responses returned after shutdown will not be transmitted: their
       * socket connections have already been closed.
       */
      open fun shutdown() {}
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/graceful_termination.go

    			//     (existing connections will be deleted on the next packet because sysctlExpireNoDestConn=1)
    			// For other protocols, don't delete until all connections have expired)
    			if utilipvs.IsRsGracefulTerminationNeeded(rsToDelete.VirtualServer.Protocol) && rs.ActiveConn+rs.InactiveConn != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top