Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,706 for groupC (0.31 sec)

  1. pkg/ctrlz/topics/assets/templates/proc.html

            <tr>
                <td>Effective Group Id</td>
                <td>{{.Egid}}</td>
            </tr>
    
            <tr>
                <td>Effective User Id</td>
                <td>{{.Euid}}</td>
            </tr>
    
            <tr>
                <td>Group Id</td>
                <td>{{.GID}}</td>
            </tr>
    
            <tr>
                <td>Groups</td>
                <td>{{.Groups}}</td>
            </tr>
    
            <tr>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. docker/Dockerfile.distroless

    RUN echo istio-proxy:x:1337: >> /home/etc/group
    RUN echo istio-proxy:x:1337:1337:istio-proxy:/nonexistent:/sbin/nologin >> /home/etc/passwd
    
    # Customize distroless with the following:
    # - password file
    # - groups file
    # - /home/nonroot directory
    FROM distroless_source
    COPY --from=ubuntu_source /home/etc/passwd /etc/passwd
    COPY --from=ubuntu_source /home/etc/group /etc/group
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 828 bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp

                                    <div class="form-group row">
                                        <label for="groups" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.groups"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="groups"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 31.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacLogonInfo.java

                }
                this.groupSid = new SID(domainId, groupId);
    
                // Compute Group IDs with Domain ID to get Group SIDs
                this.groupSids = new SID[groups.length];
                for ( int i = 0; i < groups.length; i++ ) {
                    this.groupSids[ i ] = new SID(domainId, groups[ i ].getId());
                }
            }
            catch ( IOException e ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/group/group_adder.go

    	Groups []string
    }
    
    // NewGroupAdder wraps a request authenticator, and adds the specified groups to the returned user when authentication succeeds
    func NewGroupAdder(auth authenticator.Request, groups []string) authenticator.Request {
    	return &GroupAdder{auth, groups}
    }
    
    func (g *GroupAdder) AuthenticateRequest(req *http.Request) (*authenticator.Response, bool, error) {
    	r, ok, err := g.Authenticator.AuthenticateRequest(req)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 20:04:50 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    		}
    
    		groups.Insert(version.Group)
    		order = append(order, version.Version)
    	}
    	if len(groups) != 1 {
    		return fmt.Errorf("must register versions for exactly one group: %v", strings.Join(groups.List(), ", "))
    	}
    
    	s.versionPriority[groups.List()[0]] = order
    	return nil
    }
    
    // PrioritizedVersionsForGroup returns versions for a single group in priority order
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	// for this resource across all versions in the API group.
    	// Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
    	// Resources with empty groups are located at /api/v1/<APIResourceDiscovery.Resource>
    	Resource string `json:"resource" protobuf:"bytes,1,opt,name=resource"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. pkg/workloadapi/security/authorization.proto

      // Default is ALLOW if not specified.
      Action action = 4;
      // Set of RBAC policy groups each containing its rules.
      // If at least one of the groups is matched the policy action will
      // take place.
      // Groups are OR-ed.
      repeated Group groups = 5;
    }
    
    message Group {
      // Rules are OR-ed (e.g. ANY rule can match)
      // This is a generic form of the authz policy's to, from and when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types.go

    	// If you specify "User" but not "Groups", then is it interpreted as "What if User were not a member of any groups
    	// +optional
    	User string `json:"user,omitempty" protobuf:"bytes,3,opt,name=user"`
    	// Groups is the groups you're testing for.
    	// +optional
    	// +listType=atomic
    	Groups []string `json:"groups,omitempty" protobuf:"bytes,4,rep,name=groups"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

            when:
            targetedRule("group", "module") { ComponentSelection cs -> closuresCalled << 0 }
            targetedRule("group", "module") { ComponentSelection cs, ComponentMetadata cm -> closuresCalled << 1 }
            targetedRule("group", "module") { ComponentSelection cs, IvyModuleDescriptor imd -> closuresCalled << 2 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top