Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,331 for connections (0.14 sec)

  1. pkg/test/loadbalancersim/loadbalancer/leastrequest.go

    )
    
    type LeastRequestSettings struct {
    	Connections       []*WeightedConnection
    	ActiveRequestBias float64
    }
    
    func NewLeastRequest(s LeastRequestSettings) network.Connection {
    	if len(s.Connections) == 0 {
    		panic("attempting to create load balancer with zero connections")
    	}
    
    	conn := newLBConnection("LeastRequestLB", s.Connections)
    
    	if conn.AllWeightsEqual() {
    		return newUnweightedLeastRequest(conn)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServerConnector.java

    /**
     * Opens a server connection for clients to connect to communicate with a daemon.
     * <p>
     * A server connector should only be used by one daemon, and has a single use lifecycle.
     * Implementations must be threadsafe so that start/stop can be called from different threads.
     */
    public interface DaemonServerConnector extends Stoppable {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. pilot/pkg/status/distribution/reporter_test.go

    	// notify the ledger of the new version
    	r.AddInProgressResource(*resources[1])
    	// mark only one connection as having acked version 2
    	r.processEvent(connections[1], "", r.ledger.RootHash())
    	// mark one connection as having disconnected.
    	r.RegisterDisconnect(connections[2], sets.New[xds.EventType](""))
    	// build a report, which should have only two dataplanes, with 50% acking v2 of config
    	rpt, prunes := r.buildReport()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/ztunnel.libsonnet

          panels.timeSeries.base('CPU Usage', queries.cpuUsage, 'CPU usage of each running instance'),
        ]),
        row.new('Network')
        + row.withPanels([
          panels.timeSeries.connections('Connections', queries.connections, 'Connections opened and closed per instance'),
          panels.timeSeries.bytesRate('Bytes Transmitted', queries.bytes, 'Bytes sent and recieved per instance'),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/StandardValueGraph.java

        GraphConnections<N, V> connectionsU = nodeConnections.get(nodeU);
        return (connectionsU != null) && connectionsU.successors().contains(nodeV);
      }
    
      @CheckForNull
      private final V edgeValueOrDefaultInternal(N nodeU, N nodeV, @CheckForNull V defaultValue) {
        GraphConnections<N, V> connectionsU = nodeConnections.get(nodeU);
        V value = (connectionsU == null) ? null : connectionsU.value(nodeV);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

            }
        }
    
        /**
         * Adds a connection to some other message hub. Outgoing messages are forwarded to this connection, and incoming messages are received from it.
         *
         * <p>Does not cleanup connections on stop or disconnect. It is the caller's responsibility to manage the connection lifecycle.</p>
         */
        public void addConnection(RemoteConnection<InterHubMessage> connection) {
            lock.lock();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. src/net/net_fake_test.go

    		c, err := Dial(ln.Addr().Network(), ln.Addr().String())
    		if err != nil {
    			t.Fatalf("unexpected error from Dial with %v connections: %v", len(dialed), err)
    		}
    		dialed = append(dialed, c)
    		if testing.Verbose() && len(dialed)%(1<<12) == 0 {
    			t.Logf("dialed %d connections", len(dialed))
    		}
    	}
    	t.Logf("dialed %d connections", len(dialed))
    
    	// Now that all of the ports are in use, dialing another should fail due
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. pkg/proxy/conntrack/conntrack.go

    		// TODO: Better handling for deletion failure. When failure occur, stale udp connection may not get flushed.
    		// These stale udp connection will keep black hole traffic. Making this a best effort operation for now, since it
    		// is expensive to baby-sit all udp connections to kubernetes services.
    		return fmt.Errorf("error deleting connection tracking state for UDP service IP: %s, error: %v", ip, err)
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/loader/CachingToolingImplementationLoader.java

            }
        }
    
        @Override
        public void close() {
            try {
                CompositeStoppable.stoppable(connections.asMap().values()).stop();
            } finally {
                connections.invalidateAll();
            }
        }
    
        @NonNullApi
        private class ConsumerConnectionCreator implements Callable<ConsumerConnection> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 09:39:07 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

    import okhttp3.internal.indexOf
    import okhttp3.internal.intersect
    
    /**
     * Specifies configuration for the socket connection that HTTP traffic travels through. For `https:`
     * URLs, this includes the TLS version and cipher suites to use when negotiating a secure
     * connection.
     *
     * The TLS versions configured in a connection spec are only be used if they are also enabled in the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top