Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 398 for Peer (0.04 sec)

  1. okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt

      }
    
      private fun connectHttp2(
        peer: MockHttp2Peer,
        realConnection: RealConnection,
        maxConcurrentStreams: Int,
      ): Http2Connection {
        // Write the mocking script.
        val settings1 = Settings()
        settings1[Settings.MAX_CONCURRENT_STREAMS] = maxConcurrentStreams
        peer.sendFrame().settings(settings1)
        peer.acceptFrame() // ACK
        peer.sendFrame().ping(false, 2, 0)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. security/pkg/server/ca/authenticate/cert_authenticator_test.go

    		if tc.certChain != nil {
    			tlsInfo := credentials.TLSInfo{
    				State: tls.ConnectionState{VerifiedChains: tc.certChain},
    			}
    			p := &peer.Peer{AuthInfo: tlsInfo}
    			ctx = peer.NewContext(ctx, p)
    		}
    		if tc.fakeAuthInfo != nil {
    			ctx = peer.NewContext(ctx, &peer.Peer{AuthInfo: tc.fakeAuthInfo})
    		}
    
    		result, err := auth.Authenticate(security.AuthContext{GrpcContext: ctx})
    		if len(tc.authenticateErrMsg) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 01:20:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. security/pkg/server/ca/server_test.go

    		if c.certChain != nil {
    			tlsInfo := credentials.TLSInfo{
    				State: tls.ConnectionState{VerifiedChains: c.certChain},
    			}
    			p := &peer.Peer{Addr: c.ipAddr, AuthInfo: tlsInfo}
    			ctx = peer.NewContext(ctx, p)
    		}
    		if c.fakeAuthInfo != nil {
    			ctx = peer.NewContext(ctx, &peer.Peer{Addr: c.ipAddr, AuthInfo: c.fakeAuthInfo})
    		}
    		response, err := server.CreateCertificate(ctx, request)
    
    		s, _ := status.FromError(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/RemoteConnection.java

    /**
     * <p>A messaging end-point with some remote, or otherwise unreliable, peer.</p>
     *
     * <p>This interface simply specializes the exceptions thrown by the methods of this connection.</p>
     */
    public interface RemoteConnection<T> extends Connection<T> {
        /**
         * {@inheritDoc}
         *
         * @throws MessageIOException On failure to dispatch the message to the peer.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/net/net_fake.go

    	}
    
    	peer := &netFD{
    		family:      ln.family,
    		sotype:      ln.sotype,
    		net:         ln.net,
    		laddr:       ln.laddr,
    		raddr:       fd.laddr,
    		isConnected: true,
    	}
    	peer.fakeNetFD = newFakeNetFD(fd)
    	peer.fakeNetFD.queue = newPacketQueue(defaultBuffer)
    	defer func() {
    		if fd.peer != peer {
    			// Failed to connect; clean up.
    			peer.Close()
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/peerproxy/metrics/metrics.go

    var (
    	// peerProxiedRequestsTotal counts the number of requests that were proxied to a peer kube-apiserver.
    	peerProxiedRequestsTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      subsystem,
    			Name:           "rerouted_request_total",
    			Help:           "Total number of requests that were proxied to a peer kube apiserver because the local apiserver was not capable of serving it",
    			StabilityLevel: metrics.ALPHA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. releasenotes/notes/34118.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 33809
    releaseNotes:
      - |
        **Added** Auto mTLS support for workload level peer authentication. You no longer need to configure destination rule when servers are configured with workload level peer authentication policy. This can be disabled by setting ENABLE_AUTO_MTLS_CHECK_POLICIES to "false". 
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 19:02:56 UTC 2021
    - 480 bytes
    - Viewed (0)
  8. tests/integration/security/reachability_test.go

    				minIstioVersion string
    			}{
    				{
    					name: "global mtls strict",
    					configs: config.Sources{
    						config.File("testdata/reachability/global-peer-authn.yaml.tmpl"),
    						config.File("testdata/reachability/global-dr.yaml.tmpl"),
    					}.WithParams(param.Params{
    						mtlsModeParam:            model.MTLSStrict.String(),
    						tlsModeParam:             "ISTIO_MUTUAL",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. tests/fuzz/security_fuzzer.go

    		return 0
    	}
    	tlsInfo := credentials.TLSInfo{
    		State: tls.ConnectionState{VerifiedChains: certChain},
    	}
    
    	mockIPAddr := &net.IPAddr{IP: net.IPv4(192, 168, 1, 1)}
    	p := &peer.Peer{Addr: mockIPAddr, AuthInfo: tlsInfo}
    
    	ctx = peer.NewContext(ctx, p)
    
    	_, _ = server.CreateCertificate(ctx, request)
    	return 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/options/options.go

    	// PeerCAFile is the ca bundle used by this kube-apiserver to verify peer apiservers'
    	// serving certs when routing a request to the peer in the case the request can not be served
    	// locally due to version skew.
    	PeerCAFile string
    
    	// PeerAdvertiseAddress is the IP for this kube-apiserver which is used by peer apiservers to route a request
    	// to this apiserver. This happens in cases where the peer is not able to serve the request due to
    	// version skew.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top