Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,340 for connector (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection.go

    	"net/http"
    	"sync"
    	"time"
    
    	"github.com/moby/spdystream"
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	"k8s.io/klog/v2"
    )
    
    // connection maintains state about a spdystream.Connection and its associated
    // streams.
    type connection struct {
    	conn             *spdystream.Connection
    	streams          map[uint32]httpstream.Stream
    	streamLock       sync.Mutex
    	newStreamHandler httpstream.NewStreamHandler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 15:04:07 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. pkg/test/loadbalancersim/network/connection.go

    }
    
    func (c *connection) Name() string {
    	return c.helper.Name()
    }
    
    func (c *connection) TotalRequests() uint64 {
    	return c.helper.TotalRequests()
    }
    
    func (c *connection) ActiveRequests() uint64 {
    	return c.helper.ActiveRequests()
    }
    
    func (c *connection) Latency() *timeseries.Instance {
    	return c.helper.Latency()
    }
    
    func (c *connection) Request(onDone func()) {
    	c.helper.Request(c.request, onDone)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/Connection.java

     * <li>should allow stopping or requesting stopping from a different thread than receiving/dispatching</li>
     * <li>don't guarantee allowing multiple threads dispatching</li>
     * </ul>
     */
    public interface Connection<T> extends Dispatch<T>, Receive<T>, Stoppable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/opentelemetry/opentelemetry-collector.go

    )
    
    // Config represents the configuration for setting up an opentelemetry
    // collector.
    type Config struct {
    	// Cluster to be used in a multicluster environment
    	Cluster cluster.Cluster
    
    	// HTTP Address of ingress gateway of the cluster to be used to install open telemetry collector in.
    	IngressAddr string
    }
    
    // Instance represents a opencensus collector deployment on kubernetes.
    type Instance interface {
    	resource.Resource
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 23 01:09:12 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/toolingApi-connect.puml

    User -> DefaultGradleConnector: use distribution/version/URI
    DefaultGradleConnector -> DistributionFactory: get distribution
    DistributionFactory --> DefaultGradleConnector: Distribution
    User -> DefaultGradleConnector: connect()
    DefaultGradleConnector -> ConnectionFactory: create()
    ConnectionFactory --> DefaultGradleConnector: DefaultProjectConnection
    note left
    With a chain of ConsumerActionExecutors
    and tooling implementation loader
    end note
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 606 bytes
    - Viewed (0)
  6. src/net/fd_windows.go

    	}
    
    	// Call ConnectEx API.
    	if err := fd.pfd.ConnectEx(ra); err != nil {
    		select {
    		case <-ctx.Done():
    			return nil, mapErr(ctx.Err())
    		default:
    			if _, ok := err.(syscall.Errno); ok {
    				err = os.NewSyscallError("connectex", err)
    			}
    			return nil, err
    		}
    	}
    	// Refresh socket properties.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/connection/ReusePlan.kt

     */
    package okhttp3.internal.connection
    
    /** Reuse a connection from the pool. */
    internal class ReusePlan(
      val connection: RealConnection,
    ) : RoutePlanner.Plan {
      override val isReady = true
    
      override fun connectTcp() = error("already connected")
    
      override fun connectTlsEtc() = error("already connected")
    
      override fun handleSuccess() = connection
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/FastFallbackExchangeFinder.kt

            }
    
            // Wait for an in-flight connect to complete or fail.
            if (connectResult == null) {
              connectResult = awaitTcpConnect(awaitTimeoutNanos, TimeUnit.NANOSECONDS) ?: continue
            }
    
            if (connectResult.isSuccess) {
              // We have a connected TCP connection. Cancel and defer the racing connects that all lost.
              cancelInFlightConnects()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/transport/Transport.java

            }
        }
    
        /* Build a connection. Only one thread will ever call this method at
         * any one time. If this method throws an exception or the connect timeout
         * expires an encapsulating TransportException will be thrown from connect
         * and the transport will be in error.
         */
    
        protected abstract void doConnect() throws Exception;
    
        /* Tear down a connection. If the hard parameter is true, the diconnection
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9K bytes
    - Viewed (0)
  10. src/syscall/tables_wasip1.go

    	EALREADY:        "Socket already connected",
    	EBADF:           "Bad file number",
    	EBADMSG:         "Trying to read unreadable message",
    	EBUSY:           "Device or resource busy",
    	ECANCELED:       "Operation canceled.",
    	ECHILD:          "No child processes",
    	ECONNABORTED:    "Connection aborted",
    	ECONNREFUSED:    "Connection refused",
    	ECONNRESET:      "Connection reset by peer",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top