Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,308 for connections (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/crypto/tls/common.go

    // ConnectionState records basic TLS details about the connection.
    type ConnectionState struct {
    	// Version is the TLS version used by the connection (e.g. VersionTLS12).
    	Version uint16
    
    	// HandshakeComplete is true if the handshake has concluded.
    	HandshakeComplete bool
    
    	// DidResume is true if this connection was successfully resumed from a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

          val connectionPool = it.connectionPool
    
          connectionPool.evictAll()
          if (connectionPool.connectionCount() > 0) {
            // Minimise test flakiness due to possible race conditions with connections closing.
            // Some number of tests will report here, but not fail due to this delay.
            println("Delaying to avoid flakes")
            Thread.sleep(500L)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (1)
  7. 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)
  8. pilot/pkg/xds/discovery.go

    // This method returns only fully initialized connections; for all connections, use AllClients
    func (s *DiscoveryServer) Clients() []*Connection {
    	s.adsClientsMutex.RLock()
    	defer s.adsClientsMutex.RUnlock()
    	clients := make([]*Connection, 0, len(s.adsClients))
    	for _, con := range s.adsClients {
    		select {
    		case <-con.InitializedCh():
    		default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. 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)
  10. pkg/keepalive/options.go

    	// the connection is closed.
    	Timeout time.Duration
    	// MaxServerConnectionAge is a duration for the maximum amount of time a
    	// connection may exist before it will be closed by the server sending a GoAway.
    	// A random jitter is added to spread out connection storms.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top