Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for membership (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/sets/set.go

    	for item := range s2 {
    		if !s1.Has(item) {
    			return false
    		}
    	}
    	return true
    }
    
    // Equal returns true if and only if s1 is equal (as a set) to s2.
    // Two sets are equal if their membership is identical.
    // (In practice, this means same elements, order doesn't matter)
    func (s1 Set[T]) Equal(s2 Set[T]) bool {
    	return len(s1) == len(s2) && s1.IsSuperset(s2)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:51:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            container.size() == 5
            !container.empty
        }
    
        def "can check for membership"() {
            given:
            addToContainer(b)
            addToContainer(a)
    
            expect:
            !container.contains(c)
            container.contains(a)
        }
    
        def "provider for element is queried when membership checked"() {
            containerAllowsExternalProviders()
            def provider = Mock(ProviderInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/iam-store.go

    		cache.updatedAt = time.Now()
    		return nil
    	}
    
    	gi := cache.iamGroupsMap[group]
    
    	// Updating the group memberships cache happens in two steps:
    	//
    	// 1. Remove the group from each user's list of memberships.
    	// 2. Add the group to each member's list of memberships.
    	//
    	// This ensures that regardless of members being added or
    	// removed, the cache stays current.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K 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