- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for memberships (0.14 sec)
-
istioctl/pkg/xds/google.go
client := exClient.Dynamic() gvr := schema.GroupVersionResource{ Group: "hub.gke.io", Version: "v1", Resource: "memberships", } u, err := client.Resource(gvr).Get(ctx, "membership", metav1.GetOptions{}) if err != nil { return nil, err } spec, ok := u.Object["spec"].(map[string]any) if !ok { return nil, errors.New(`field "spec" is not a map`) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Nov 14 20:23:34 UTC 2022 - 3.4K bytes - Viewed (0) -
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 Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 14 16:35:37 UTC 2024 - 83.2K bytes - Viewed (0) -
docs/sts/ldap.md
- find accounts (user DNs) that have been removed; any active STS credentials or MinIO service accounts belonging to these users are purged. - find accounts whose group memberships have changed; access policies available to a credential are updated to reflect the change, i.e. they will lose any privileges associated with a group they are removed from, and gain any privileges associated with a group they are added to.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 18.9K bytes - Viewed (0) -
cmd/iam.go
gSet := set.CreateStringSet(cred.Groups...) if gSet.Equals(currGroupsSet) { // No change to groups memberships for this // credential. continue } // Expired credentials don't need group membership updates. if cred.IsExpired() { continue } cred.Groups = currGroups
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0) -
common-protos/k8s.io/api/core/v1/generated.proto
// to the container's primary GID, the fsGroup (if specified), and group memberships // defined in the container image for the uid of the container process. If unspecified, // no additional groups are added to any container. Note that group memberships // defined in the container image for the uid of the container process are still effective,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 255.8K bytes - Viewed (0) -
.github/SECURITY.md
the group can be found at [Early Disclosure Membership]. ## Security Bulletins Information about previous Istio vulnerabilities can be found on the [Security Bulletins] page. [Support Announcements]: https://istio.io/news/support/ [Istio Security Vulnerabilities]: https://istio.io/about/security-vulnerabilities/ [Security Bulletins]: https://istio.io/news/security/
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 12 15:17:53 UTC 2023 - 905 bytes - Viewed (0) -
istioctl/pkg/xds/client.go
if isMCP { // Special credentials handling when using ASM Managed Control Plane. mem, err := getHubMembership(ctx, kubeClient) if err != nil { return nil, fmt.Errorf("failed to query Hub membership: %w", err) } aud = []string{mem.WorkloadIdentityPool} } k8sCreds, err := kubeClient.CreatePerRPCCredentials(ctx, ns, serviceAccount, aud, defaultExpirationSeconds) if err != nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Dec 19 22:42:42 UTC 2023 - 3.7K bytes - Viewed (0) -
docs/en/docs/management.md
You can see the current team members in [FastAPI People - Team](./fastapi-people.md#team){.internal-link target=_blank}. Joining the team is by invitation only, and I could update or remove permissions, instructions, or membership. ## FastAPI Experts The people that help others the most in GitHub Discussions can become [**FastAPI Experts**](./fastapi-people.md#fastapi-experts){.internal-link target=_blank}.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Jul 31 14:09:15 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmFlags.java
*/ public static final int NTLMSSP_NEGOTIATE_ANONYMOUS = 0x00000800; /** * Indicates whether the OEM-formatted domain name in which the * client workstation has membership is supplied in the Type-1 message. * This is used in the negotation of local authentication. */ public static final int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED = 0x00001000; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java
*/ public static final int NTLMSSP_NEGOTIATE_NTLM = 0x00000200; /** * Indicates whether the OEM-formatted domain name in which the * client workstation has membership is supplied in the Type-1 message. * This is used in the negotation of local authentication. */ public static final int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED = 0x00001000; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 5.3K bytes - Viewed (0)