Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 3,944 for connections (0.39 sec)

  1. src/net/fd_fake.go

    func newPollFD(net string, pfd poll.FD) *netFD {
    	var laddr Addr
    	var raddr Addr
    	// WASI preview 1 does not have functions like getsockname/getpeername,
    	// so we cannot get access to the underlying IP address used by connections.
    	//
    	// However, listeners created by FileListener are of type *TCPListener,
    	// which can be asserted by a Go program. The (*TCPListener).Addr method
    	// documents that the returned value will be of type *TCPAddr, we satisfy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Protocol.kt

      /**
       * An obsolete plaintext framing that does not use persistent sockets by default.
       */
      HTTP_1_0("http/1.0"),
    
      /**
       * A plaintext framing that includes persistent connections.
       *
       * This version of OkHttp implements [RFC 7230][rfc_7230], and tracks revisions to that spec.
       *
       * [rfc_7230]: https://tools.ietf.org/html/rfc7230
       */
      HTTP_1_1("http/1.1"),
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/sds/sdsservice_test.go

    		// Reconnect with the same resources, without closing the original connection
    		c = s.Connect()
    		s.Verify(c.RequestResponseAck(t, &discovery.DiscoveryRequest{
    			ResourceNames: []string{testResourceName},
    			ResponseNonce: res.Nonce,
    			VersionInfo:   res.VersionInfo,
    		}), expectCert)
    	})
    	t.Run("concurrent connections", func(t *testing.T) {
    		s := setupSDS(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pkg/test/echo/proto/echo.proto

      Alpn alpn = 13;
      // Server name (SNI) to present in TLS connections. If not set, Host will be used for http requests.
      string serverName = 20;
      // Expected response determines what string to look for in the response to validate TCP requests succeeded.
      // If not set, defaults to "StatusCode=200"
      google.protobuf.StringValue expectedResponse = 21;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. internal/grid/debug.go

    			listener.Close()
    		}
    	})
    }
    
    // WaitAllConnect will wait for all connections to be established.
    func (t *TestGrid) WaitAllConnect(ctx context.Context) {
    	for _, manager := range t.Managers {
    		for _, remote := range manager.Targets() {
    			if manager.HostName() == remote {
    				continue
    			}
    			if err := manager.Connection(remote).WaitForConnect(ctx); err != nil {
    				panic(err)
    			}
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. helm/minio/templates/_helper_create_user.txt

    connectToMinio() {
      SCHEME=$1
      ATTEMPTS=0 ; LIMIT=29 ; # Allow 30 attempts
      set -e ; # fail if we can't read the keys.
      ACCESS=$(cat /config/rootUser) ; SECRET=$(cat /config/rootPassword) ;
      set +e ; # The connections to minio are allowed to fail.
      echo "Connecting to MinIO server: $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT" ;
      MC_COMMAND="${MC} alias set myminio $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT $ACCESS $SECRET" ;
      $MC_COMMAND ;
      STATUS=$? ;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 12 23:43:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/DirectedGraphConnections.java

                  orderedNodeConnections.iterator(),
                  (NodeConnection<N> connection) -> {
                    if (connection instanceof NodeConnection.Succ) {
                      return EndpointPair.ordered(thisNode, connection.node);
                    } else {
                      return EndpointPair.ordered(connection.node, thisNode);
                    }
                  });
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            when:
            def connector = toolingApi.connector()
            ProjectConnection connection1 = connector.connect()
            ProjectConnection connection2 = connector.connect()
    
            def build = connection1.newBuild()
            build.forTasks('hang')
            build.run(resultHandler)
    
            def build2 = connection2.newBuild()
            build2.forTasks('hang')
            build2.run(resultHandler)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/net/http/fcgi/child.go

    			req.pw.CloseWithError(ErrConnClosed)
    		}
    	}
    }
    
    // Serve accepts incoming FastCGI connections on the listener l, creating a new
    // goroutine for each. The goroutine reads requests and then calls handler
    // to reply to them.
    // If l is nil, Serve accepts connections from os.Stdin.
    // If handler is nil, [http.DefaultServeMux] is used.
    func Serve(l net.Listener, handler http.Handler) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pkg/kube/inject/app_probe.go

    func convertAppProberTCPSocket(probe *corev1.Probe, newURL string, statusPort int) *corev1.Probe {
    	p := probe.DeepCopy()
    	// the sidecar intercepts all tcp connections, so we change it to a HTTP probe and the sidecar will check tcp
    	p.HTTPGet = &corev1.HTTPGetAction{}
    	p.HTTPGet.Port = intstr.FromInt32(int32(statusPort))
    	p.HTTPGet.Path = newURL
    
    	p.TCPSocket = nil
    	return p
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top