- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 2,434 for Groups (0.09 sec)
-
staging/src/k8s.io/apiserver/pkg/audit/format.go
username := "<none>" groups := "<none>" if len(ev.User.Username) > 0 { username = ev.User.Username if len(ev.User.Groups) > 0 { groups = auditStringSlice(ev.User.Groups) } } asuser := "<self>" asgroups := "<lookup>" if ev.ImpersonatedUser != nil { asuser = ev.ImpersonatedUser.Username if ev.ImpersonatedUser.Groups != nil {
Registered: 2024-06-15 01:39 - Last Modified: 2021-02-25 12:23 - 2.1K bytes - Viewed (0) -
pkg/kube/inject/openshift.go
groups, ok = ns.Annotations[securityv1.UIDRangeAnnotation] if !ok { return "", fmt.Errorf("unable to find supplemental group or uid annotation for namespace %s", ns.Name) } } if len(groups) == 0 { return "", fmt.Errorf("unable to find groups using %s and %s annotations", securityv1.SupplementalGroupsAnnotation, securityv1.UIDRangeAnnotation) } return groups, nil }
Registered: 2024-06-14 15:00 - Last Modified: 2023-08-25 19:10 - 5.3K bytes - Viewed (0) -
releasenotes/notes/37057.yaml
A group can be specified either by name or by a numeric GID. The wildcard character `*` can be used to configure redirection of traffic from all groups (default). `ISTIO_OUTBOUND_OWNER_GROUPS_EXCLUDE` - is a comma separated list of groups whose outgoing traffic should be excluded from redirection to Envoy (sidecar). A group can be specified either by name or by a numeric GID.
Registered: 2024-06-14 15:00 - Last Modified: 2022-02-25 15:43 - 2.2K bytes - Viewed (0) -
pkg/apis/rbac/v1/helpers.go
Name: roleName, }, }, } } // Groups adds the specified groups as the subjects of the RoleBinding. func (r *RoleBindingBuilder) Groups(groups ...string) *RoleBindingBuilder { for _, group := range groups { r.RoleBinding.Subjects = append(r.RoleBinding.Subjects, rbacv1.Subject{Kind: rbacv1.GroupKind, APIGroup: GroupName, Name: group}) } return r }
Registered: 2024-06-15 01:39 - Last Modified: 2023-01-18 15:37 - 7.4K bytes - Viewed (0) -
subprojects/core/src/main/java/org/gradle/execution/plan/HasFinalizers.java
protected boolean isCanCancel(Collection<FinalizerGroup> groups) { // A node cannot be cancelled if it belongs to a finalizer group that contains a finalized node that has started execution or that cannot be cancelled, and whose finalizer // can potentially still execute // So visit all the finalizer groups reachable from groups that the node belongs to and the finalized nodes of those groups Set<FinalizerGroup> seen = new HashSet<>();
Registered: 2024-06-12 18:38 - Last Modified: 2022-09-16 22:19 - 2.1K bytes - Viewed (0) -
cmd/kubeadm/app/util/users/users_linux_test.go
} } if len(tc.expectedGroups) != len(groups) { t.Fatalf("expected groups %d, got %d", len(tc.expectedGroups), len(groups)) } for i := range groups { if !reflect.DeepEqual(tc.expectedGroups[i], groups[i]) { t.Fatalf("expected group at position %d: %+v, got: %+v", i, tc.expectedGroups[i], groups[i]) } } }) } } func TestAllocateIDs(t *testing.T) {
Registered: 2024-06-15 01:39 - Last Modified: 2022-02-01 05:59 - 16.3K bytes - Viewed (0) -
src/os/user/listgroups_unix.go
// Add primary Gid first. groups := []string{u.Gid} rd := bufio.NewReader(r) done := false for !done { line, err := rd.ReadBytes('\n') if err != nil { if err == io.EOF { done = true } else { return groups, err } } // Look for username in the list of users. If user is found, // append the GID to the groups slice.
Registered: 2024-06-12 16:32 - Last Modified: 2023-04-07 23:34 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java
Registered: 2024-06-12 13:08 - Last Modified: 2024-02-22 01:37 - 4.1K bytes - Viewed (0) -
subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/AggregateMultiProjectTaskReportModel.java
for (String group : project.getGroups()) { if (isVisible(group)) { for (final TaskDetails task : project.getTasksForGroup(group)) { groups.put(group, mergeTasksWithSameName ? mergedTaskDetails(task) : task); } } } } } private TaskDetails mergedTaskDetails(TaskDetails task) {
Registered: 2024-06-12 18:38 - Last Modified: 2024-04-26 09:45 - 3.1K bytes - Viewed (0) -
cmd/iam-etcd-store_test.go
path, prefix, suffix string expected string }{ {"config/iam/groups/foo.json", "config/iam/groups/", ".json", "foo"}, {"config/iam/groups/./foo.json", "config/iam/groups/", ".json", "foo"}, {"config/iam/groups/foo/config.json", "config/iam/groups/", "/config.json", "foo"}, {"config/iam/groups/foo/config.json", "config/iam/groups/", "config.json", "foo"}, } for i, test := range specs {
Registered: 2024-06-16 00:44 - Last Modified: 2021-04-23 18:58 - 1.5K bytes - Viewed (0)