Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,943 for connections (0.59 sec)

  1. 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)
  2. internal/rest/rpc-stats.go

    	}
    	return s
    }
    
    // Return a function which update the global stats related to tcp connections
    func setupReqStatsUpdate(req *http.Request) (*http.Request, func()) {
    	var dialStart, dialEnd int64
    
    	trace := &httptrace.ClientTrace{
    		ConnectStart: func(network, addr string) {
    			atomic.StoreInt64(&dialStart, time.Now().UnixNano())
    		},
    		ConnectDone: func(network, addr string, err error) {
    			if err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 16:27:58 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonTcpServerConnector.java

                if (started) {
                    throw new IllegalStateException("server connector cannot be started as it has already been started");
                }
    
                // Hold the lock until we actually start accepting connections for the case when stop is called from another
                // thread while we are in the middle here.
    
                Action<ConnectCompletion> connectEvent = new Action<ConnectCompletion>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SocksProxyServer.groovy

     * starting the proxy.
     *
     * Use {@link #start(SocksServer)} to start the proxy with an alternate implementation of {@link SocksServer} (for instance,
     * a {@link TestRecordingSocksServer}, which can record connections which would have been made).
     */
    class SocksProxyServer extends ExternalResource {
        private PortAllocator portFinder = FixedAvailablePortAllocator.getInstance()
        private SocksServer socksServer
        private int port
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/verifier/HttpRedirectVerifierFactory.java

         * the user has explicitly opted out from this protection.
         *
         * @param baseHost The host specified by the user.
         * @param allowInsecureProtocol If true, allows HTTP based connections.
         * @param insecureBaseHost Callback when the base host URL is insecure.
         * @param insecureRedirect Callback when the server returns an 30x redirect to an insecure server.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/go/scriptconds_test.go

    		return false, errors.New("script Context unexpectedly missing testing.TB key")
    	}
    
    	if netTestSem != nil {
    		// When the number of external network connections is limited, we limit the
    		// number of net tests that can run concurrently so that the overall number
    		// of network connections won't exceed the limit.
    		_, dup := scriptNetEnabled.LoadOrStore(t, true)
    		if !dup {
    			// Acquire a net token for this test until the test completes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. build/build-image/rsyncd.sh

    # ownership to that.
    
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # The directory that gets sync'd
    VOLUME=${HOME}
    
    # Assume that this is running in Docker on a bridge.  Allow connections from
    # anything on the local subnet.
    ALLOW=$(ip route | awk  '/^default via/ { reg = "^[0-9./]+ dev "$5 } ; $0 ~ reg { print $1 }')
    
    CONFDIR="/tmp/rsync.k8s"
    PIDFILE="${CONFDIR}/rsyncd.pid"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. pkg/bootstrap/config_test.go

    		name            string
    		metadataOptions MetadataOptions
    		// TODO(ramaraochavali): Add validation for prefix and tags also.
    		wantInclusionSuffixes []string
    	}{
    		{
    			name: "with exit on zero connections enabled",
    			metadataOptions: MetadataOptions{
    				ID:                          "test",
    				Envs:                        os.Environ(),
    				ProxyConfig:                 &v1alpha1.ProxyConfig{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. pkg/volume/util/device_util_linux.go

    			// for the iSCSI connection.
    			dirs2, err := io.ReadDir(sessionPath)
    			if err != nil {
    				klog.Infof("Failed to process session %s, assuming this session is unavailable: %s", sessionName, err)
    				continue
    			}
    			for _, dir2 := range dirs2 {
    				// Skip over files that aren't the connection
    				// Connections are of the format "connection%d:%u"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 9.4K bytes
    - Viewed (0)
Back to top