Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 260 for connectat (0.17 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

      private var writerTask: Task? = null
    
      /** Null until this web socket is connected. Only accessed by the reader thread. */
      private var reader: WebSocketReader? = null
    
      // All mutable web socket state is guarded by this.
    
      /** Null until this web socket is connected. Note that messages may be enqueued before that. */
      private var writer: WebSocketWriter? = null
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. src/net/http/readrequest_test.go

    			"3\r\nbar\r\n" +
    			"0\r\n" +
    			"\r\n",
    		nil,
    		noBodyStr,
    		noTrailer,
    		`bad Content-Length "notdigits"`,
    	},
    
    	// CONNECT request with domain name:
    	{
    		"CONNECT www.google.com:443 HTTP/1.1\r\n\r\n",
    
    		&Request{
    			Method: "CONNECT",
    			URL: &url.URL{
    				Host: "www.google.com:443",
    			},
    			Proto:         "HTTP/1.1",
    			ProtoMajor:    1,
    			ProtoMinor:    1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

    import okio.BufferedSource
    import okio.buffer
    import okio.sink
    import okio.source
    
    /**
     * A single attempt to connect to a remote server, including these steps:
     *
     *  * [TCP handshake][connectSocket]
     *  * Optional [CONNECT tunnels][connectTunnel]. When using an HTTP proxy to reach an HTTPS server
     *    we must send a `CONNECT` request, and handle authorization challenges from the proxy.
     *  * Optional [TLS handshake][connectTls].
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                wagon.connect(
                        new Repository(repository.getId(), repository.getUrl()),
                        authenticationInfo(repository),
                        proxyInfo(repository));
    
            } else if (repository.getAuthentication() != null) {
                wagon.connect(new Repository(repository.getId(), repository.getUrl()), authenticationInfo(repository));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/server.go

    	if err != nil {
    		return err
    	}
    
    	prepared, err := server.PrepareRun()
    	if err != nil {
    		return err
    	}
    
    	return prepared.Run(ctx)
    }
    
    // CreateServerChain creates the apiservers connected via delegation.
    func CreateServerChain(config CompletedConfig) (*aggregatorapiserver.APIAggregator, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/transport/RepositoryTransportFactory.java

    import org.gradle.internal.resource.ExternalResourceName;
    import org.gradle.internal.resource.cached.CachedExternalResourceIndex;
    import org.gradle.internal.resource.connector.ResourceConnectorFactory;
    import org.gradle.internal.resource.connector.ResourceConnectorSpecification;
    import org.gradle.internal.resource.local.FileResourceRepository;
    import org.gradle.internal.resource.transfer.ExternalResourceConnector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/net/unixsock_test.go

    		var peer Addr
    		if genericRead {
    			_, err = c1.(Conn).Read(b[:])
    		} else {
    			_, peer, err = c1.ReadFrom(b[:])
    		}
    		switch err {
    		case nil: // ReadFrom succeeds
    			if peer != nil { // peer is connected-mode
    				t.Fatalf("unexpected peer address: %v", peer)
    			}
    		default: // Read may timeout, it depends on the platform
    			if !isDeadlineExceeded(err) {
    				t.Fatal(err)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. internal/event/target/nats.go

    		if !filepath.IsAbs(n.QueueDir) {
    			return errors.New("queueDir path should be absolute")
    		}
    	}
    
    	return nil
    }
    
    // To obtain a nats connection from args.
    func (n NATSArgs) connectNats() (*nats.Conn, error) {
    	connOpts := []nats.Option{nats.Name("Minio Notification"), nats.MaxReconnects(-1)}
    	if n.Username != "" && n.Password != "" {
    		connOpts = append(connOpts, nats.UserInfo(n.Username, n.Password))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. pkg/xds/server.go

    }
    
    func (conn *Connection) Peer() string {
    	return conn.peerAddr
    }
    
    func (conn *Connection) SetID(id string) {
    	conn.conID = id
    }
    
    func (conn *Connection) ConnectedAt() time.Time {
    	return conn.connectedAt
    }
    
    func (conn *Connection) Stop() {
    	close(conn.stop)
    }
    
    func (conn *Connection) MarkInitialized() {
    	close(conn.initialized)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

    mlir::Operation* NullUnlessSharded(PartitionedOp op) {
      return op.get_XlaSharding() ? op : nullptr;
    }
    
    // Returns a TPUPartitionedInput op connected to a `tf_device.cluster_func`
    // operand value if it has an XLA sharding. If value is a resource type then
    // TPUPartitionedInput op will be connected to a ReadVariable op that feeds into
    // a `tf_device.cluster_func`.
    mlir::Operation* GetXlaShardingFromOperand(Value value) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top