Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for membership (0.26 sec)

  1. pkg/kube/namespace/filter.go

    	}
    	// update filter state
    	d.discoveryNamespaces = newDiscoveryNamespaces
    	d.discoverySelectors = selectors
    }
    
    // namespaceCreated: if newly created namespace is selected, update namespace membership
    func (d *discoveryNamespacesFilter) namespaceCreatedLocked(ns metav1.ObjectMeta) (membershipChanged bool) {
    	if d.isSelectedLocked(ns.Labels) {
    		d.discoveryNamespaces.Insert(ns.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader.go

    	// nameHeaders are the headers to check (in order, case-insensitively) for an identity. The first header with a value wins.
    	nameHeaders StringSliceProvider
    
    	// groupHeaders are the headers to check (case-insensitively) for group membership.  All values of all headers will be added.
    	groupHeaders StringSliceProvider
    
    	// extraHeaderPrefixes are the head prefixes to check (case-insensitively) for filling in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:19:54 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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.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