Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,944 for connections (0.24 sec)

  1. 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)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        private CIFSContext transportContext;
    
    
        /**
         * 
         * @param connection
         *            connection to wrap
         * @param tc
         *            context to use
         */
        public NtlmHttpURLConnection ( HttpURLConnection connection, CIFSContext tc ) {
            super(connection.getURL());
            this.connection = connection;
            this.transportContext = tc;
            this.requestProperties = new HashMap<>();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. guava/src/com/google/common/graph/GraphConnections.java

      /**
       * Returns an iterator over the incident edges.
       *
       * @param thisNode The node that this all of the connections in this class are connected to.
       */
      Iterator<EndpointPair<N>> incidentEdgeIterator(N thisNode);
    
      /**
       * Returns the value associated with the edge connecting the origin node to {@code node}, or null
       * if there is no such edge.
       */
      @CheckForNull
      V value(N node);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.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