Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for membership (0.15 sec)

  1. cmd/kubeadm/app/util/etcd/etcd.go

    type etcdClient interface {
    	// Close shuts down the client's etcd connections.
    	Close() error
    
    	// Endpoints lists the registered endpoints for the client.
    	Endpoints() []string
    
    	// MemberList lists the current cluster membership.
    	MemberList(ctx context.Context) (*clientv3.MemberListResponse, error)
    
    	// MemberAdd adds a new member into the cluster.
    	MemberAdd(ctx context.Context, peerAddrs []string) (*clientv3.MemberAddResponse, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. cluster/gce/windows/testonly/install-ssh.psm1

      # Administrator rights?).
      New-Item -Force -ItemType file ${WRITE_SSH_KEYS_SCRIPT} | Out-Null
      Set-Content ${WRITE_SSH_KEYS_SCRIPT} `
    'Import-Module -Force USER_PROFILE_MODULE
    # For [System.Web.Security.Membership]::GeneratePassword():
    Add-Type -AssemblyName System.Web
    
    $poll_interval = 10
    
    # New for v7.9.0.0: administrators_authorized_keys file. For permission
    # information see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/eds.go

    		inboundServiceDeletes.Increment()
    		s.Env.EndpointIndex.DeleteServiceShard(shard, hostname, namespace, false)
    	} else {
    		inboundServiceUpdates.Increment()
    	}
    }
    
    // EDSUpdate computes destination address membership across all clusters and networks.
    // This is the main method implementing EDS.
    // It replaces InstancesByPort in model - instead of iterating over all endpoints it uses
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/etcd/etcd_test.go

    	return nil
    }
    
    // Endpoints lists the registered endpoints for the client.
    func (f *fakeEtcdClient) Endpoints() []string {
    	return f.endpoints
    }
    
    // MemberList lists the current cluster membership.
    func (f *fakeEtcdClient) MemberList(_ context.Context) (*clientv3.MemberListResponse, error) {
    	return &clientv3.MemberListResponse{
    		Members: f.members,
    	}, nil
    }
    
    // MemberAdd adds a new member into the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

        }
    
        def "can query collection membership"() {
            when:
            mutate {
                create("a")
                create("b")
            }
    
            then:
            realizeAsModelMap().containsKey("a")
            realizeAsModelMap().containsKey("b")
            !realizeAsModelMap().containsKey("c")
        }
    
        def "can query filtered collection membership"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/certificates/v1/generated.proto

      // uid contains the uid of the user that created the CertificateSigningRequest.
      // Populated by the API server on creation and immutable.
      // +optional
      optional string uid = 3;
    
      // groups contains group membership of the user that created the CertificateSigningRequest.
      // Populated by the API server on creation and immutable.
      // +listType=atomic
      // +optional
      repeated string groups = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1/generated.proto

      // uid contains the uid of the user that created the CertificateSigningRequest.
      // Populated by the API server on creation and immutable.
      // +optional
      optional string uid = 3;
    
      // groups contains group membership of the user that created the CertificateSigningRequest.
      // Populated by the API server on creation and immutable.
      // +listType=atomic
      // +optional
      repeated string groups = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"uid":               "uid contains the uid of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
    	"groups":            "groups contains group membership of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1/types.go

    	// Populated by the API server on creation and immutable.
    	// +optional
    	UID string `json:"uid,omitempty" protobuf:"bytes,3,opt,name=uid"`
    	// groups contains group membership of the user that created the CertificateSigningRequest.
    	// Populated by the API server on creation and immutable.
    	// +listType=atomic
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. docs/sts/ldap.md

    is optional and can be used to specify additional attributes to lookup on the User DN record in the LDAP server. This is for certain display purposes and may be used for extended functionality that may be added in the future.
    
    ### Group membership search
    
    MinIO can be optionally configured to find the groups of a user from AD/LDAP by specifying the following variables:
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top