Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,308 for connections (0.2 sec)

  1. internal/grid/debug.go

    			listener.Close()
    		}
    	})
    }
    
    // WaitAllConnect will wait for all connections to be established.
    func (t *TestGrid) WaitAllConnect(ctx context.Context) {
    	for _, manager := range t.Managers {
    		for _, remote := range manager.Targets() {
    			if manager.HostName() == remote {
    				continue
    			}
    			if err := manager.Connection(remote).WaitForConnect(ctx); err != nil {
    				panic(err)
    			}
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. helm/minio/templates/_helper_create_user.txt

    connectToMinio() {
      SCHEME=$1
      ATTEMPTS=0 ; LIMIT=29 ; # Allow 30 attempts
      set -e ; # fail if we can't read the keys.
      ACCESS=$(cat /config/rootUser) ; SECRET=$(cat /config/rootPassword) ;
      set +e ; # The connections to minio are allowed to fail.
      echo "Connecting to MinIO server: $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT" ;
      MC_COMMAND="${MC} alias set myminio $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT $ACCESS $SECRET" ;
      $MC_COMMAND ;
      STATUS=$? ;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 12 23:43:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/DirectedGraphConnections.java

                  orderedNodeConnections.iterator(),
                  (NodeConnection<N> connection) -> {
                    if (connection instanceof NodeConnection.Succ) {
                      return EndpointPair.ordered(thisNode, connection.node);
                    } else {
                      return EndpointPair.ordered(connection.node, thisNode);
                    }
                  });
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            when:
            def connector = toolingApi.connector()
            ProjectConnection connection1 = connector.connect()
            ProjectConnection connection2 = connector.connect()
    
            def build = connection1.newBuild()
            build.forTasks('hang')
            build.run(resultHandler)
    
            def build2 = connection2.newBuild()
            build2.forTasks('hang')
            build2.run(resultHandler)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/net/http/fcgi/child.go

    			req.pw.CloseWithError(ErrConnClosed)
    		}
    	}
    }
    
    // Serve accepts incoming FastCGI connections on the listener l, creating a new
    // goroutine for each. The goroutine reads requests and then calls handler
    // to reply to them.
    // If l is nil, Serve accepts connections from os.Stdin.
    // If handler is nil, [http.DefaultServeMux] is used.
    func Serve(l net.Listener, handler http.Handler) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. pkg/kube/inject/app_probe.go

    func convertAppProberTCPSocket(probe *corev1.Probe, newURL string, statusPort int) *corev1.Probe {
    	p := probe.DeepCopy()
    	// the sidecar intercepts all tcp connections, so we change it to a HTTP probe and the sidecar will check tcp
    	p.HTTPGet = &corev1.HTTPGetAction{}
    	p.HTTPGet.Port = intstr.FromInt32(int32(statusPort))
    	p.HTTPGet.Path = newURL
    
    	p.TCPSocket = nil
    	return p
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. internal/http/listener.go

    	// When the net.Conn is a remote drive this value is honored, we close the connection to remote peer proactively.
    	DriveOPTimeout func() time.Duration
    
    	SendBufSize int              // SO_SNDBUF size for the socket connection, NOTE: this sets server and client connection
    	RecvBufSize int              // SO_RECVBUF size for the socket connection, NOTE: this sets server and client connection
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultIncomingConnectionHandler.java

            // Mark the connection has being handled
            onStartHandling(connection);
    
            //we're spinning a thread to do work to avoid blocking the connection
            //This means that the Daemon potentially can do multiple things but we only allows a single build at a time
    
            workers.execute(new ConnectionWorker(connection));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory_test.go

    	}
    	// Wait for healthcheck to establish connection
    	<-ready
    	// run a first request that fails after 2 seconds
    	go func() {
    		err := healthcheck()
    		if !strings.Contains(err.Error(), "etcd down") {
    			t.Errorf("healthcheck() mismatch want %v got %v", fmt.Errorf("etcd down"), err)
    		}
    		close(signal)
    	}()
    
    	// wait until the rate limit allows new connections
    	time.Sleep(cfg.HealthcheckTimeout / 2)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 15:58:10 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  10. internal/event/target/postgresql.go

    		if f != event.NamespaceFormat && f != event.AccessFormat {
    			return fmt.Errorf("unrecognized format value")
    		}
    	}
    
    	if p.ConnectionString != "" {
    		// No pq API doesn't help to validate connection string
    		// prior connection, so no validation for now.
    	} else {
    		// Some fields need to be specified when ConnectionString is unspecified
    		if p.Port == "" {
    			return fmt.Errorf("unspecified port")
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top