Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 422 for Peer (0.06 sec)

  1. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    	"google.golang.org/grpc/metadata"
    	"google.golang.org/grpc/peer"
    
    	"istio.io/istio/pkg/security"
    )
    
    func TestIsTrustedAddress(t *testing.T) {
    	cases := []struct {
    		name    string
    		cidr    string
    		peer    string
    		trusted bool
    	}{
    		{
    			name:    "localhost client with port",
    			cidr:    "",
    			peer:    "127.0.0.1:9901",
    			trusted: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    		},
    	}, nil
    }
    
    // PeerEndpointController is the controller manager for updating the peer endpoint leases.
    // This provides a separate independent reconciliation loop for peer endpoint leases
    // which ensures that the peer kube-apiservers are fetching the updated endpoint info for a given apiserver
    // in the case when the peer wants to proxy the request to the given apiserver because it can not serve the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/etcd/local_test.go

        - --initial-advertise-peer-urls=https://:2380
        - --initial-cluster==https://:2380
        - --key-file=etcd/server.key
        - --listen-client-urls=https://127.0.0.1:2379,https://:2379
        - --listen-metrics-urls=http://127.0.0.1:2381
        - --listen-peer-urls=https://:2380
        - --name=
        - --peer-cert-file=etcd/peer.crt
        - --peer-client-cert-auth=true
        - --peer-key-file=etcd/peer.key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. security/pkg/server/ca/authenticate/cert_authenticator.go

    	peer, ok := peer.FromContext(ctx)
    	if !ok || peer.AuthInfo == nil {
    		return nil, fmt.Errorf("no client certificate is presented")
    	}
    
    	if authType := peer.AuthInfo.AuthType(); authType != "tls" {
    		return nil, fmt.Errorf("unsupported auth type: %q", authType)
    	}
    
    	tlsInfo := peer.AuthInfo.(credentials.TLSInfo)
    	chains := tlsInfo.State.VerifiedChains
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:12 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. cluster/images/etcd/migrate/options.go

    	flags.Uint64Var(&opts.peerPort, "peer-port", 0,
    		"etcd peer port to use during migration operations. If unset defaults to 2380 or 2381 depending on <data-dir>.")
    	flags.StringVar(&opts.peerListenUrls, "listen-peer-urls", "",
    		"etcd --listen-peer-urls flag. If unset, fallbacks to LISTEN_PEER_URLS env and if unset defaults to http://localhost:<peer-port>.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. pkg/apis/events/v1/zz_generated.conversion.go

    	out.Related = (*core.ObjectReference)(unsafe.Pointer(in.Related))
    	// WARNING: in.Note requires manual conversion: does not exist in peer-type
    	out.Type = in.Type
    	// WARNING: in.DeprecatedSource requires manual conversion: does not exist in peer-type
    	// WARNING: in.DeprecatedFirstTimestamp requires manual conversion: does not exist in peer-type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  7. pkg/apis/events/v1beta1/zz_generated.conversion.go

    	// WARNING: in.Source requires manual conversion: does not exist in peer-type
    	// WARNING: in.FirstTimestamp requires manual conversion: does not exist in peer-type
    	// WARNING: in.LastTimestamp requires manual conversion: does not exist in peer-type
    	// WARNING: in.Count requires manual conversion: does not exist in peer-type
    	out.Type = in.Type
    	out.EventTime = in.EventTime
    	out.Series = (*v1beta1.EventSeries)(unsafe.Pointer(in.Series))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/bgppeers-crd.yaml

                    description: The IP address of the peer followed by an optional port
                      number to peer with. If port number is given, format should be `[<IPv6>]:port`
                      or `<IPv4>:<port>` for IPv4. If optional port number is not set,
                      and this peer IP and ASNumber belongs to a calico/node with ListenPort
                      set in BGPConfiguration, then we use that port to peer.
                    type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/v1/zz_generated.conversion.go

    	// WARNING: in.Target requires manual conversion: does not exist in peer-type
    	// WARNING: in.MetricName requires manual conversion: does not exist in peer-type
    	// WARNING: in.CurrentValue requires manual conversion: does not exist in peer-type
    	// WARNING: in.Selector requires manual conversion: does not exist in peer-type
    	// WARNING: in.AverageValue requires manual conversion: does not exist in peer-type
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 43.7K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    	var (
    		prevPeerInfo, pi madmin.PeerInfo
    	)
    	if peer.DeploymentID != "" {
    		pi = c.state.Peers[peer.DeploymentID]
    		prevPeerInfo = pi
    		if !peer.SyncState.Empty() { // update replication to peer to be sync/async
    			pi.SyncState = peer.SyncState
    			successMsg = fmt.Sprintf("%s\n- sync state %s for peer %s", successMsg, peer.SyncState, peer.Name)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top