Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,308 for connections (0.16 sec)

  1. manifests/addons/dashboards/pilot-dashboard.gen.json

                   "legendFormat": "Connections (client reported)"
                },
                {
                   "datasource": {
                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum(pilot_xds{})",
                   "legendFormat": "Connections (server reported)"
                }
             ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // these proxies allow the inter-connection of WebSocket and SPDY
    // streaming connections.
    //
    // The stream translator proxy is used for the RemoteCommand
    // subprotocol (e.g. kubectl exec, cp, and attach), and it connects
    // the output streams of a WebSocket connection (e.g. STDIN, STDOUT,
    // STDERR, TTY resize, and error streams) to the input streams of a
    // SPDY connection.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. internal/config/notify/help.go

    		},
    		config.HelpKV{
    			Key:         target.MqttKeepAliveInterval,
    			Description: "keep-alive interval for MQTT connections in s,m,h,d",
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         target.MqttReconnectInterval,
    			Description: "reconnect interval for MQTT connections in s,m,h,d",
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcweb/svn.go

    	// stdin and stdout streams as if invoked by the Unix "inetd" service.
    	// We aren't using inetd, but we are implementing essentially the same
    	// approach: using a host process to listen for connections and spawn
    	// subprocesses to serve them.
    	cmd := exec.Command(h.svnservePath, "--read-only", "--root="+h.svnRoot, "--inetd")
    	cmd.Stdin = c
    	cmd.Stdout = c
    	stderr := new(strings.Builder)
    	cmd.Stderr = stderr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/graceful_shutdown_test.go

    // It expects that all active connections will be finished (without any errors) before the server exits.
    //
    // The test sends 25 requests to the target server in parallel. Each request is held by the target server for 60s.
    // As soon as the target server receives the last request the test calls backendServer.Config.Shutdown which gracefully shuts down the server without interrupting any active connections.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	// connections across all hosts. Zero means no limit.
    	MaxIdleConns int
    
    	// MaxIdleConnsPerHost, if non-zero, controls the maximum idle
    	// (keep-alive) connections to keep per-host. If zero,
    	// DefaultMaxIdleConnsPerHost is used.
    	MaxIdleConnsPerHost int
    
    	// MaxConnsPerHost optionally limits the total number of
    	// connections per host, including connections in the dialing,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. samples/tcp-echo/src/main.go

    	// listen for new connections
    	for {
    		conn, err := listener.Accept()
    		if err != nil {
    			fmt.Println("failed to accept connection, err:", err)
    			continue
    		}
    
    		// pass an accepted connection to a handler goroutine
    		go handleConnection(conn, prefix)
    	}
    }
    
    // handleConnection handles the lifetime of a connection
    func handleConnection(conn net.Conn, prefix string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 10 19:10:51 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. 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)
Back to top