Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 782 for connectTo (0.41 sec)

  1. internal/grid/benchmark_test.go

    						if src == dst {
    							dst = (dst + 1) % len(managers)
    						}
    						local := managers[src]
    						conn := local.Connection(hosts[dst])
    						if conn == nil {
    							b.Fatal("No connection")
    						}
    						// Send the payload.
    						t := time.Now()
    						resp, err := conn.Request(ctx, handlerTest, payload)
    						latency += time.Since(t).Nanoseconds()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	Proxier func(*http.Request) (*url.URL, error)
    	// PingPeriod is a period for sending SPDY Pings on the connection.
    	// Optional.
    	PingPeriod time.Duration
    	// UpgradeTransport is a subtitute transport used for dialing. If set,
    	// this field will be used instead of "TLS" and "Proxier" for connection creation.
    	// Optional.
    	UpgradeTransport http.RoundTripper
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

                connector.useGradleUserHomeDir(context.getGradleUserHomeDir());
                try (ProjectConnection connection = connector.connect()) {
                    connection.getModel(BuildEnvironment.class);
                }
            } finally {
                connector.disconnect();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

            ObjectConnection connection = null;
            try {
                // Read server address and start connecting
                connection = basicWorkerServices.get(MessagingClient.class).getConnection(config.getServerAddress());
                connection.addUnrecoverableErrorHandler(unrecoverableErrorHandler);
                configureLogging(loggingManager, connection, workerLogEventListener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go

    	ctx := testContext(t)
    
    	//  connect to kms plugin
    	service, err := NewGRPCService(ctx, endpoint.endpoint, timeout)
    	if err != nil {
    		t.Fatalf("failed to create envelope service, error: %v", err)
    	}
    	defer destroyService(service)
    
    	_, err = service.Encrypt(data)
    	if err != nil {
    		t.Fatalf("failed when execute encrypt, error: %v", err)
    	}
    	t.Log("Connected to KMSPlugin")
    	f.CleanUp()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. docs/features/https.md

     * `RESTRICTED_TLS` is a secure configuration, intended to meet stricter compliance requirements.
     * `MODERN_TLS` is a secure configuration that connects to modern HTTPS servers.
     * `COMPATIBLE_TLS` is a secure configuration that connects to secure–but not current–HTTPS servers.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  7. pkg/adsc/adsc.go

    	return adsc, err
    }
    
    // New creates a new ADSC, maintaining a connection to an XDS server.
    // Will:
    // - get certificate using the Secret provider, if CertRequired
    // - connect to the XDS server specified in ProxyConfig
    // - send initial request for watched resources
    // - wait for response from XDS server
    // - on success, start a background thread to maintain the connection, with exp. backoff.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  8. cmd/perf-tests.go

    // RXSample holds the RX bytes for the duration between
    // the last peer to connect and the first peer to disconnect.
    // This is to improve the RX throughput accuracy.
    type netPerfRX struct {
    	RX                uint64    // RX bytes
    	lastToConnect     time.Time // time at which last peer to connect to us
    	firstToDisconnect time.Time // time at which the first peer disconnects from us
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_test.go

    	"fmt"
    	"io"
    	"net"
    	"os"
    	"os/exec"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    )
    
    // TLS reference tests run a connection against a reference implementation
    // (OpenSSL) of TLS and record the bytes of the resulting connection. The Go
    // code, during a test, is configured with deterministic randomness and so the
    // reference test can be reproduced exactly in the future.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    // Conn supports sending multiple binary channels over a websocket connection.
    type Conn struct {
    	protocols        map[string]ChannelProtocolConfig
    	selectedProtocol string
    	channels         []*websocketChannel
    	codec            codecType
    	ready            chan struct{}
    	ws               *websocket.Conn
    	timeout          time.Duration
    }
    
    // NewConn creates a WebSocket connection that supports a set of channels. Channels begin each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top