Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for fcclient (0.13 sec)

  1. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/nodeagent/caclient"
    )
    
    const (
    	bearerTokenPrefix = "Bearer "
    )
    
    var citadelClientLog = log.RegisterScope("citadelclient", "citadel client debugging")
    
    type CitadelClient struct {
    	// It means enable tls connection to Citadel if this is not nil.
    	tlsOpts  *TLSOptions
    	client   pb.IstioCertificateServiceClient
    	conn     *grpc.ClientConn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/caclient/providers/mock/mockcaclient.go

    )
    
    // CAClient is the mocked CAClient for testing.
    type CAClient struct {
    	SignInvokeCount uint64
    	bundle          *util.KeyCertBundle
    	certLifetime    time.Duration
    	GeneratedCerts  [][]string // Cache the generated certificates for verification purpose.
    	mockTrustAnchor bool
    }
    
    // NewMockCAClient creates an instance of CAClient. errors is used to specify the number of errors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/crypto/tls/ticket.go

    		}
    		ss.alpnProtocol = string(alpn)
    	}
    	if isClient := typ == 2; !isClient {
    		if !s.Empty() {
    			return nil, errors.New("tls: invalid session encoding")
    		}
    		return ss, nil
    	}
    	ss.isClient = true
    	if len(ss.peerCertificates) == 0 {
    		return nil, errors.New("tls: no server certificates in client session")
    	}
    	if ss.version < VersionTLS13 {
    		if !s.Empty() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. pkg/kube/client.go

    	"k8s.io/apiserver/pkg/storage/names"
    	"k8s.io/client-go/discovery"
    	fakediscovery "k8s.io/client-go/discovery/fake"
    	"k8s.io/client-go/dynamic"
    	dynamicfake "k8s.io/client-go/dynamic/fake"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/fake"
    	kubescheme "k8s.io/client-go/kubernetes/scheme"
    	"k8s.io/client-go/metadata"
    	metadatafake "k8s.io/client-go/metadata/fake"
    	"k8s.io/client-go/rest"
    	clienttesting "k8s.io/client-go/testing"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/plugin/client.go

    Patrick Ohly <******@****.***> 1712753446 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/podresources/client.go

    	"google.golang.org/grpc/credentials/insecure"
    
    	"k8s.io/cri-client/pkg/util"
    	"k8s.io/kubelet/pkg/apis/podresources/v1"
    	"k8s.io/kubelet/pkg/apis/podresources/v1alpha1"
    )
    
    // Note: Consumers of the pod resources API should not be importing this package.
    // They should copy paste the function in their project.
    
    // GetV1alpha1Client returns a client for the PodResourcesLister grpc service
    // Note: This is deprecated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/crdclient/client.go

    }
    
    var _ model.ConfigStoreController = &Client{}
    
    func New(client kube.Client, opts Option) *Client {
    	schemas := collections.Pilot
    	if features.EnableGatewayAPI {
    		schemas = collections.PilotGatewayAPI()
    	}
    	return NewForSchemas(client, opts, schemas)
    }
    
    func NewForSchemas(client kube.Client, opts Option, schemas collection.Schemas) *Client {
    	schemasByCRDName := map[string]resource.Schema{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. internal/rest/client.go

    func (n *NetworkError) Unwrap() error {
    	return n.Err
    }
    
    // Client - http based RPC client.
    type Client struct {
    	connected int32 // ref: https://golang.org/pkg/sync/atomic/#pkg-note-BUG
    	_         int32 // For 64 bits alignment
    	lastConn  int64
    
    	// HealthCheckFn is the function set to test for health.
    	// If not set the client will not keep track of health.
    	// Calling this returns true or false if the target
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. cmd/bucket-targets.go

    		}
    	}
    }
    
    // GetRemoteTargetClient returns minio-go client for replication target instance
    func (sys *BucketTargetSys) GetRemoteTargetClient(bucket, arn string) *TargetClient {
    	sys.RLock()
    	tgt := sys.arnRemotesMap[arn]
    	sys.RUnlock()
    
    	if tgt.Client != nil {
    		return tgt.Client
    	}
    	defer func() { // lazy refresh remote targets
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. pkg/kube/kclient/client.go

    type Filter = kubetypes.Filter
    
    // New returns a Client for the given type.
    // Internally, this uses a shared informer, so calling this multiple times will share the same internals.
    func New[T controllers.ComparableObject](c kube.Client) Client[T] {
    	return NewFiltered[T](c, Filter{})
    }
    
    // NewFiltered returns a Client with some filter applied.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top